/* ═══════════════════════════════════════════════════
   HO LIN — AUTHOR SITE  |  styles.css
   Palette from mood board: deep charcoal, warm cream,
   crimson red, golden amber, ink black
═══════════════════════════════════════════════════ */

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

:root {
  --ink:        #1a1714;
  --charcoal:   #2d2926;
  --cream:      #f5f0e8;
  --cream-deep: #ede6d6;
  --gold:       #c9913c;
  --gold-light: #e5b96a;
  --crimson:    #c0281c;
  --crimson-dk: #961f15;
  --stone:      #7a7265;
  --rule:       #ddd6c8;
  --white:      #ffffff;

  --ff-serif:  'Cormorant Garamond', Georgia, serif;
  --ff-display:'Bebas Neue', sans-serif;
  --ff-sans:   'DM Sans', system-ui, sans-serif;

  --nav-h: 68px;
  --max-w: 1200px;
  --radius: 2px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

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

svg {
  width: 16px; height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── SCROLL-REVEAL ── */
.book-card, .update-card, .pull-quote, .about-text, .reviews-column {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.book-card.in-view, .update-card.in-view, .pull-quote.in-view,
.about-text.in-view, .reviews-column.in-view {
  opacity: 1;
  transform: translateY(0);
}
.update-card:nth-child(2) { transition-delay: 0.12s; }
.update-card:nth-child(3) { transition-delay: 0.24s; }

/* ── SECTION UTILITIES ── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.section-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: block;
}
.section-eyebrow--light { color: var(--gold-light); }
.section-heading {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 2.5rem;
}
.section-heading--light { color: var(--cream); }
.zh-accent { color: var(--gold); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 2rem;
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, transform 0.18s ease, border-color 0.22s ease;
  text-decoration: none;
}
.btn svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.btn:hover svg { transform: translateX(4px); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn-red {
  background: var(--crimson);
  color: var(--white);
  border-color: var(--crimson);
}
.btn-red:hover { background: var(--crimson-dk); border-color: var(--crimson-dk); }

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--cream); }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-nav.scrolled {
  background: var(--ink);
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-zh {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
}
.nav-logo-divider { color: rgba(255,255,255,0.3); font-size: 0.7rem; }
.nav-logo-sub { color: rgba(255,255,255,0.6); }

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  margin-left: auto;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s ease;
}
.nav-links > li > a:hover { color: var(--gold-light); }

/* Nav CTA */
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--white);
  padding: 0.45rem 1rem;
  margin-left: 0.5rem;
  transition: background 0.2s ease;
}
.nav-links .nav-cta:hover { background: var(--gold-light); color: var(--white); }

/* Dropdowns */
.nav-links .dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background: var(--ink);
  border-top: 2px solid var(--gold);
  list-style: none;
  padding: 0.5rem 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  z-index: 100;
}
.nav-links > li:hover .dropdown { display: block; }
.nav-links .dropdown li a {
  display: block;
  padding: 0.5rem 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-links .dropdown li a:hover {
  color: var(--gold-light);
  background: rgba(255,255,255,0.05);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--ink);
  z-index: 800;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}
.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-drawer ul { list-style: none; padding: 1rem 0 2rem; }
.mobile-drawer ul li a {
  display: block;
  padding: 0.85rem 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s ease, background 0.2s ease;
}
.mobile-drawer ul li a:hover { color: var(--gold-light); background: rgba(255,255,255,0.04); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--ink);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Textured background pattern — typewriter grid */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 59px,
      rgba(255,255,255,0.025) 60px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 59px,
      rgba(255,255,255,0.025) 60px
    );
  pointer-events: none;
}

/* Red diagonal accent — nod to Bond cover */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 45%;
  height: 130%;
  background: var(--crimson);
  clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.12;
  pointer-events: none;
}

