:root {
  --forest-deep: #1c3829;
  --forest-mid: #2d5a3f;
  --moss: #6b8e23;
  --fox: #d97736;
  --fox-hover: #c26122;
  --sand: #fefcf6;
  --paper: #faf8f2;
  --ink: #1e293b;
  --muted: #64748b;
  --line: #e2e8f0;
  --white: #ffffff;
  --shadow: 0 10px 30px -5px rgba(28, 56, 41, 0.08);
  --shadow-lg: 0 20px 40px -10px rgba(28, 56, 41, 0.15);
  --radius: 14px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background-color: var(--sand);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Lora', Georgia, serif;
  color: var(--forest-deep);
  line-height: 1.25;
}

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

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Announcement Bar */
.announcement-bar {
  background: var(--forest-deep);
  color: #e2f1e8;
  font-size: 0.85rem;
  padding: 0.55rem 0;
  text-align: center;
}

.bar-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.bar-link {
  color: #fbd38d;
  font-weight: 700;
  text-decoration: underline;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(254, 252, 246, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  z-index: 100;
  padding: 0.85rem 0;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--forest-deep);
}

.brand-icon {
  font-size: 1.5rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--forest-mid);
}

.site-nav a:hover {
  color: var(--fox);
}

.nav-cta {
  background: var(--fox);
  color: white !important;
  padding: 0.45rem 1rem;
  border-radius: 99px;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--fox-hover);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--forest-deep);
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary {
  background: var(--fox);
  color: white;
  box-shadow: 0 4px 14px rgba(217, 119, 54, 0.3);
}

