/* ============================================================
   forrestmaddox.com — The Mila Novels
   ============================================================ */

/* ── TOKENS ────────────────────────────────────────────────── */
:root {
  --bg:          #0c0c1a;
  --bg-surface:  #111126;
  --bg-card:     #161630;
  --bg-card-h:   #1c1c3a;

  --gold:        #c4924a;
  --gold-lt:     #d4aa72;
  --gold-dim:    #7a5a2a;
  --gold-border: rgba(196,146,74,0.22);
  --gold-fill:   rgba(196,146,74,0.07);

  --text:        #ede5d8;
  --text-2:      #b8a898;
  --text-3:      #7a6e62;

  --serif:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:   'Lato', system-ui, -apple-system, sans-serif;

  --r:  4px;
  --rl: 8px;
  --nav-h: 68px;
  --max: 1160px;
  --gap: clamp(1.5rem, 3vw, 2.5rem);

  --ease: 0.24s ease;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: var(--gold-lt); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--gold); }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.15; }

.section-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.section-heading--center { text-align: center; }
.section-heading--gold   { color: var(--gold-lt); }

.section-sub {
  text-align: center;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-2);
  max-width: 580px;
  margin: 0 auto 3.5rem;
}

.lead {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1rem;
}
p { margin-bottom: 0.9rem; color: var(--text-2); font-size: 0.95rem; }
p:last-child { margin-bottom: 0; }
em { font-style: italic; }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── LAYOUT ────────────────────────────────────────────────── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 2.5rem);
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.73rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.7rem 1.8rem;
  border-radius: var(--r);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--ease);
  line-height: 1;
}
.btn--gold {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  color: var(--bg);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--text);
}
.btn--outline {
  background: transparent;
  color: var(--gold-lt);
  border-color: var(--gold-border);
}
.btn--outline:hover {
  background: var(--gold-fill);
  border-color: var(--gold);
  color: var(--gold-lt);
}
.btn--sm  { padding: 0.55rem 1.3rem; font-size: 0.68rem; }
.btn--lg  { padding: 0.9rem 2.4rem;  font-size: 0.78rem; }

/* ── NAV ────────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  inset: 0 0 auto;
  height: var(--nav-h);
  z-index: 200;
  transition: background var(--ease), border-color var(--ease);
  border-bottom: 1px solid transparent;
}
.site-nav.is-scrolled {
  background: rgba(12,12,26,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--gold-border);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 2.5rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--text);
  text-transform: uppercase;
}
.nav-logo:hover { color: var(--gold-lt); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
}
.nav-links a:hover { color: var(--text); }
.nav-pill {
  padding: 0.38rem 1.1rem;
  border: 1px solid var(--gold-border);
  border-radius: var(--r);
  color: var(--gold-lt) !important;
}
.nav-pill:hover {
  background: var(--gold-fill);
  border-color: var(--gold) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--text-2);
  transition: all var(--ease);
  transform-origin: center;
}
.nav-toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 55% at 50% -5%,  rgba(196,146,74,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 70%  90% at 15% 110%, rgba(40,20,80,0.45)   0%, transparent 60%),
    radial-gradient(ellipse 50%  60% at 85% 50%,  rgba(12,30,60,0.3)    0%, transparent 55%),
    var(--bg);
  /* Subtle noise grain */
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: calc(var(--nav-h) + 4rem) 1.5rem 6rem;
  max-width: 780px;
  width: 100%;
}
.hero-content .eyebrow { margin-bottom: 1.6rem; }

.hero-headline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 1.4rem;
}
.hero-headline span { display: block; }

.hero-sub {
  font-family: var(--serif);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text-2);
  margin-bottom: 2.8rem;
  line-height: 1.7;
}

.hero-quote {
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 1.4rem 2rem;
  margin-bottom: 2.8rem;
}
.hero-quote q {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.8vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-lt);
  line-height: 1.5;
  quotes: "\201C" "\201D";
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-track {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollAnim 2.2s ease-in-out infinite;
  margin: 0 auto;
}
@keyframes scrollAnim {
  0%   { opacity: 0.2; transform: scaleY(0.4); transform-origin: top; }
  50%  { opacity: 0.9; transform: scaleY(1);   transform-origin: top; }
  100% { opacity: 0.2; transform: scaleY(0.4); transform-origin: bottom; }
}