/* Gold diagonal stripe */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--gold), var(--crimson), var(--gold));
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero text */
.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.2rem;
  display: block;
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
}
.hero-headline {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: clamp(3rem, 5.5vw, 5rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.8rem;
  animation: fadeUp 0.7s ease 0.1s forwards;
  opacity: 0;
}
/* Every line is a block span sharing the same font-size and line-height */
.hero-headline .hl-line {
  display: block;
  font-size: 1em;
  line-height: 1.08;
  font-weight: 700;
  font-style: normal;
  color: var(--white);
}
.hero-headline .hl-italic {
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
}
.hero-headline .hl-small {
  font-size: 0.7em;
}
.hero-accent {
  color: var(--gold);
}
.hero-accent-red {
  color: var(--crimson);
}
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.68);
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 2.4rem;
  animation: fadeUp 0.7s ease 0.2s forwards;
  opacity: 0;
}
.hero-sub strong { color: rgba(255,255,255,0.9); font-weight: 500; }
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.3s forwards;
  opacity: 0;
}

/* Hero photo */
.hero-image {
  animation: fadeUp 0.9s ease 0.25s forwards;
  opacity: 0;
}
.hero-photo-frame {
  position: relative;
  display: inline-block;
}
.hero-photo-frame::before {
  content: '';
  position: absolute;
  top: 16px; left: -16px;
  right: -16px; bottom: -16px;
  border: 2px solid var(--gold);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.hero-photo-frame::after {
  content: '';
  position: absolute;
  top: -8px; left: 8px;
  right: -8px; bottom: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  pointer-events: none;
  z-index: 0;
}
.hero-photo {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  filter: grayscale(15%) contrast(1.05);
}

/* ═══════════════════════════════════════
   BOOKS CALLOUT
═══════════════════════════════════════ */
.books-callout {
  background: var(--cream);
  padding: 7rem 0;
  border-bottom: 1px solid var(--rule);
}
.books-grid {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.book-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: start;
}
.book-card--reverse {
  grid-template-columns: 1fr 260px;
}
.book-card--reverse .book-cover-wrap { order: 2; }
.book-card--reverse .book-info { order: 1; }

.book-cover-wrap {
  position: relative;
}
.book-cover-wrap::before {
  content: '';
  position: absolute;
  bottom: -10px; right: -10px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  opacity: 0.35;
  pointer-events: none;
}
.book-cover {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.book-cover:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.book-info { padding-top: 0.5rem; }
.book-title {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.book-title span {
  font-size: 0.7em;
  font-weight: 400;
  font-style: italic;
  color: var(--stone);
  display: block;
}
.book-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--stone);
  font-weight: 300;
  margin-bottom: 1rem;
  max-width: 560px;
}
.book-award {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 1.8rem;
}

/* Divider between books */
.books-grid .book-card + .book-card {
  padding-top: 5rem;
  border-top: 1px solid var(--rule);
}

/* ═══════════════════════════════════════
   UPDATES
═══════════════════════════════════════ */
.updates-section {
  background: var(--ink);
  padding: 7rem 0;
  position: relative;
}
.updates-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--crimson));
}
.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.update-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2.2rem 1.8rem;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.update-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.update-tag {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 0.8rem;
}
.update-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0.8rem;
}
.update-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  margin-bottom: 1.4rem;
}
.update-link {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  transition: color 0.2s ease;
}
.update-link:hover { color: var(--gold-light); }

/* ═══════════════════════════════════════
   ABOUT + REVIEWS
═══════════════════════════════════════ */
.about-section {
  background: var(--cream-deep);
  padding: 7rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.about-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--stone);
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.about-text p em { color: var(--charcoal); font-style: italic; }
.about-text .btn { margin-top: 1rem; }

