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

:root {
  --bg: #0d0a10;
  --bg-elevated: #110d16;
  --bg-panel: rgba(20, 12, 28, 0.85);
  --bg-panel-inner: rgba(30, 18, 40, 0.6);
  --pink: #ff1493;
  --pink-soft: #ff69b4;
  --pink-pale: #ffb6d9;
  --pink-deep: #c2185b;
  --plum: #1a0a1a;
  --plum-mid: #2a1530;
  --white: #ffffff;
  --text-primary: rgba(255,255,255,0.92);
  --text-secondary: #c8c8c8;
  --text-muted: rgba(255,255,255,0.45);
  --border-subtle: rgba(255,20,147,0.15);
  --border-accent: rgba(255,20,147,0.4);
  --glow: rgba(255,20,147,0.08);
  --gold: #C9A961;
  --gold-light: #D4AF37;
  --gold-pale: rgba(201,169,97,0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; width: 100%; }

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Subtle grain texture overlay */
body::after {
  content: '';
  position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 9999; pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

::selection { background: rgba(255,20,147,0.25); }
img { max-width: 100%; height: auto; }
a { color: inherit; }

/* Screen-reader only (visually hidden but accessible) */
.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;
}

/* Animations */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes marquee { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }
@keyframes shimmer { 0%,100% { opacity:0.3; } 50% { opacity:0.8; } }
@keyframes pulseGlow { 0%,100% { box-shadow: 0 0 30px rgba(255,20,147,0.15); } 50% { box-shadow: 0 0 50px rgba(255,20,147,0.3); } }

.reveal { opacity:0; transform:translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* sparkle canvas removed */

/* ===================== NAV ===================== */
nav {
  position: fixed; top:0; left:0; right:0; z-index:100;
  padding: 0.5rem 2rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  background: linear-gradient(180deg, #100c14 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.5s ease;
}

.nav-left, .nav-right {
  display: flex; gap: 0.5rem; list-style: none; align-items: center;
  transition: all 0.5s ease;
}
.nav-left::after { content: none; }

.nav-brand {
  display: flex; flex-direction: column; align-items: center; flex-shrink: 0;
  margin: 0 1.5rem; transition: all 0.5s ease; order: 0; text-decoration: none;
  gap: 0.2rem;
}
.nav-brand img { height: 80px; width: auto; transition: all 0.5s ease; }
.nav-brand-text {
  font-family: 'Cormorant Garamond', serif; font-size: 0.7rem; font-weight: 400;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--white);
  transition: all 0.5s ease; white-space: nowrap;
}

nav.compact { padding: 0.3rem 2rem; gap: 0.3rem; }
nav.compact .nav-brand { position: absolute; left: 2rem; margin: 0; flex-direction: row; gap: 0.5rem; }
nav.compact .nav-brand img { height: 36px; }
nav.compact .nav-brand-text { font-size: 0.6rem; letter-spacing: 0.25em; }
nav.compact .nav-left::after {
  content: '\2726'; font-size: 1.2rem; color: var(--gold); margin-left: 0.5rem;
  display: flex; align-items: center;
}
nav.compact .nav-social { position: absolute; right: 2rem; }

.nav-diamond {
  font-size: 1rem; opacity: 0.7; line-height: 1; user-select: none; color: var(--gold);
}

.nav-item { position: relative; }

.nav-left a, .nav-right a {
  font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-secondary);
  text-decoration: none; padding: 0.5rem; transition: color 0.3s; white-space: nowrap;
}
.nav-left a:hover, .nav-right a:hover { color: var(--pink); }
.nav-left a.active, .nav-right a.active { color: var(--pink); }

.nav-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: var(--bg); border: 1px solid var(--border-accent);
  padding: 0.8rem 0; min-width: 220px; display: none; z-index: 200;
}
.nav-item:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block; font-size: 0.62rem; letter-spacing: 0.12em;
  padding: 0.5rem 1.5rem; color: var(--text-secondary); white-space: nowrap;
}
.nav-dropdown a:hover { color: var(--pink); background: var(--glow); }

