/* ===== VARIABLES ===== */
:root {
  --ink: #0F0E0D;
  --ink-soft: #1C1B19;
  --cream: #F7F4EF;
  --linen: #EDE9E1;
  --gold: #B8965A;
  --gold-light: #D4AF7A;
  --muted: #6B6560;
  --warm-muted: #8A847C;
  --border: #D8D2C8;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif: 'Libre Baskerville', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--cream); color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== LAYOUT ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.container.narrow { max-width: 900px; }
.bg-linen { background: var(--linen); }

/* ===== TYPOGRAPHY ===== */
.serif { font-family: var(--font-display); font-weight: 700; color: var(--ink); line-height: 1.1; }
.serif-italic { font-family: var(--font-display); font-style: italic; font-weight: 400; color: var(--ink); line-height: 1.15; }
.eyebrow { display: block; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; font-family: var(--font-sans); }
.link-underline { display: inline-block; color: var(--gold); border-bottom: 1px solid var(--gold); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; padding-bottom: 2px; transition: opacity 0.2s; }
.link-underline:hover { opacity: 0.7; }

/* ===== BUTTONS ===== */
.btn-primary { display: inline-block; background: var(--ink); color: var(--cream); padding: 0.85rem 2rem; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; transition: background 0.2s, transform 0.2s; font-family: var(--font-sans); border: none; cursor: pointer; }
.btn-primary:hover { background: var(--gold); transform: translateY(-1px); }
.btn-ghost { display: inline-block; background: transparent; color: var(--cream); padding: 0.85rem 2rem; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; border: 1px solid rgba(247,244,239,0.35); transition: all 0.2s; font-family: var(--font-sans); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline { display: inline-block; background: transparent; color: var(--ink); padding: 0.85rem 2rem; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; border: 1px solid var(--ink); transition: all 0.2s; font-family: var(--font-sans); }
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-outline-small { display: inline-block; background: transparent; color: var(--ink); padding: 0.6rem 1.25rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid var(--border); transition: all 0.2s; font-family: var(--font-sans); }
.btn-outline-small:hover { border-color: var(--ink); }

/* ===== NAV ===== */
.nav { position: fixed; top: 0; width: 100%; z-index: 100; background: rgba(15,14,13,0.96); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(184,150,90,0.2); }
.nav-inner { max-width: 1160px; margin: 0 auto; padding: 0 2rem; height: 4.5rem; display: flex; align-items: center; justify-content: space-between; }
.nav-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--cream); letter-spacing: 0.02em; transition: color 0.2s; }
.nav-name:hover { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(247,244,239,0.6); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-cta { background: var(--gold) !important; color: var(--ink) !important; padding: 0.45rem 1.25rem; font-weight: 700 !important; opacity: 1 !important; }
.nav-cta:hover { background: var(--gold-light) !important; }
.hamburger { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--cream); }
.mobile-menu { display: none; flex-direction: column; background: var(--ink-soft); border-top: 1px solid rgba(184,150,90,0.2); }
.mobile-menu a { padding: 1rem 2rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(247,244,239,0.7); border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero { background: var(--ink); min-height: 100vh; display: flex; align-items: center; padding-top: 4.5rem; position: relative; overflow: hidden; }
.hero-inner { max-width: 1160px; margin: 0 auto; padding: 5rem 2rem; width: 100%; display: flex; flex-direction: column; gap: 4rem; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.hero-eyebrow { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; display: block; }
.hero h1 { font-family: var(--font-display); font-size: clamp(3rem, 5.5vw, 5.5rem); font-weight: 900; color: var(--cream); line-height: 1.0; margin-bottom: 1.75rem; }
.hero h1 em { font-style: italic; font-weight: 400; color: var(--gold); }
.hero-sub { font-size: 1rem; color: rgba(247,244,239,0.65); font-weight: 300; max-width: 34rem; line-height: 1.75; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-photo { position: relative; }
.hero-photo-frame { overflow: hidden; position: relative; }
.hero-photo-frame::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(184,150,90,0.3); pointer-events: none; }
.hero-photo-frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center top; }
.hero-photo-caption { font-size: 0.62rem; color: rgba(184,150,90,0.6); letter-spacing: 0.2em; text-transform: uppercase; margin-top: 0.75rem; text-align: right; }
.hero-credential-strip { display: flex; align-items: center; border-top: 1px solid rgba(184,150,90,0.2); padding-top: 3rem; flex-wrap: wrap; gap: 0; }
.credential { display: flex; flex-direction: column; padding: 0 3rem 0 0; gap: 0.2rem; }
.cred-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--cream); line-height: 1; }
.cred-label { font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(247,244,239,0.4); font-weight: 600; }
.cred-divider { width: 1px; height: 3rem; background: rgba(184,150,90,0.25); margin-right: 3rem; flex-shrink: 0; }
.hero-bg-text { position: absolute; right: -2rem; bottom: 8rem; font-family: var(--font-display); font-size: clamp(10rem, 18vw, 18rem); font-weight: 900; color: rgba(184,150,90,0.03); line-height: 1; pointer-events: none; user-select: none; }

