/* ==========================================================================
   Whitney Hanson Poetry — Master Design System & Luxury Editorial Theme
   ========================================================================== */

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

:root {
  /* Light Theme / Warm Creamy Literary Paper Palette */
  --bg-main: #FAF7F2;
  --bg-card: #FFFFFF;
  --bg-card-subtle: #F4EFE6;
  --bg-card-glass: rgba(250, 247, 242, 0.88);
  --bg-overlay: rgba(18, 17, 20, 0.72);
  --bg-dark-accent: #17161A;
  
  --text-primary: #1E1D22;
  --text-secondary: #524F5A;
  --text-muted: #888492;
  --text-light: #FAF7F2;
  
  /* Brand Accent Tokens */
  --gold-primary: #C89D5C;
  --gold-light: #E2C48F;
  --gold-dark: #987236;
  --gold-glow: rgba(200, 157, 92, 0.25);
  
  --rose-accent: #C46E65;
  --sage-accent: #4A6B5B;
  --cobalt-accent: #33547A;
  --border-subtle: rgba(180, 160, 140, 0.22);
  --border-strong: rgba(180, 160, 140, 0.45);
  
  /* Typography Tokens */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-hand: 'Caveat', cursive;
  
  /* Shadows & Elevations */
  --shadow-sm: 0 4px 14px rgba(35, 25, 15, 0.05);
  --shadow-md: 0 12px 36px rgba(35, 25, 15, 0.09);
  --shadow-lg: 0 24px 64px rgba(35, 25, 15, 0.14);
  --shadow-book: 0 20px 40px -12px rgba(25, 20, 15, 0.32), 0 0 0 1px rgba(0,0,0,0.06);
  
  /* Layout Dimensions */
  --max-width: 1240px;
  --nav-height: 76px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Dark Theme / Nocturnal Literary Mode */
body.dark-theme {
  --bg-main: #111114;
  --bg-card: #19181D;
  --bg-card-subtle: #23222A;
  --bg-card-glass: rgba(17, 17, 20, 0.9);
  --bg-overlay: rgba(5, 5, 8, 0.88);
  --bg-dark-accent: #0A0A0C;
  
  --text-primary: #F4F1EA;
  --text-secondary: #B2ADC0;
  --text-muted: #747082;
  
  --border-subtle: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.2);
  --shadow-md: 0 12px 36px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.65);
  --shadow-book: 0 20px 40px -12px rgba(0, 0, 0, 0.7);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
  position: relative;
}

/* Background Subtle Paper Texture */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 1;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
  transition: var(--transition-fast);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 2rem);
  position: relative;
  z-index: 2;
}

/* --------------------------------------------------------------------------
   Typography Elements
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.font-display {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.font-hand {
  font-family: var(--font-hand);
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

body.dark-theme .section-label {
  color: var(--gold-light);
}

.section-label::before,
.section-label::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 3rem auto;
  font-weight: 400;
}

.text-center {
  text-align: center;
}

/* --------------------------------------------------------------------------
   Buttons & Badges
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--text-primary);
  color: var(--bg-main);
  border: 1px solid var(--text-primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.btn-primary:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--gold-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: var(--bg-card-subtle);
  border-color: var(--text-primary);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, #D4AF37, #C89D5C);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 20px rgba(200, 157, 92, 0.32);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #E5C258, #D8AB67);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(200, 157, 92, 0.48);
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.82rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Header & Floating Navigation Bar (Ultra-Premium & Perfectly Fitted)
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 100;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
}

.site-header.scrolled {
  background: var(--bg-card-glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  height: 68px;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1.25rem;
}

/* Brand Logo Lockup */
.brand-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--text-primary);
  line-height: 1.1;
  white-space: nowrap;
}

.brand-tag {
  font-size: 0.6rem;
  font-family: var(--font-sans);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-top: 3px;
  line-height: 1;
}

body.dark-theme .brand-tag {
  color: var(--gold-light);
}

/* Desktop Navigation Menu */
.desktop-nav {
  display: flex;
  align-items: center;
}

.nav-links-menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
}

.nav-link {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 0.4rem 0;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: width 0.25s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Right Action Controls Cluster */
.nav-right-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

/* Nav Soundtrack Audio Pill */
.nav-audio-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.95rem;
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-primary);
  transition: var(--transition-fast);
  white-space: nowrap;
}

.nav-audio-pill:hover {
  border-color: var(--gold-primary);
  background: rgba(200, 157, 92, 0.12);
}

.nav-audio-pill.is-active {
  background: rgba(200, 157, 92, 0.2);
  border-color: var(--gold-primary);
  color: var(--gold-dark);
}