/* ── SERIES OVERVIEW ────────────────────────────────────────── */
.series-overview {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.overview-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
  border-radius: var(--rl);
  overflow: hidden;
}
.stat {
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.6rem 1rem;
  text-align: center;
  transition: background var(--ease);
}
.stat:hover { background: var(--bg-card-h); }
.stat--highlight { background: var(--gold-fill); }
.stat-n {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-lt);
  line-height: 1;
  display: block;
}
.stat-l {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 0.3rem;
  display: block;
}

/* ── BOOKS ──────────────────────────────────────────────────── */
.books-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.books-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-bottom: 3rem;
}

.book-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--rl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.book-card:hover {
  transform: translateY(-5px);
  border-color: rgba(196,146,74,0.45);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.book-card--available { border-color: rgba(196,146,74,0.35); }

/* cover */
.book-cover-link { display: block; }
.book-cover-wrap {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--bg-surface);
  flex-shrink: 0;
}
.book-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.book-card:hover .book-cover { transform: scale(1.04); }

.cover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12,12,26,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--ease);
}
.book-cover-link:hover .cover-overlay { opacity: 1; }
.cover-overlay-text {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  border: 1px solid var(--gold-border);
  padding: 0.5rem 1.2rem;
  border-radius: var(--r);
}

.book-cover-wrap--soon { cursor: default; }
.coming-badge {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  background: rgba(12,12,26,0.8);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-3);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: var(--r);
}

/* info */
.book-info {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.book-header {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.book-num {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold-dim);
  line-height: 1;
  flex-shrink: 0;
}
.book-loc {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
}
.book-title {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.book-desc {
  font-size: 0.87rem;
  line-height: 1.72;
  color: var(--text-2);
  margin-bottom: 1.2rem;
  flex: 1;
}
.book-footer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  margin-top: auto;
}
.ku-note {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}

.series-cta {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gold-border);
}

/* ── THE SENTENCE ───────────────────────────────────────────── */
.sentence-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.sentence-figure {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}
.sentence-text {
  margin-bottom: 1.8rem;
}
.sentence-text p {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3.2vw, 2.1rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  margin: 0;
}
.sentence-caption {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 2;
}
.sentence-note {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-top: 0.3rem;
}

/* ── ABOUT ──────────────────────────────────────────────────── */
.about-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.author-monogram {
  aspect-ratio: 3 / 4;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(196,146,74,0.08), transparent 70%),
    var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--rl);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.08em;
}
.author-monogram span {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold-dim);
}

/* ── SIGNUP ─────────────────────────────────────────────────── */
.signup-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--gold-border);
}
.signup-inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}
.signup-text {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-style: italic;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.signup-row {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}
.signup-input {
  flex: 1;
  min-width: 0;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--r);
  padding: 0.7rem 1rem;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color var(--ease);
}
.signup-input::placeholder { color: var(--text-3); }
.signup-input:focus { border-color: var(--gold); }
.signup-fine {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0;
}
.signup-success {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-lt);
  padding: 1.2rem;
  border: 1px solid var(--gold-border);
  border-radius: var(--r);
}
.signup-error {
  font-size: 0.82rem;
  color: #d07060;
  margin-bottom: 0.6rem;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--gold-border);
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-brand {
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--text);
  margin: 0;
  text-transform: uppercase;
}
.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
}
.footer-nav a:hover { color: var(--gold-lt); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-notice {
  font-size: 0.68rem;
  color: var(--text-3);
  max-width: 380px;
  margin: 0;
}
.footer-copy {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1020px) {
  .books-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 800px) {
  .overview-grid { grid-template-columns: 1fr; }
  .overview-stats { max-width: 360px; }
  .about-grid     { grid-template-columns: 1fr; }
  .author-placeholder { max-width: 240px; }
}

@media (max-width: 680px) {
  .books-grid { grid-template-columns: 1fr; }

  /* mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto;
    background: rgba(12,12,26,0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 0 1rem;
    border-bottom: 1px solid var(--gold-border);
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.85rem clamp(1.2rem, 4vw, 2.5rem);
  }
  .nav-pill {
    margin: 0.5rem clamp(1.2rem, 4vw, 2.5rem);
    display: inline-block;
    width: auto;
  }
}

@media (max-width: 480px) {
  .hero-actions    { flex-direction: column; align-items: center; }
  .signup-row      { flex-direction: column; }
  .footer-top      { flex-direction: column; align-items: flex-start; }
  .footer-bottom   { flex-direction: column; align-items: flex-start; }
}

/* ── START HERE PANEL ──────────────────────────────────────── */
.start-here {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--rl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin: 2.5rem 0 3.5rem;
}
.start-here-cover img {
  border-radius: var(--r);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  transition: transform var(--ease);
}
.start-here-cover:hover img { transform: translateY(-4px); }
.start-here-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0.4rem 0 0.1rem;
}
.start-here-subtitle {
  font-family: var(--serif);
  font-style: italic;
  color: var(--text-2);
  margin-bottom: 0.8rem;
}
.start-here-desc { color: var(--text-2); max-width: 56ch; margin-bottom: 1.2rem; }
.start-here-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 0.6rem; }
.start-here .ku-note { font-size: 0.8rem; color: var(--text-3); }
@media (max-width: 640px) {
  .start-here { grid-template-columns: 1fr; text-align: center; }
  .start-here-cover { max-width: 180px; margin: 0 auto; }
  .start-here-actions { justify-content: center; }
  .start-here-desc { margin-left: auto; margin-right: auto; }
}