/* ===== VOICEOVER ===== */
.vo-section { padding: 7rem 2rem; background: var(--cream); }
.vo-header { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; margin-bottom: 3.5rem; }
.vo-header h2 { font-size: clamp(2rem, 4vw, 3rem); }
.vo-header-sub { color: var(--muted); font-weight: 300; line-height: 1.7; }

/* PLAYER CARD */
.player-card { background: var(--ink); padding: 2.5rem; margin-bottom: 2.5rem; position: relative; overflow: hidden; }
.player-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, var(--gold), transparent); }
.player-card-top { display: flex; align-items: center; gap: 2rem; margin-bottom: 1.5rem; }
.player-waveform { display: flex; align-items: center; gap: 3px; height: 2.5rem; flex-shrink: 0; }
.player-waveform span { display: block; width: 3px; background: var(--gold); border-radius: 2px; animation: wave 1.4s ease-in-out infinite; }
.player-waveform span:nth-child(1)  { height: 30%; animation-delay: 0.0s; }
.player-waveform span:nth-child(2)  { height: 60%; animation-delay: 0.1s; }
.player-waveform span:nth-child(3)  { height: 90%; animation-delay: 0.2s; }
.player-waveform span:nth-child(4)  { height: 50%; animation-delay: 0.3s; }
.player-waveform span:nth-child(5)  { height: 80%; animation-delay: 0.4s; }
.player-waveform span:nth-child(6)  { height: 40%; animation-delay: 0.5s; }
.player-waveform span:nth-child(7)  { height: 100%; animation-delay: 0.6s; }
.player-waveform span:nth-child(8)  { height: 60%; animation-delay: 0.7s; }
.player-waveform span:nth-child(9)  { height: 75%; animation-delay: 0.8s; }
.player-waveform span:nth-child(10) { height: 45%; animation-delay: 0.9s; }
.player-waveform span:nth-child(11) { height: 85%; animation-delay: 1.0s; }
.player-waveform span:nth-child(12) { height: 55%; animation-delay: 0.9s; }
.player-waveform span:nth-child(13) { height: 95%; animation-delay: 0.8s; }
.player-waveform span:nth-child(14) { height: 65%; animation-delay: 0.7s; }
.player-waveform span:nth-child(15) { height: 40%; animation-delay: 0.6s; }
.player-waveform span:nth-child(16) { height: 78%; animation-delay: 0.5s; }
.player-waveform span:nth-child(17) { height: 52%; animation-delay: 0.4s; }
.player-waveform span:nth-child(18) { height: 88%; animation-delay: 0.3s; }
.player-waveform span:nth-child(19) { height: 35%; animation-delay: 0.2s; }
.player-waveform span:nth-child(20) { height: 62%; animation-delay: 0.1s; }
@keyframes wave {
  0%, 100% { transform: scaleY(0.5); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}
.player-info { flex: 1; }
.player-title { font-family: var(--font-display); font-size: 1.2rem; color: var(--cream); font-weight: 700; margin-bottom: 0.25rem; }
.player-subtitle { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(247,244,239,0.4); }

/* ELEVENLABS WIDGET */
.eleven-card { background: var(--linen); border: 1px solid var(--border); padding: 2.5rem; margin-bottom: 3.5rem; }
.eleven-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; }
.eleven-header h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.eleven-header p { color: var(--muted); font-weight: 300; font-size: 0.92rem; line-height: 1.6; max-width: 36rem; }
.eleven-badge { background: var(--ink); color: var(--gold); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.4rem 0.85rem; white-space: nowrap; flex-shrink: 0; }
.eleven-form { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1rem; flex-wrap: wrap; }
.eleven-input-wrap { flex: 1; position: relative; min-width: 260px; }
.eleven-input-wrap textarea { width: 100%; font-family: var(--font-sans); font-size: 0.9rem; font-weight: 300; color: var(--ink); background: var(--white); border: 1px solid var(--border); padding: 0.85rem 1rem 2rem; outline: none; transition: border-color 0.2s; resize: none; line-height: 1.5; }
.eleven-input-wrap textarea:focus { border-color: var(--gold); }
.char-count { position: absolute; bottom: 0.5rem; right: 0.75rem; font-size: 0.65rem; color: var(--warm-muted); font-weight: 500; }
.eleven-btn { flex-shrink: 0; align-self: flex-start; }
.eleven-result { margin-top: 1rem; }
.eleven-note { font-size: 0.75rem; color: var(--warm-muted); margin-top: 1rem; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.api-key-input { font-family: var(--font-sans); font-size: 0.75rem; border: 1px solid var(--border); padding: 0.3rem 0.6rem; background: var(--white); color: var(--ink); outline: none; width: 220px; }
.api-key-input:focus { border-color: var(--gold); }
.eleven-hint { color: rgba(138,132,124,0.7); font-size: 0.68rem; font-style: italic; }

/* VOICE GRID */
.voice-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5px; margin-bottom: 3.5rem; background: var(--border); }
.voice-card { background: var(--cream); padding: 2.5rem 2rem; transition: background 0.2s; }
.voice-card:hover { background: var(--linen); }
.voice-icon { font-size: 1.5rem; color: var(--gold); margin-bottom: 1rem; }
.voice-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.voice-card p { font-size: 0.88rem; color: var(--muted); font-weight: 300; line-height: 1.6; }