body.dark-theme .nav-audio-pill.is-active {
  color: var(--gold-light);
}

/* Equalizer Bars in Nav */
.eq-bars-anim {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}

.eq-bar {
  width: 2.5px;
  height: 4px;
  background: currentColor;
  border-radius: 1px;
  transition: height 0.2s ease;
}

.nav-audio-pill.is-active .eq-bar:nth-child(1) { animation: eqBarPulse 0.9s infinite ease-in-out alternate; }
.nav-audio-pill.is-active .eq-bar:nth-child(2) { animation: eqBarPulse 1.2s infinite ease-in-out 0.2s alternate; }
.nav-audio-pill.is-active .eq-bar:nth-child(3) { animation: eqBarPulse 0.7s infinite ease-in-out 0.4s alternate; }
.nav-audio-pill.is-active .eq-bar:nth-child(4) { animation: eqBarPulse 1.0s infinite ease-in-out 0.1s alternate; }

@keyframes eqBarPulse {
  0% { height: 3px; }
  100% { height: 12px; }
}

/* Theme Switcher Toggle */
.theme-toggle-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  flex-shrink: 0;
}

.theme-toggle-btn:hover {
  background: var(--gold-glow);
  border-color: var(--gold-primary);
  transform: scale(1.05);
}

.theme-toggle-btn .icon-moon {
  display: none;
}

body.dark-theme .theme-toggle-btn .icon-sun {
  display: none;
}

body.dark-theme .theme-toggle-btn .icon-moon {
  display: block;
}

/* Nav CTA */
.nav-cta-btn {
  padding: 0.45rem 1.15rem;
  font-size: 0.82rem;
}

/* Mobile Menu Hamburger Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-subtle);
  padding: 6px;
}

.hamburger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Mobile Drawer & Backdrop */
.mobile-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-overlay);
  backdrop-filter: blur(8px);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: var(--bg-card);
  box-shadow: var(--shadow-lg);
  z-index: 500;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-nav-drawer.is-open {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-drawer-nav {
  margin-bottom: auto;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-links a {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-primary);
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.35rem 0;
  transition: var(--transition-fast);
}

.mobile-nav-links a:hover {
  color: var(--gold-primary);
  transform: translateX(4px);
}

.nav-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--gold-dark);
  font-weight: 700;
}

.mobile-drawer-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

/* --------------------------------------------------------------------------
   Hero Section: Ethereal Editorial Masterpiece
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 92vh;
  padding-top: calc(var(--nav-height) + 2.5rem);
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-stardust-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1.1rem;
  background: var(--bg-card-glass);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

body.dark-theme .hero-pill-badge {
  color: var(--gold-light);
}

.hero-headline {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.hero-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--rose-accent);
}

.hero-typewriter-box {
  min-height: 68px;
  margin-bottom: 2rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--gold-primary);
}

.hero-typewriter-text {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.4;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats-row {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-subtle);
  width: 100%;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero Visual Column with 3D Layering */
.hero-visual-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-portrait-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--bg-card);
}

.hero-portrait-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-portrait-frame:hover .hero-portrait-img {
  transform: scale(1.04);
}

.hero-floating-card {
  position: absolute;
  bottom: -15px;
  left: -15px;
  background: var(--bg-card-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-md);
  max-width: 260px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.floating-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-glow);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

body.dark-theme .floating-card-icon {
  color: var(--gold-light);
}

.floating-card-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.floating-card-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Featured Release Spotlight (The Love of My Life — 3-Act Journey)
   -------------------------------------------------------------------------- */
.featured-spotlight-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--bg-card-subtle);
  position: relative;
}

.spotlight-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.spotlight-book-cover-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.spotlight-cover-img {
  width: 100%;
  max-width: 340px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-book);
  transition: transform 0.6s ease;
}

.spotlight-book-cover-wrap:hover .spotlight-cover-img {
  transform: perspective(1000px) rotateY(-8deg) translateY(-8px);
}

.acts-tabs-nav {
  display: flex;
  gap: 0.6rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.act-tab-btn {
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--bg-card-subtle);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}

.act-tab-btn.active {
  background: var(--text-primary);
  color: var(--bg-main);
  border-color: var(--text-primary);
}