/* Pull quotes */
.pull-quote {
  position: relative;
  padding: 2rem 2rem 2rem 2.8rem;
  margin-bottom: 2rem;
  border-left: 3px solid var(--gold);
  background: var(--cream);
}
.pull-quote--kirkus { border-left-color: var(--crimson); }
.pull-quote p {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
}
.pull-quote cite {
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
}
.stars { color: var(--gold); letter-spacing: 0.05em; }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-section {
  background: var(--charcoal);
  padding: 7rem 0;
  position: relative;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--crimson), var(--gold));
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-blurb {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  margin-top: 0.5rem;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  position: relative;
  transition: opacity 0.4s ease;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.field { display: flex; flex-direction: column; gap: 0.45rem; }
label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  font-family: var(--ff-sans);
}
.req { color: var(--crimson); }
input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.8rem 1rem;
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--white);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  border-radius: 0;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.28); }
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.09);
}
textarea { resize: vertical; min-height: 140px; line-height: 1.7; }
select { cursor: pointer; }
select option { background: var(--charcoal); color: var(--white); }
.select-wrap { position: relative; }
.select-wrap::after {
  content: '▾';
  position: absolute;
  right: 1rem; top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
  pointer-events: none;
}
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.25rem;
}
.privacy-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
}

/* Success */
.success-msg {
  display: none;
  align-items: center;
  gap: 1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0; right: 0;
}
.success-msg.visible { display: flex; }
.success-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.success-icon svg { width: 16px; height: 16px; stroke: var(--white); fill: none; }
.success-msg p {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 5rem 0 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem 4rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .footer-logo {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 0.8rem;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  font-weight: 300;
}
.footer-brand em { color: var(--gold-light); font-style: italic; }
.footer-nav h4, .footer-books h4, .footer-social h4 {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.footer-nav ul, .footer-books ul { list-style: none; }
.footer-nav ul li, .footer-books ul li { margin-bottom: 0.5rem; }
.footer-nav ul li a, .footer-books ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s ease;
}
.footer-nav ul li a:hover, .footer-books ul li a:hover { color: var(--gold-light); }
.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.social-links a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s ease;
}
.social-links a:hover { color: var(--gold-light); }
.social-links svg {
  width: 14px; height: 14px;
  fill: currentColor;
  stroke: none;
}
.social-links a[aria-label="Instagram"] svg { fill: none; stroke: currentColor; stroke-width: 2; }
.footer-bottom {
  text-align: center;
  padding: 1.5rem 2rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.06em;
}

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

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-headline .hl-line { display: inline; line-height: inherit; }
  .hero-headline .hl-line::after { content: ' '; }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-image { display: flex; justify-content: center; }
  .hero-photo { max-width: 320px; }

  .book-card, .book-card--reverse {
    grid-template-columns: 220px 1fr;
    gap: 2.5rem;
  }
  .book-card--reverse .book-cover-wrap { order: 0; }
  .book-card--reverse .book-info { order: 0; }

  .updates-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .about-inner { grid-template-columns: 1fr; gap: 3.5rem; }

  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-inner { padding: 4rem 1.5rem 3rem; }
  .hero-headline { font-size: clamp(2.4rem, 8vw, 3.5rem); }

  .books-callout { padding: 5rem 0; }
  .books-callout .section-inner { padding: 0 1.5rem; }
  .book-card, .book-card--reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .book-cover-wrap { max-width: 200px; }
  .book-card--reverse .book-cover-wrap { max-width: 200px; }

  .updates-section, .about-section, .contact-section { padding: 5rem 0; }
  .updates-section .section-inner,
  .about-section .section-inner,
  .contact-section .section-inner { padding: 0 1.5rem; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1.5rem 3rem;
  }
  .social-links { flex-direction: row; flex-wrap: wrap; gap: 1rem; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 300px; justify-content: center; }
  .pull-quote { padding: 1.5rem 1.5rem 1.5rem 1.8rem; }
  .pull-quote p { font-size: 1.05rem; }
}

/* ═══════════════════════════════════════
   INTERIOR PAGES — SHARED
═══════════════════════════════════════ */