/* VO CREDENTIALS */
.vo-credentials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; padding-top: 3rem; border-top: 1px solid var(--border); }
.vo-cred-col h4 { margin-bottom: 1rem; }
.cred-list { display: flex; flex-direction: column; gap: 0.5rem; }
.cred-list li { font-size: 0.88rem; color: var(--muted); font-weight: 300; padding-left: 0.75rem; border-left: 2px solid var(--gold); line-height: 1.4; }

/* ===== DIFFERENTIATORS ===== */
.diff-section { padding: 7rem 2rem; background: var(--ink); }
.diff-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.diff-text .eyebrow { color: var(--gold); }
.diff-text h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--cream); margin-bottom: 1.5rem; }
.diff-text p { color: rgba(247,244,239,0.6); font-weight: 300; line-height: 1.8; font-size: 1rem; margin-bottom: 2rem; }
.diff-text .link-underline { color: var(--gold); border-color: var(--gold); }
.diff-list { display: flex; flex-direction: column; gap: 2.5rem; }
.diff-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.diff-marker { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: rgba(184,150,90,0.3); flex-shrink: 0; line-height: 1.2; width: 2.5rem; }
.diff-item h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--cream); margin-bottom: 0.4rem; }
.diff-item p { font-size: 0.88rem; color: rgba(247,244,239,0.5); font-weight: 300; line-height: 1.6; }

/* ===== BEYOND THE BOOTH ===== */
.beyond-section { padding: 7rem 2rem; background: var(--ink-soft); }
.beyond-header { margin-bottom: 4rem; }
.beyond-header .eyebrow { color: var(--gold); }
.beyond-header h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--cream); margin-bottom: 1rem; }
.beyond-sub { color: rgba(247,244,239,0.55); font-weight: 300; line-height: 1.75; max-width: 48rem; font-size: 1rem; }
.songs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.song-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(184,150,90,0.15); padding: 2rem; transition: border-color 0.2s; }
.song-card:hover { border-color: rgba(184,150,90,0.4); }
.song-header { display: flex; gap: 1.25rem; align-items: flex-start; margin-bottom: 1.5rem; }
.song-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: rgba(184,150,90,0.3); line-height: 1; flex-shrink: 0; }
.song-card h3 { font-size: 1.2rem; color: var(--cream); margin-bottom: 0.4rem; }
.song-desc { font-size: 0.82rem; color: rgba(247,244,239,0.45); font-weight: 300; line-height: 1.5; }

