:root {
  --pink: #cf7b79;
  --pink-dark: #a55856;
  --pink-soft: #f9e2e5;
  --cream: #fff8f2;
  --paper: #fffdf9;
  --ink: #241434;
  --muted: #5d5269;
  --line: #f0cdd2;
  --shadow: 0 20px 60px rgba(118, 60, 74, 0.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff7f7 0%, #fffaf4 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255,255,255,0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 46px; height: 46px; display: grid; place-items: center;
  border-radius: 999px; background: var(--pink-soft); box-shadow: 0 6px 18px rgba(207,123,121,.22);
}
.brand strong { display: block; font-size: 18px; }
.brand small { display: block; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.nav-links { display: flex; align-items: center; gap: 24px; font-weight: 700; font-size: 14px; }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--pink-dark); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 13px 22px; border-radius: 999px;
  text-decoration: none; font-weight: 800; border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: var(--pink); color: white; }
.btn-primary:hover { background: var(--pink-dark); }
.btn-dark { background: var(--ink); color: white; }
.btn-light { background: white; border-color: var(--line); color: var(--ink); }
.section-pad { padding: clamp(58px, 8vw, 105px) clamp(20px, 5vw, 70px); }
.hero {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--pink-dark);
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 13px;
}
.eyebrow.light { color: #ffd8de; }
h1, h2, h3, h4, p { margin-top: 0; }
h1 { font-size: clamp(44px, 7vw, 88px); line-height: .98; letter-spacing: -0.05em; margin-bottom: 26px; }
h2 { font-size: clamp(34px, 4.6vw, 58px); line-height: 1.04; letter-spacing: -0.035em; margin-bottom: 18px; }
h3 { font-size: 24px; margin-bottom: 8px; }
h4 { color: var(--pink-dark); font-size: 16px; margin-bottom: 16px; }
p { color: var(--muted); line-height: 1.75; font-size: 17px; }
.lead { font-size: clamp(18px, 2vw, 22px); max-width: 780px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 18px; }
.created { font-size: 14px; }
.hero-art {
  position: relative;
  border-radius: 34px;
  padding: 16px;
  background: white;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}
.hero-art img { border-radius: 24px; width: 100%; max-height: 650px; object-fit: cover; object-position: center top; }
.white-panel { background: rgba(255,255,255,.78); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.centered { text-align: center; margin: 0 auto; }
.narrow { max-width: 850px; }
.feature-grid, .books-grid, .character-grid {
  display: grid;
  gap: 22px;
  max-width: 1280px;
  margin: 44px auto 0;
}
.feature-grid { grid-template-columns: repeat(3, 1fr); }
.feature-card, .book-card, .character-card, .author-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(118,60,74,.07);
}
.icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px; background: var(--pink-soft); font-size: 26px; margin-bottom: 18px; }
.section-heading { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 30px; }
.section-heading p:last-child { max-width: 650px; justify-self: end; }
.books-grid { grid-template-columns: repeat(2, 1fr); align-items: stretch; }
.book-card { min-height: 260px; }
.featured-book { display: grid; grid-template-columns: 200px 1fr; gap: 24px; grid-column: span 2; align-items: center; }
.book-image { background: linear-gradient(135deg, var(--pink-soft), #fff0cf); border-radius: 24px; overflow: hidden; align-self: stretch; display: grid; place-items: center; }
.book-image img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.pill { display: inline-flex; padding: 7px 12px; border-radius: 999px; background: var(--pink-soft); color: var(--pink-dark); font-weight: 900; letter-spacing: .1em; text-transform: uppercase; font-size: 11px; margin-bottom: 12px; }
.text-link { color: var(--pink-dark); font-weight: 900; text-decoration: none; }
.lineup-card { max-width: 1280px; margin: 38px auto 0; background: white; border: 1px solid var(--line); border-radius: 28px; padding: 12px; box-shadow: var(--shadow); overflow: hidden; }
.lineup-card img { width: 100%; border-radius: 20px; }
.character-grid { grid-template-columns: repeat(6, 1fr); }
.character-card { text-align: center; padding: 18px; }
.character-card img { width: 100%; height: 210px; object-fit: contain; object-position: top center; margin-bottom: 14px; }
.character-card h3 { color: var(--pink-dark); font-size: 22px; }
.character-card p { font-size: 15px; line-height: 1.55; }
.dark-card {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 36px;
  padding: clamp(30px, 5vw, 60px);
  border-radius: 36px;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
}
.dark-card h2, .dark-card p { color: white; }
.dark-card p { opacity: .86; }
.dark-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.dark-card li { background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; padding: 16px 18px; font-weight: 800; }
.dark-card li::before { content: "⭐"; margin-right: 10px; }
.author-card { max-width: 1050px; margin: 0 auto; display: grid; grid-template-columns: 160px 1fr; gap: 30px; align-items: center; }
.author-badge { width: 140px; height: 140px; border-radius: 999px; background: white; display: grid; place-items: center; font-size: 54px; box-shadow: 0 10px 30px rgba(118,60,74,.08); }
.final-cta { max-width: 850px; margin: 0 auto; text-align: center; }
.footer { padding: 28px clamp(20px, 5vw, 70px); background: white; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 18px; }
.footer p { font-size: 14px; margin: 0; }
@media (max-width: 1100px) {
  .character-grid { grid-template-columns: repeat(3, 1fr); }
  .hero { grid-template-columns: 1fr; }
  .hero-art { max-width: 720px; margin: 0 auto; }
}
@media (max-width: 820px) {
  .site-header { align-items: flex-start; flex-wrap: wrap; }
  .nav-links { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; gap: 15px; }
  .section-heading, .dark-card, .author-card { grid-template-columns: 1fr; }
  .section-heading p:last-child { justify-self: start; }
  .feature-grid, .books-grid { grid-template-columns: 1fr; }
  .featured-book { grid-template-columns: 1fr; grid-column: span 1; }
  .book-image { height: 330px; }
  .character-grid { grid-template-columns: repeat(2, 1fr); }
  .footer { flex-direction: column; text-align: center; }
}
@media (max-width: 520px) {
  .site-header .btn-dark { width: 100%; }
  .brand small { letter-spacing: .12em; }
  h1 { font-size: 42px; }
  .hero-actions .btn { width: 100%; }
  .character-grid { grid-template-columns: 1fr; }
  .character-card img { height: 260px; }
}

.footer a {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.footer a:hover,
.footer a:focus {
  text-decoration: underline;
}