/* Compact dark page header (all interior pages) */
.page-header {
  background: var(--ink);
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--crimson), var(--gold));
}
/* Subtle grid texture — consistent with hero */
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255,255,255,0.025) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,255,255,0.025) 60px);
  pointer-events: none;
}
.page-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 2rem 3.5rem;
  position: relative;
  z-index: 1;
}
.page-breadcrumb {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  margin-bottom: 1rem;
  display: block;
}
.page-breadcrumb a { color: var(--gold); transition: color 0.2s ease; }
.page-breadcrumb a:hover { color: var(--gold-light); }
.page-breadcrumb span { margin: 0 0.5rem; opacity: 0.4; }
.page-title {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.page-title em { font-style: italic; color: var(--gold-light); }
.page-title-sub {
  font-family: var(--ff-serif);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  margin-top: 0.4rem;
  display: block;
}

/* Interior page body wrapper */
.page-body {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem 7rem;
}

/* ── BOOK DETAIL PAGE ── */
.book-detail {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 5rem;
}
.book-detail-cover-wrap {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.book-detail-cover-wrap::before {
  content: '';
  position: absolute;
  bottom: -12px; right: -12px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  opacity: 0.3;
  pointer-events: none;
}
.book-detail-cover {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
  position: relative;
  z-index: 1;
}
.book-detail-info {}
.book-detail-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 0.8rem;
}
.book-detail-title {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.book-detail-subtitle {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  color: var(--stone);
  margin-bottom: 2rem;
  display: block;
}
.book-detail-quote {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal);
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}
.book-detail-body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--stone);
  font-weight: 300;
  margin-bottom: 1.4rem;
}
.book-detail-body strong { color: var(--charcoal); font-weight: 500; }
.book-detail-body em { font-style: italic; color: var(--charcoal); }
.book-detail-body a { color: var(--gold); border-bottom: 1px solid rgba(201,145,60,0.3); transition: color 0.2s, border-color 0.2s; }
.book-detail-body a:hover { color: var(--crimson); border-color: rgba(192,40,28,0.4); }

/* Buy buttons row */
.book-buy-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.8rem;
  background: var(--cream-deep);
  border-left: 3px solid var(--crimson);
}
.book-buy-label {
  width: 100%;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--stone);
  margin-bottom: 0.2rem;
}

/* Book meta specs */
.book-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}
.book-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.book-meta-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
}
.book-meta-value {
  font-size: 0.88rem;
  color: var(--charcoal);
  font-weight: 400;
}

/* Supplemental links section */
.book-links-section {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--rule);
}
.book-links-heading {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: block;
}
.book-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.book-links-list li a {
  font-size: 0.92rem;
  color: var(--charcoal);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.2rem;
  transition: color 0.2s ease, border-color 0.2s ease;
  display: inline;
}
.book-links-list li a:hover { color: var(--gold); border-color: var(--gold); }

/* ── REVIEWS PAGE ── */
.reviews-page-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 5rem 2rem 7rem;
}
.review-book-section {
  margin-bottom: 5rem;
}
.review-book-section + .review-book-section {
  padding-top: 4rem;
  border-top: 1px solid var(--rule);
}
.review-book-heading {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--ink);
  margin-bottom: 0.4rem;
  line-height: 1.15;
}
.review-book-subhead {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 2.5rem;
}
.review-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.review-card {
  background: var(--cream-deep);
  border-left: 3px solid var(--gold);
  padding: 2rem 2rem 2rem 2.2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.review-card.in-view { opacity: 1; transform: translateY(0); }
.review-card--bond { border-left-color: var(--crimson); }
.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.review-source {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.review-rating {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.review-excerpt {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.review-link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.2s ease;
}
.review-link:hover { color: var(--crimson); }

/* ── INTERVIEWS PAGE ── */
.interviews-page-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 5rem 2rem 7rem;
}
.interview-intro {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--stone);
  font-weight: 300;
  margin-bottom: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--rule);
}
.interview-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.interview-item {
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--rule);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.interview-item.in-view { opacity: 1; transform: translateY(0); }
.interview-item:first-child { border-top: 1px solid var(--rule); }
.interview-outlet {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 0.5rem;
}
.interview-title {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0.8rem;
  display: block;
  transition: color 0.2s ease;
}
.interview-title:hover { color: var(--gold); }
.interview-quote {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--stone);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1rem;
}
/* YouTube embed */
.interview-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-top: 1.2rem;
}
.interview-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ── EVENTS PAGE ── */
.events-page-body {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem 7rem;
}
.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.events-upcoming {}
.events-past {}
.events-section-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  display: block;
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--rule);
}
.no-events-placeholder {
  background: var(--cream-deep);
  border: 1px dashed var(--rule);
  padding: 3rem 2rem;
  text-align: center;
}
.no-events-placeholder p {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--stone);
  line-height: 1.6;
  margin-bottom: 0.6rem;
}
.no-events-placeholder .no-events-sub {
  font-size: 0.8rem;
  font-style: normal;
  font-family: var(--ff-sans);
  color: rgba(122,114,101,0.6);
}
.no-events-placeholder a { color: var(--gold); transition: color 0.2s ease; }
.no-events-placeholder a:hover { color: var(--crimson); }
.past-event-item {
  margin-bottom: 3rem;
}
.past-event-item + .past-event-item {
  padding-top: 3rem;
  border-top: 1px solid var(--rule);
}
.past-event-title {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
}