/* ===== BOOKS TEASER ===== */
.books-teaser { padding: 7rem 2rem; background: var(--linen); }
.books-teaser-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 6rem; align-items: center; }
.books-teaser-text h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.books-teaser-text p { color: var(--muted); font-weight: 300; line-height: 1.8; margin-bottom: 2rem; }
.books-teaser-covers { display: flex; gap: 1rem; align-items: flex-end; height: 280px; }
.book-spine { background: var(--ink); color: var(--cream); width: 60px; height: 100%; display: flex; align-items: center; justify-content: center; writing-mode: vertical-rl; transform: rotate(180deg); font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; padding: 1rem 0.5rem; transition: width 0.3s; }
.book-spine:hover { width: 75px; }
.book-spine.accent { background: var(--gold); color: var(--ink); height: 85%; }
.book-spine.slim { width: 45px; height: 70%; background: var(--ink-soft); }
.book-spine.slim.accent2 { background: rgba(184,150,90,0.7); color: var(--ink); height: 60%; }

/* ===== ABOUT ===== */
.about-section { padding: 7rem 2rem; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 6rem; align-items: start; }
.about-text h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); margin-bottom: 1.5rem; }
.about-text p { color: var(--muted); font-weight: 300; line-height: 1.8; margin-bottom: 1.25rem; font-size: 0.98rem; }
.about-links { display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.about-photo-col { display: flex; flex-direction: column; gap: 2rem; position: sticky; top: 6rem; }
.about-portrait { overflow: hidden; position: relative; }
.about-portrait::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(184,150,90,0.25); pointer-events: none; }
.about-portrait img { width: 100%; aspect-ratio: 2/3; object-fit: cover; object-position: center top; filter: grayscale(15%); transition: filter 0.5s; }
.about-portrait:hover img { filter: grayscale(0%); }
.about-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.about-tags span { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.35rem 0.85rem; border: 1px solid var(--border); color: var(--warm-muted); }