.nav-social {
  display: flex; gap: 1rem; align-items: center; margin-left: 1.5rem; flex-shrink: 0;
}
.nav-social a {
  display: flex; align-items: center; opacity: 0.5; transition: opacity 0.3s; text-decoration: none;
}
.nav-social a:hover { opacity: 1; }
.nav-social a img { height: 20px; width: auto; filter: brightness(0) invert(1); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--text-secondary); margin: 5px 0; }

.mobile-menu {
  display: none; position: fixed; top: 65px; left: 0; right: 0; bottom: 0;
  background: var(--bg); flex-direction: column; align-items: center;
  padding: 1.5rem; gap: 1rem;
  border-bottom: 1px solid var(--pink);
  z-index: 99; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-primary);
  text-decoration: none; padding: 0.4rem 0;
}
.mobile-menu .mobile-social {
  display: flex; gap: 1.5rem; padding-top: 0.8rem;
  border-top: 1px solid var(--border-accent); margin-top: 0.3rem; align-items: center;
}
.mobile-menu .mobile-social a {
  display: flex; align-items: center; padding: 0; opacity: 0.5; transition: opacity 0.3s;
}
.mobile-menu .mobile-social a img { height: 18px; width: auto; filter: brightness(0) invert(1); }

/* ===================== MAIN CONTAINER ===================== */
.main-container {
  max-width: 1100px; margin: 0 auto;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(26,10,26,0.8) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(26,10,26,0.6) 0%, transparent 50%),
    var(--bg);
  padding: 0; position: relative;
}

/* ===================== MARQUEE ===================== */
.marquee-banner {
  background: linear-gradient(90deg, rgba(26,10,26,0.6), var(--bg-elevated), rgba(26,10,26,0.6));
  overflow: hidden; padding: 1rem 0;
  border-top: 1px solid var(--pink);
  border-bottom: 1px solid var(--pink);
}
.marquee-track {
  display: flex; width: fit-content;
  animation: marquee 45s linear infinite; align-items: center;
}
.marquee-item {
  display: flex; align-items: center; padding: 0 2rem; white-space: nowrap;
  font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--pink-soft);
  text-decoration: none; transition: color 0.3s;
}
a.marquee-item:hover { color: var(--white); }
.marquee-sep {
  font-size: 1.2rem; opacity: 0.7; padding: 0 2rem; font-weight: 400;
  display: inline-flex; align-items: center; line-height: 1; color: var(--gold);
}

/* ===================== SERIES + TROPES ===================== */
.series-section {
  padding: 3.5rem 3rem 1.5rem; text-align: center; position: relative;
}
.series-section::before {
  content: ''; position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse at center, rgba(255,20,147,0.06) 0%, rgba(26,10,26,0.04) 50%, transparent 70%);
  pointer-events: none;
}
.series-heading {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem,5vw,3.8rem);
  font-weight: 300; font-style: italic; letter-spacing: 0.02em;
  margin-bottom: 0.8rem; color: var(--white);
  text-shadow:
    0 0 20px rgba(255,20,147,0.15),
    0 0 50px rgba(255,20,147,0.08);
}
.trope-display {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem 0.8rem; flex-wrap: wrap; margin-bottom: 1.5rem;
}
.trope-big {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--pink-soft);
}
.trope-dot { font-size: 0.5rem; color: var(--gold); opacity: 0.6; }

/* ===================== BOOKS ===================== */
.book-showcase {
  display: flex; flex-direction: column; gap: 3rem;
  position: relative; padding: 0 2rem 3rem;
  max-width: 800px; margin: 0 auto;
}
.book-slot {
  position: relative; cursor: pointer; overflow: hidden;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; transition: all 0.4s ease; padding: 1rem 0;
}
.book-slot-label {
  font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--pink);
  margin-bottom: 0.8rem; min-height: 1.5em;
}
.book-slot-cover { position: relative; z-index: 2; width: 300px; transition: transform 0.4s ease; }
.book-slot:hover .book-slot-cover { transform: scale(1.03); }
.book-slot-cover::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120%; height: 120%;
  background: radial-gradient(ellipse at center, rgba(255,20,147,0.1) 0%, rgba(140,20,100,0.04) 40%, transparent 70%);
  pointer-events: none; z-index: -1;
}
.book-slot-cover img {
  width: 100%; display: block;
  box-shadow: 0 12px 50px rgba(0,0,0,0.6), 0 0 40px rgba(255,20,147,0.12);
}