/* ── CHINA GIRL DRAMATIC HEADER ── */
.book-hero {
  min-height: 80vh;
  background: var(--ink);
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
/* Warm amber gradient wash — China Girl's palette */
.book-hero--chinagirl {
  background: linear-gradient(135deg, #1a1714 0%, #2d1f0a 55%, #1a1714 100%);
}
.book-hero--chinagirl::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 40%, rgba(201,145,60,0.18) 0%, transparent 70%);
  pointer-events: none;
}
/* Decorative vertical lines — Shanghai tower silhouette feel */
.book-hero--chinagirl::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), rgba(201,145,60,0.2), var(--gold));
}
.book-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem 5rem;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 5rem;
  align-items: end;
  position: relative;
  z-index: 1;
  width: 100%;
}
.book-hero-cover-wrap {
  position: relative;
}
.book-hero-cover-wrap::before {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  opacity: 0.35;
  pointer-events: none;
}
.book-hero-cover {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  position: relative;
  z-index: 1;
  animation: fadeUp 0.9s ease 0.2s forwards;
  opacity: 0;
}
.book-hero-text {
  padding-bottom: 0.5rem;
}
.book-hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 1rem;
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
}
.book-hero-title {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 0.4rem;
  animation: fadeUp 0.7s ease 0.1s forwards;
  opacity: 0;
}
.book-hero-title em { font-style: italic; color: var(--gold-light); }
.book-hero-subtitle {
  font-family: var(--ff-serif);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-style: italic;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2rem;
  display: block;
  animation: fadeUp 0.7s ease 0.15s forwards;
  opacity: 0;
}
.book-hero-quote {
  font-family: var(--ff-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-style: italic;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  border-left: 2px solid var(--gold);
  padding-left: 1.4rem;
  margin-bottom: 2.5rem;
  max-width: 540px;
  animation: fadeUp 0.7s ease 0.2s forwards;
  opacity: 0;
}
.book-hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.3s forwards;
  opacity: 0;
}

/* ── INTERIOR PAGE RESPONSIVE ── */
@media (max-width: 900px) {
  .book-detail {
    grid-template-columns: 200px 1fr;
    gap: 3rem;
  }
  .book-detail-cover-wrap { position: static; }
  .events-grid { grid-template-columns: 1fr; gap: 4rem; }
}
@media (max-width: 768px) {
  .page-header-inner { padding: 3rem 1.5rem 2.5rem; }
  .page-body, .reviews-page-body, .interviews-page-body, .events-page-body { padding: 3.5rem 1.5rem 5rem; }
  .book-detail { grid-template-columns: 1fr; gap: 2.5rem; }
  .book-detail-cover-wrap { max-width: 200px; }
  .book-buy-row { flex-direction: column; }
  .book-hero-inner { grid-template-columns: 1fr; padding-bottom: 3.5rem; gap: 2.5rem; }
  .book-hero-cover-wrap { max-width: 180px; }
  .book-hero { min-height: 70vh; align-items: flex-end; }
}