/* ===== CONTACT with form ===== */
.contact-section { padding: 7rem 2rem; background: var(--ink-soft); }
.contact-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.contact-text .eyebrow { color: var(--gold); }
.contact-text h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--cream); margin-bottom: 1.25rem; }
.contact-text p { color: rgba(247,244,239,0.55); font-weight: 300; line-height: 1.8; font-size: 0.98rem; margin-bottom: 2rem; }
.contact-social-row { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.contact-social { display: flex; align-items: center; gap: 0.6rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(247,244,239,0.45); transition: color 0.2s; }
.contact-social:hover { color: var(--gold); }
.contact-form-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(184,150,90,0.2); padding: 2.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(247,244,239,0.5); }
.form-group input, .form-group textarea, .form-group select { font-family: var(--font-sans); font-size: 0.9rem; font-weight: 300; color: var(--cream); background: rgba(255,255,255,0.06); border: 1px solid rgba(184,150,90,0.2); padding: 0.75rem 1rem; outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group select option { background: var(--ink-soft); color: var(--cream); }
.form-group textarea { resize: vertical; }
.contact-submit { align-self: flex-start; margin-top: 0.5rem; }
.contact-status { font-size: 0.85rem; padding: 0.75rem 1rem; }
.contact-status.success { background: rgba(138,154,91,0.15); color: #a8c077; border: 1px solid rgba(138,154,91,0.3); }
.contact-status.error { background: rgba(180,50,50,0.15); color: #e07070; border: 1px solid rgba(180,50,50,0.3); }

/* ===== FOOTER ===== */
.footer { background: var(--ink); padding: 2.5rem 2rem; border-top: 1px solid rgba(184,150,90,0.15); }
.footer-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--cream); }
.footer-copy { font-size: 0.65rem; color: rgba(247,244,239,0.3); letter-spacing: 0.1em; }

/* ===== PAGE HERO ===== */
.page-hero { padding: 9rem 2rem 5rem; background: var(--ink); }
.page-hero h1 { font-size: clamp(3rem, 6vw, 5rem); color: var(--cream); margin-top: 0.5rem; }
.page-hero-sub { color: rgba(247,244,239,0.5); font-size: 1rem; font-weight: 300; margin-top: 1rem; max-width: 40rem; line-height: 1.6; }

/* ===== BOOKS PAGE ===== */
.books-section { padding: 6rem 2rem; background: var(--cream); }
.books-section.bg-linen { background: var(--linen); }
.books-cat-label { font-size: 0.7rem; letter-spacing: 0.4em; margin-bottom: 3rem; }
.book-feature { display: grid; grid-template-columns: auto 1fr; gap: 4rem; align-items: start; margin-bottom: 5rem; padding-bottom: 5rem; border-bottom: 1px solid var(--border); }
.book-feature.reverse { grid-template-columns: 1fr auto; }
.book-feature.reverse .book-feature-spine { order: 2; }
.book-feature.reverse .book-feature-text { order: 1; }
.book-feature-spine { background: var(--ink); color: var(--cream); width: 70px; height: 320px; display: flex; align-items: center; justify-content: center; writing-mode: vertical-rl; transform: rotate(180deg); font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; padding: 1.5rem 0.75rem; flex-shrink: 0; }
.book-feature-spine.accent { background: var(--gold); color: var(--ink); }
.book-feature-text h3 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 0.5rem; }
.book-genre { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--gold); font-weight: 600; margin-bottom: 1.5rem; }
.book-feature-text p { color: var(--muted); font-weight: 300; line-height: 1.8; margin-bottom: 1rem; font-size: 0.98rem; }
.book-feature-text .btn-primary { margin-top: 1rem; }
.book-formats { font-size: 0.7rem; color: var(--warm-muted); letter-spacing: 0.15em; text-transform: uppercase; margin-top: 0.75rem; }
.childrens-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.childrens-card { background: var(--cream); padding: 2.5rem; border: 1px solid var(--border); }
.childrens-spine { background: var(--gold); color: var(--ink); font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; padding: 0.5rem 1rem; display: inline-block; margin-bottom: 1.5rem; }
.childrens-spine.accent { background: var(--ink); color: var(--cream); }
.childrens-card h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.childrens-card p { color: var(--muted); font-weight: 300; line-height: 1.7; font-size: 0.92rem; margin-bottom: 1.5rem; }
.childrens-links { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.journals-intro { color: var(--muted); font-weight: 300; line-height: 1.7; max-width: 40rem; margin-bottom: 2.5rem; }
.journals-row { display: flex; gap: 2rem; flex-wrap: wrap; }
.journal-card { background: var(--linen); border: 1px solid var(--border); padding: 2.5rem; text-align: center; min-width: 200px; }
.journal-cover { font-size: 3rem; margin-bottom: 1rem; }
.journal-card h3 { font-size: 1.2rem; margin-bottom: 1.5rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero h1 { font-size: clamp(3rem, 10vw, 4.5rem); }
  .hero-photo { max-width: 480px; }
  .hero-bg-text { display: none; }
  .vo-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .voice-grid { grid-template-columns: 1fr 1fr; }
  .vo-credentials { grid-template-columns: 1fr; gap: 2rem; }
  .diff-grid { grid-template-columns: 1fr; gap: 3rem; }
  .songs-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .books-teaser-inner { grid-template-columns: 1fr; gap: 3rem; }
  .books-teaser-covers { height: 200px; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo-col { position: static; max-width: 360px; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .book-feature { grid-template-columns: 1fr; }
  .book-feature-spine { width: 100%; height: 60px; writing-mode: horizontal-tb; transform: none; }
  .book-feature.reverse { grid-template-columns: 1fr; }
  .book-feature.reverse .book-feature-spine { order: 0; }
  .book-feature.reverse .book-feature-text { order: 1; }
  .childrens-grid { grid-template-columns: 1fr; }
  .hero-credential-strip { gap: 2rem; }
  .cred-divider { display: none; }
  .credential { padding: 0; }
  .eleven-header { flex-direction: column; }
}

@media (max-width: 600px) {
  .voice-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .player-card-top { flex-direction: column; gap: 1rem; }
  .books-teaser-covers { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .eleven-form { flex-direction: column; }
}

/* ===== BOOK COVERS GRID (homepage teaser) ===== */
.books-covers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cover-thumb { display: block; overflow: hidden; border: 1px solid var(--border); transition: transform 0.3s, box-shadow 0.3s; }
.cover-thumb:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.15); }
.cover-thumb img { width: 100%; aspect-ratio: 2/3; object-fit: cover; display: block; }

/* ===== BOOK COVERS (books page) ===== */
.book-cover-wrap { flex-shrink: 0; width: 200px; }
.book-cover-img { width: 100%; box-shadow: 0 8px 30px rgba(0,0,0,0.2); display: block; }
.book-feature { display: grid; grid-template-columns: auto 1fr; gap: 4rem; align-items: start; margin-bottom: 5rem; padding-bottom: 5rem; border-bottom: 1px solid var(--border); }
.book-feature.reverse { grid-template-columns: 1fr auto; }
.book-feature.reverse .book-cover-wrap { order: 2; }
.book-feature.reverse .book-feature-text { order: 1; }
.childrens-cover { width: 100%; max-height: 220px; object-fit: contain; object-position: left; margin-bottom: 1.5rem; }