.act-interactive-card {
  background: var(--bg-card-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border-left: 4px solid var(--gold-primary);
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.act-burning-theme {
  border-left-color: #E25B45;
  background: rgba(226, 91, 69, 0.06);
}

.act-ashes-theme {
  border-left-color: #7D8491;
  background: rgba(125, 132, 145, 0.06);
}

.act-reclamation-theme {
  border-left-color: #4A9369;
  background: rgba(74, 147, 105, 0.06);
}

.act-display-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.act-display-excerpt {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.act-display-theme {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Complete Books Catalog & Showcase
   -------------------------------------------------------------------------- */
.books-catalog-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

.catalog-filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.book-filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-fast);
}

.book-filter-btn:hover {
  color: var(--text-primary);
  border-color: var(--border-strong);
}

.book-filter-btn.active {
  background: var(--text-primary);
  color: var(--bg-main);
  border-color: var(--text-primary);
}

.books-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.book-showcase-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.book-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.book-card-visual {
  position: relative;
  padding: 2.2rem 1.5rem 1.25rem 1.5rem;
  background: var(--bg-card-subtle);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
}

.book-cover-3d-wrap {
  position: relative;
  width: 160px;
  height: 230px;
  perspective: 800px;
}

.book-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-book);
  transition: transform 0.5s ease;
}

.book-card-visual:hover .book-cover-img {
  transform: rotateY(-10deg) scale(1.03);
}

.book-badge-pill {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
}

.book-card-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.book-meta-top {
  margin-bottom: 0.65rem;
}

.book-title {
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
}

.book-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}

.book-description-snippet {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  flex-grow: 1;
  line-height: 1.6;
}

.book-actions-group {
  display: flex;
  gap: 0.6rem;
}

.book-actions-group .btn {
  flex: 1;
}

/* --------------------------------------------------------------------------
   Spoken Word & Music Lounge
   -------------------------------------------------------------------------- */
.music-lounge-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-dark-accent);
  color: #FAF7F2;
  position: relative;
}

.music-lounge-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.music-player-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  backdrop-filter: blur(16px);
}

.player-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
}

.live-wave-box {
  width: 100%;
  height: 54px;
  margin-bottom: 1.5rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-sm);
  padding: 0.4rem;
}

.music-visualizer-canvas {
  width: 100%;
  height: 100%;
}

.player-track-info {
  margin-bottom: 1.25rem;
}

.player-track-title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: #FFFFFF;
}

.player-track-type {
  font-size: 0.8rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Audio Scrubber */
.audio-progress-container {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  position: relative;
  cursor: pointer;
  margin-bottom: 0.5rem;
}

.audio-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-primary), var(--rose-accent));
  border-radius: 3px;
  position: relative;
}

.audio-time-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.25rem;
}

/* Controls */
.player-controls-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.btn-audio-control {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.btn-audio-control:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* Big Round Lounge Play Toggle */
.lounge-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: #111114;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px var(--gold-glow);
}

.lounge-play-btn:hover {
  transform: scale(1.06);
  background: var(--gold-light);
}

.lounge-lyrics-card {
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold-primary);
}

.lounge-lyrics-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.playlist-tracks-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.playlist-track-item {
  padding: 1.1rem 1.35rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition-fast);
}

.playlist-track-item:hover, .playlist-track-item.active {
  background: rgba(200, 157, 92, 0.12);
  border-color: var(--gold-primary);
}

/* --------------------------------------------------------------------------
   The Poetry Studio / Mood & Verse Generator
   -------------------------------------------------------------------------- */
.poetry-studio-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

.mood-selector-bar {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.mood-filter-btn {
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}

.mood-filter-btn.active {
  background: var(--rose-accent);
  color: #FFFFFF;
  border-color: var(--rose-accent);
  box-shadow: 0 4px 16px rgba(196, 110, 101, 0.35);
}

.studio-poem-card {
  max-width: 740px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
}

.studio-poem-card::before {
  content: "“";
  font-family: var(--font-serif);
  font-size: 7rem;
  position: absolute;
  top: 1rem;
  left: 2rem;
  opacity: 0.08;
  color: var(--gold-primary);
  pointer-events: none;
}

.studio-poem-category {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

body.dark-theme .studio-poem-category {
  color: var(--gold-light);
}

.studio-poem-title {
  font-size: clamp(1.75rem, 3.5vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.studio-poem-stanzas {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.3rem);
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.poem-verse-line {
  margin-bottom: 0.2rem;
}

.stanza-gap {
  height: 0.85rem;
}

.studio-poem-source {
  font-family: var(--font-hand);
  font-size: 1.5rem;
  color: var(--gold-dark);
  margin-bottom: 2rem;
}

body.dark-theme .studio-poem-source {
  color: var(--gold-light);
}

.studio-actions-row {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Collector's Vault / Limited Edition Store
   -------------------------------------------------------------------------- */
.collector-store-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-card-subtle);
  position: relative;
}

.collector-product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: clamp(1.75rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.collector-image-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-book);
  cursor: pointer;
}

.collector-product-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collector-image-frame:hover .collector-product-img {
  transform: scale(1.03);
}

.zoom-hint-badge {
  position: absolute;
  bottom: 0.85rem;
  right: 0.85rem;
  background: rgba(0, 0, 0, 0.72);
  color: #FFFFFF;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.collector-price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin: 1rem 0 1.5rem 0;
  flex-wrap: wrap;
}

.collector-price {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.collector-stock-status {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rose-accent);
}

.collector-spec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.5rem 0 2rem 0;
}

.collector-spec-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   Tour & Laylo City Suggestion
   -------------------------------------------------------------------------- */
.tour-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

.tour-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.tour-image-col {
  position: relative;
}

.tour-stage-img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.tour-content-col {
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   About Whitney Hanson & Photo Collage
   -------------------------------------------------------------------------- */
.about-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-card-subtle);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.about-collage-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.about-photo-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--bg-card);
}