/* Book slide panels — kept for desktop hover reveal */
.book-slide {
  width: 100%; max-width: 560px;
  background: rgba(15,8,20,0.7);
  padding: 2rem 2.5rem; display: flex; flex-direction: column; align-items: center;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1); z-index: 10;
  overflow: hidden; max-height: 0; opacity: 0; margin-top: 0;
}
.book-slot.open .book-slide {
  max-height: 600px; opacity: 1; margin-top: 1.5rem; padding-top: 2rem; padding-bottom: 2rem;
  border-top: 1px solid var(--border-subtle);
}

/* Remove old positioning for slide panels */
.book-slot:first-child .book-slide,
.book-slot:last-child .book-slide {
  position: relative; right: auto; left: auto;
  transform: none; border-left: none; border-right: none;
}

.book-slide-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem,2.5vw,2.2rem); font-weight: 400; font-style: italic;
  margin-bottom: 0.5rem; color: var(--white);
}
.book-slide-title a {
  color: var(--white); text-decoration: none;
  transition: color 0.3s;
}
.book-slide-title a:hover { color: var(--pink); }
.book-slide-status {
  font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink);
  margin-bottom: 0.8rem;
}
.book-slide-status a {
  color: inherit; text-decoration: none;
  border-bottom: 1px solid var(--border-accent); padding-bottom: 1px;
}
.book-slide-status a:hover { border-color: var(--white); }

.book-slide-tropes { display: flex; flex-wrap: wrap; gap: 0.2rem 0.4rem; margin-bottom: 1rem; }
.book-slide-trope {
  font-family: 'Montserrat', sans-serif; font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--pink-soft);
}
.book-slide-trope-dot { font-size: 0.6rem; color: var(--gold); opacity: 0.5; }
.book-slide-desc {
  font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 400;
  color: var(--text-secondary); line-height: 1.7; font-style: italic; margin-bottom: 1.5rem;
}
.book-slide-links { display: flex; flex-direction: column; gap: 0.6rem; }
.book-slide-btn {
  display: inline-block; font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.7rem 1.5rem; text-decoration: none; text-align: center; transition: all 0.3s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  color: var(--white); border: 1px solid var(--pink);
}
.btn-primary:hover { background: transparent; color: var(--pink); }
.btn-outline { background: transparent; color: var(--pink); border: 1px solid var(--pink); }
.btn-outline:hover { background: var(--pink); color: var(--white); }
.book-slide-close {
  position: absolute; top: 1rem; right: 1.2rem; background: none; border: none;
  color: var(--text-muted); font-size: 1.4rem; cursor: pointer; padding: 0.5rem;
  transition: color 0.3s; z-index: 11;
}
.book-slide-close:hover { color: var(--white); }

.mobile-step-inside {
  display: none; margin-top: 1rem; font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--pink); text-decoration: none;
  border-bottom: 1px solid var(--border-accent); padding-bottom: 2px;
}

/* ===================== REVIEWS ===================== */
.review-wall { padding: 1.5rem 2rem 1rem; text-align: center; }
.review-header {
  display: flex; align-items: center; justify-content: center;
  gap: 0.6rem; margin-bottom: 1rem;
}
.review-stars { font-size: 1.8rem; letter-spacing: 0.1em; color: var(--gold); }
.review-stars-label {
  font-family: 'Montserrat', sans-serif; font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink-soft);
}
.review-scatter {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0.5rem 0.8rem; max-width: 950px; margin: 0 auto;
}
.rq {
  opacity: 0; animation: rqFade 0.5s ease forwards; text-align: center; padding: 0.4rem;
}
@keyframes rqFade { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:translateY(0); } }
.rq p {
  font-family: 'Cormorant Garamond', serif; font-weight: 400; font-style: italic;
  color: var(--text-secondary); line-height: 1.5; margin-bottom: 0.2rem; font-size: 0.82rem;
}
.rq span {
  font-family: 'Montserrat', sans-serif; font-size: 0.5rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--pink-soft);
}
.rq-lg p { font-size: 0.88rem; }

.review-arrows { display: none; }
.review-nav-arrow {
  background: none; border: none; color: var(--pink); font-size: 1.4rem;
  cursor: pointer; padding: 0.3rem 0.6rem; transition: color 0.3s;
  position: absolute; top: 50%; transform: translateY(-50%);
}
.review-nav-arrow:hover { color: var(--white); }
.review-dots-m { display: none; }