.btn-primary:hover {
  background: var(--fox-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  background: #eaf1eb;
  color: var(--forest-deep);
}

.btn-secondary:hover {
  background: #d8e6db;
}

.btn-outline {
  background: transparent;
  color: var(--forest-mid);
  border: 1px solid var(--forest-mid);
}

.btn-outline:hover {
  background: var(--forest-mid);
  color: white;
}

.btn-audio {
  background: #f1f5f9;
  color: var(--forest-deep);
  border: 1px solid var(--line);
}

.btn-audio:hover {
  background: #e2e8f0;
}

.btn-large {
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
}

/* Hero Section */
.hero {
  padding: 4.5rem 0 3.5rem;
  background: radial-gradient(circle at top right, rgba(107, 142, 35, 0.1), transparent 50%),
              radial-gradient(circle at bottom left, rgba(217, 119, 54, 0.08), transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(45, 90, 63, 0.1);
  color: var(--forest-mid);
  padding: 0.35rem 0.85rem;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1.12rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-usps {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--forest-deep);
}

/* Hero Mockup */
.book-stack-mockup {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.book-card-mockup {
  background: white;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  transform: rotate(-1.5deg);
  transition: transform 0.3s ease;
}

.book-card-mockup:hover {
  transform: rotate(0deg) scale(1.02);
}

.b01-card {
  transform: rotate(2deg);
  margin-left: 1.5rem;
  border-left: 6px solid var(--forest-mid);
}

.b03-card {
  border-left: 6px solid var(--fox);
}

.mockup-tag {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--forest-mid);
}

.mockup-emoji {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.book-card-mockup h4 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.book-card-mockup p {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-head {
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

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

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fox);
  margin-bottom: 0.5rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.section-desc {
  color: #475569;
  font-size: 1.05rem;
}

/* Books Grid */
.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.book-showcase-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.book-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.book-showcase-card.is-highlight {
  border: 2px solid var(--fox);
}

.book-cover-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f1f5f9;
}

.book-cover-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.bg-band1 { background: linear-gradient(135deg, #1c3829, #2d5a3f); color: white; }
.bg-band1 h3 { color: #fef08a; margin: 0.5rem 0; font-size: 1.5rem; }
.bg-band1 p { color: #d1fae5; font-size: 0.95rem; }

.bg-band2 { background: linear-gradient(135deg, #312e81, #1e1b4b); color: white; }
.bg-band2 h3 { color: #c7d2fe; margin: 0.5rem 0; font-size: 1.5rem; }
.bg-band2 p { color: #e0e7ff; font-size: 0.95rem; }

.bg-band3 { background: linear-gradient(135deg, #9a3412, #78350f); color: white; }
.bg-band3 h3 { color: #fde047; margin: 0.5rem 0; font-size: 1.5rem; }
.bg-band3 p { color: #ffedd5; font-size: 0.95rem; }

.cover-icon {
  font-size: 3rem;
}

.badge-status {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 800;
}

.badge-status.is-available {
  background: rgba(255, 255, 255, 0.9);
  color: var(--forest-deep);
}

.badge-status.is-coming {
  background: var(--fox);
  color: white;
}

.book-info {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.book-meta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.book-info h3 {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}

.book-info p {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex: 1;
}

.book-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest-mid);
  margin-bottom: 1.25rem;
}

.book-cta-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Audio Player Section */
.section-audio {
  background: #f1f5ee;
}

.audio-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.audio-copy h2 {
  font-size: 2.2rem;
  margin-bottom: 0.85rem;
}

.audio-copy p {
  color: #475569;
  margin-bottom: 1.5rem;
}

.audio-selector {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.audio-tab {
  text-align: left;
  padding: 0.75rem 1.2rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--forest-deep);
  cursor: pointer;
  transition: all 0.2s;
}

.audio-tab:hover {
  background: #fafaf8;
  border-color: var(--forest-mid);
}

.audio-tab.is-active {
  background: var(--forest-deep);
  color: white;
  border-color: var(--forest-deep);
}

.audio-player-card {
  background: white;
  padding: 2.2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.player-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.speaker-avatar {
  font-size: 2.5rem;
  background: #faf8f2;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.player-quote {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
  color: #334155;
  background: #fbfbf9;
  padding: 1.2rem;
  border-left: 4px solid var(--moss);
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.5rem;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-speech {
  min-width: 180px;
}

.speech-status {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Characters Grid */
.characters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.char-card {
  background: white;
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.2s;
}

.char-card:hover {
  transform: translateY(-4px);
}

.char-avatar {
  font-size: 3.5rem;
  margin-bottom: 0.75rem;
}

.char-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.2rem;
}

.char-role {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--fox);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.char-card p {
  font-size: 0.88rem;
  color: #475569;
}

/* Lead Magnet Card */
.lead-magnet-card {
  background: var(--forest-deep);
  color: white;
  border-radius: 20px;
  padding: 3.5rem clamp(1.5rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3.5rem;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.lead-magnet-card .eyebrow {
  color: #fbd38d;
}

.lead-magnet-card h2 {
  color: white;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.lead-magnet-card p {
  color: #d1fae5;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.magnet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: #ecfdf5;
}

.lead-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.lead-form input {
  padding: 0.85rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.95);
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
}

.form-hint {
  font-size: 0.78rem;
  color: #a7f3d0 !important;
  margin-top: 0.6rem;
}

.coloring-sheet-preview {
  position: relative;
  display: flex;
  justify-content: center;
}

.sheet-paper {
  background: white;
  color: var(--ink);
  width: 240px;
  height: 320px;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 4px dashed #94a3b8;
  transform: rotate(3deg);
}

.sheet-art p {
  color: var(--forest-deep);
  margin-top: 0.5rem;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: white;
  padding: 2.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.benefit-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.benefit-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  color: #475569;
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  background: #112218;
  color: #d1fae5;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.88rem;
  margin-top: 0.5rem;
  max-width: 320px;
}

.footer-brand .brand {
  color: white;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.footer-col h5 {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

.footer-col a {
  display: block;
  color: #94a3b8;
  font-size: 0.88rem;
  margin-bottom: 0.45rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fbd38d;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: #64748b;
  font-size: 0.82rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .audio-box { grid-template-columns: 1fr; }
  .lead-magnet-card { grid-template-columns: 1fr; }
  .lead-form .form-row { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.is-open {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
}