.about-photo-card:nth-child(2) {
  margin-top: 1.75rem;
}

.about-body-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* --------------------------------------------------------------------------
   Newsletter ("Words for the Unspoken")
   -------------------------------------------------------------------------- */
.newsletter-section {
  padding: clamp(4rem, 6vw, 6rem) 0;
  background: linear-gradient(135deg, #222026, #141317);
  color: #FAF7F2;
  position: relative;
  text-align: center;
}

.newsletter-box {
  max-width: 660px;
  margin: 0 auto;
}

.newsletter-form {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 240px;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-size: 0.92rem;
  outline: none;
}

.newsletter-input:focus {
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.12);
}

/* --------------------------------------------------------------------------
   Site Footer & Social Matrix
   -------------------------------------------------------------------------- */
.site-footer {
  padding: 4.5rem 0 2.5rem 0;
  background: var(--bg-dark-accent);
  color: #9C98A4;
  font-size: 0.85rem;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
}

.footer-social-links {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FAF7F2;
  transition: var(--transition-fast);
}

.footer-social-btn:hover {
  background: var(--gold-primary);
  color: #111;
  transform: translateY(-2px);
}

.footer-nav-col h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: #FAF7F2;
  margin-bottom: 1.15rem;
}

.footer-nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

/* --------------------------------------------------------------------------
   Modals & Overlay Dialogs
   -------------------------------------------------------------------------- */
.app-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.app-modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-overlay);
  backdrop-filter: blur(12px);
}

.modal-container {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: var(--shadow-lg);
  z-index: 10;
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
}

.modal-book-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2.5rem;
}

.modal-act-item {
  padding: 0.85rem 1.15rem;
  background: var(--bg-card-subtle);
  border-radius: var(--radius-sm);
  margin-bottom: 0.65rem;
}

.modal-act-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  display: block;
}

.modal-act-excerpt {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-secondary);
}

/* Toast Notifications */
.global-app-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-dark-accent);
  color: #FFFFFF;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gold-primary);
  z-index: 2000;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  pointer-events: none;
}

.global-app-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints & Mobile Fit
   -------------------------------------------------------------------------- */
@media (max-width: 1040px) {
  .desktop-nav,
  .nav-cta-btn {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-grid,
  .spotlight-card,
  .music-lounge-grid,
  .collector-product-card,
  .tour-card,
  .about-grid,
  .modal-book-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .hero-portrait-img {
    height: 420px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 66px;
  }

  .navbar-container {
    gap: 0.5rem;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-tag {
    font-size: 0.55rem;
    letter-spacing: 0.28em;
  }

  .nav-audio-pill .nav-audio-label {
    display: none;
  }

  .nav-audio-pill {
    padding: 0.4rem 0.6rem;
  }

  .hero-section {
    padding-top: calc(var(--nav-height) + 1.5rem);
    min-height: auto;
  }

  .hero-cta-row {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-row .btn {
    width: 100%;
  }

  .hero-stats-row {
    justify-content: space-between;
  }

  .hero-floating-card {
    left: 0;
    right: 0;
    bottom: -10px;
    margin: 0 auto;
  }

  .acts-tabs-nav {
    flex-direction: column;
  }

  .act-tab-btn {
    width: 100%;
    text-align: center;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-collage-wrap {
    grid-template-columns: 1fr;
  }

  .about-photo-card:nth-child(2) {
    margin-top: 0;
  }

  .collector-product-img {
    height: 340px;
  }

  .global-app-toast {
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    text-align: center;
  }
}