/* ── BOOK GROUP HEADINGS / SUBTITLES ───────────────────────── */
.books-group-heading {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin: 2.5rem 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.books-group-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gold-border);
}
.books-group-heading--soon { color: var(--text-3); }
.book-subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-3);
  margin: -0.2rem 0 0.6rem;
}
.excerpt-link {
  display: block;
  font-size: 0.85rem;
  margin-top: 0.6rem;
  color: var(--text-2);
}
.excerpt-link:hover { color: var(--gold-lt); }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-section { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--bg-surface); }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
  margin-top: 2.5rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--rl);
  padding: 1.8rem;
}
.faq-item h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--gold-lt);
  margin-bottom: 0.8rem;
}
.faq-item p { color: var(--text-2); font-size: 0.95rem; }

/* ── PRAISE ────────────────────────────────────────────────── */
.praise-section { padding: clamp(4rem, 8vw, 7rem) 0; }
.praise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
  margin-top: 2.5rem;
}
.praise-item {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--rl);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  margin: 0;
}
.praise-item blockquote { flex: 1; margin-bottom: 1.2rem; }
.praise-item blockquote p {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}
.praise-item figcaption {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── FAQ CLOSING CTA ───────────────────────────────────────── */
.faq-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gold-border);
}
.faq-cta p {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-2);
  margin-bottom: 1.5rem;
}
.faq-cta .ku-note { display: block; margin-top: 0.8rem; }

/* ── STICKY BUY BAR ────────────────────────────────────────── */
.sticky-buy {
  position: fixed;
  inset: auto 0 0;
  z-index: 150;
  background: rgba(12,12,26,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--gold-border);
  transform: translateY(100%);
  visibility: hidden;
  transition: transform var(--ease), visibility var(--ease);
  padding-bottom: env(safe-area-inset-bottom);
}
.sticky-buy.is-visible {
  transform: translateY(0);
  visibility: visible;
}
.sticky-buy-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.65rem clamp(1.2rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}
.sticky-buy-text {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-2);
}
@media (max-width: 480px) {
  .sticky-buy-text { display: none; }
}

/* ── EXCERPT PAGE ──────────────────────────────────────────── */
.excerpt-main { padding: calc(var(--nav-h) + 3rem) 0 4rem; }
.excerpt-wrap { max-width: 680px; margin: 0 auto; }
.excerpt-header { text-align: center; margin-bottom: 3rem; }
.excerpt-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin: 0.5rem 0;
}
.excerpt-note { color: var(--text-3); font-size: 0.9rem; }
.excerpt-prose p {
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.4rem;
}
.excerpt-prose .dialogue { margin-bottom: 0.4rem; }
.excerpt-break {
  text-align: center;
  color: var(--gold-dim);
  letter-spacing: 1em;
  margin: 2.5rem 0;
}
.excerpt-cta {
  margin-top: 3.5rem;
  padding: 2.5rem;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--rl);
}
.excerpt-cta h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.excerpt-cta p { color: var(--text-2); margin-bottom: 1.5rem; }
.excerpt-cta .ku-note { display: block; margin-top: 0.8rem; font-size: 0.85rem; color: var(--text-3); }
.excerpt-cta .list-line { margin-top: 1.5rem; font-size: 0.9rem; color: var(--text-3); }