/* ===================== CTA FLOW ===================== */
.cta-flow {
  padding: 3rem 3rem 3.5rem; display: flex; flex-direction: column;
  gap: 3rem; align-items: center;
  border-top: 1px solid var(--border-subtle);
  max-width: 560px; margin: 0 auto;
  position: relative;
}
.cta-left { width: 100%; text-align: center; }
.cta-right {
  width: 100%; text-align: center;
  padding-top: 2.5rem; border-top: 1px solid var(--border-subtle);
}
.cta-flow h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 400; font-style: italic; color: var(--white);
  margin-bottom: 0.6rem;
}
.cta-flow p {
  font-family: 'Montserrat', sans-serif; font-size: 0.92rem; font-weight: 300;
  color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.2rem;
}

.nl-form-inline {
  max-width: 300px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.5rem;
}
.nl-form-inline input {
  padding: 0.65rem 1rem; border: 1px solid var(--border-accent);
  background: rgba(255,255,255,0.04); font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem; font-weight: 300; color: var(--white); outline: none;
  transition: border-color 0.3s;
}
.nl-form-inline input:focus { border-color: var(--pink); }
.nl-form-inline input::placeholder { color: var(--text-muted); }
.nl-form-inline button {
  padding: 0.7rem 1.5rem;
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  color: var(--white); border: 1px solid var(--pink);
  font-family: 'Montserrat', sans-serif; font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer;
  transition: all 0.3s; white-space: nowrap;
}
.nl-form-inline button:hover { background: transparent; color: var(--pink); }
.nl-note {
  font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 300;
  color: var(--text-secondary); margin-top: 1rem;
}

/* ===================== SUBPAGE ===================== */
.subpage-container {
  max-width: 900px; margin: 160px auto 3rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(26,10,26,0.7) 0%, transparent 60%),
    var(--bg);
  padding: 2.5rem 3rem;
}
.subpage-container h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem,5.5vw,4rem); font-weight: 300; font-style: italic;
  color: var(--white); margin-bottom: 0.8rem;
}
.subpage-container h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 400; font-style: italic;
  color: var(--white); margin-bottom: 1rem;
}
.subpage-container p {
  font-family: 'Montserrat', sans-serif; font-size: 0.92rem; font-weight: 300;
  color: var(--text-primary); line-height: 1.9; margin-bottom: 1rem;
}

/* Content warnings */
.cw-toggle {
  background: none; border: 1px solid var(--border-accent); color: var(--pink-soft);
  font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.5rem 1.2rem;
  cursor: pointer; transition: all 0.3s; margin-top: 1.5rem;
}
.cw-toggle:hover { border-color: var(--pink); color: var(--white); }
.cw-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.cw-content.open { max-height: 500px; }
.cw-content p {
  font-size: 0.82rem; color: var(--text-muted); line-height: 1.8; margin-top: 0.8rem;
}

/* ===================== FOOTER ===================== */
footer {
  text-align: center; padding: 2.5rem 2rem 2rem; max-width: 1100px; margin: 2rem auto 0;
  border-top: 1px solid var(--border-subtle);
}
.footer-inner {
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.footer-links a {
  font-family: 'Montserrat', sans-serif; font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted);
  text-decoration: none; transition: color 0.3s;
}
.footer-links a:hover { color: var(--pink); }
.footer-icons { display: flex; gap: 1.5rem; align-items: center; }
.footer-icons a {
  display: flex; align-items: center; opacity: 0.4; transition: opacity 0.3s; text-decoration: none;
}
.footer-icons a:hover { opacity: 1; }
.footer-icons a img { height: 18px; width: auto; filter: brightness(0) invert(1); }
.copyright {
  font-family: 'Montserrat', sans-serif; font-size: 0.58rem; font-weight: 300;
  letter-spacing: 0.08em; color: var(--text-muted); margin-top: 0.5rem;
}

/* ===================== FAQ ACCORDION ===================== */
.faq-section { margin-top: 2.5rem; border-top: 1px solid var(--border-subtle); padding-top: 2.5rem; }
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left; cursor: pointer;
  padding: 1.2rem 2rem 1.2rem 0; position: relative;
  font-family: 'Montserrat', sans-serif; font-size: 0.92rem; font-weight: 400;
  color: var(--text-primary); line-height: 1.6; transition: color 0.3s;
}
.faq-q:hover { color: var(--pink); }
.faq-q::after {
  content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.2rem; color: var(--pink); transition: transform 0.3s;
}
.faq-q.open::after { content: '\2212'; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a.open { max-height: 300px; padding-bottom: 1.2rem; }
.faq-a p {
  font-family: 'Montserrat', sans-serif; font-size: 0.88rem; font-weight: 300;
  color: var(--text-secondary); line-height: 1.9;
}

/* ===================== MOBILE ===================== */
@media(max-width:768px) {
  nav { padding: 0.3rem 1rem; justify-content: center; }
  .nav-social { display: none; }
  .nav-toggle { display: block; position: absolute; right: 1rem; }
  .nav-left, .nav-right { display: none !important; }
  .nav-brand img { height: 60px; }
  nav.compact { justify-content: flex-start; }
  nav.compact .nav-brand { position: static; flex-direction: row; gap: 0.5rem; align-items: center; }
  nav.compact .nav-brand img { height: 32px; }
  nav.compact .nav-brand-text { font-size: 0.6rem; letter-spacing: 0.25em; }

  .main-container {
    margin-top: 115px !important;
  }

  .marquee-banner { padding: 0.7rem 0; }
  .marquee-item { font-size: 0.78rem; }
  .marquee-sep { font-size: 1rem; }

  .series-section { padding: 1rem 1.2rem 0.3rem; }
  .series-heading { font-size: 2rem; margin-bottom: 0.3rem; }
  .trope-display { flex-wrap: wrap; gap: 0.3rem 0.6rem; margin-bottom: 0.3rem; justify-content: center; }
  .trope-big { font-size: 0.65rem; padding: 0.1rem 0.2rem; }
  .trope-dot { font-size: 0.35rem; margin: 0 0.1rem; line-height: 1; vertical-align: middle; }

  .book-showcase { flex-direction: column; padding: 0 1.2rem 1rem; gap: 2rem; }
  .book-slot { min-height: auto; padding: 0.8rem 0; }
  .book-slot-cover { width: 220px; }
  .book-slide { display: none !important; }
  .mobile-step-inside { display: inline-block; }

  .review-wall { padding: 0.6rem 0 0.3rem; }
  .review-header { margin-bottom: 0.4rem; }
  .review-stars { font-size: 1.5rem; }
  .review-stars-label { font-size: 0.85rem; }
  .review-scatter {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none; gap: 0; padding: 0 0.5rem;
  }
  .review-scatter::-webkit-scrollbar { display: none; }
  .rq { flex: 0 0 100%; scroll-snap-align: center; padding: 0.4rem 2rem; opacity: 1; animation: none; }
  .rq p { font-size: 1rem; line-height: 1.5; }
  .rq span { font-size: 0.72rem; font-weight: 600; }
  .review-arrows {
    display: flex; justify-content: center; gap: 3rem; margin-top: 0.2rem; position: relative;
  }
  .review-nav-arrow { position: static; transform: none; font-size: 1.8rem; color: var(--pink); }
  .review-dots-m { display: none; }

  .cta-flow { padding: 1.5rem 1.2rem; gap: 2rem; }
  .cta-flow h3 { font-size: 1.3rem; }

  footer { padding: 1.5rem 1rem 1rem; }
  .footer-inner { gap: 0.8rem; }
  .footer-links { gap: 1rem; }
  .footer-links a { font-size: 0.58rem; letter-spacing: 0.1em; }
  .footer-icons { gap: 1rem; }
  .footer-icons a img { height: 16px; }
  .copyright { margin-top: 0.3rem; }

  .mobile-menu { top: 110px; }
  .subpage-container {
    margin: 120px 0 2rem;
    padding: 1.5rem 1.2rem;
  }

  .subpage-container p:not([style*="center"]), .blurb, .char-full-info p, .cw-content p, .about-text p { text-align: left !important; }
  .about-signoff { text-align: right !important; padding-right: 1rem; }
  .about-content { text-align: left; }
}
