:root {
  --pink: #e43891;
  --ink: #231c2a;
  --cream: #fff8ed;
  --yellow: #ffd166;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: 'DM Sans', sans-serif;
}

h1, h2, h3, .brand { font-family: 'Lilita One', sans-serif; }

.site-header {
  padding: 1rem 0;
  color: white;
  background: var(--pink);
}

.brand { color: white; text-decoration: none; font-size: 1.5rem; }
.site-nav { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.site-nav a { color: white; text-decoration: none; font-weight: 700; }
.site-nav a:hover { color: var(--yellow); }

main { padding: 5rem 0; }
.eyebrow { color: var(--pink); letter-spacing: .12em; text-transform: uppercase; font-weight: 700; font-size: .8rem; }
.page-heading { color: var(--pink); font-size: clamp(3rem, 8vw, 6rem); line-height: .95; }
.intro { max-width: 760px; font-size: 1.15rem; line-height: 1.8; }
.category-book { max-height: 220px; width: auto; box-shadow: 5px 5px 0 var(--yellow); border: solid 10px white; }
.first-letter::first-letter { color: var(--pink); font-size: 1.5em; font-weight: 700; line-height: inherit; vertical-align: baseline; }
.vaesen-book { max-height: 220px; width: auto; box-shadow: 5px 5px 0 var(--yellow); border: solid 10px white; }
.vaesen-character-row { margin-left: 0; margin-right: 0; }
.vaesen-character { display: flex; justify-content: center; align-items: end; min-height: 180px; overflow: hidden; padding: 1rem .5rem 0; background: var(--yellow); border: 2px solid var(--ink); box-shadow: 6px 6px 0 var(--pink); }
.vaesen-character img { width: 100%; height: 180px; object-fit: contain; object-position: bottom; }
.series-note { color: #63586b; font-size: .95rem; }
.series-block { padding: 3rem 0; border-top: 3px solid var(--pink); }
.series-block:first-of-type { border-top: 0; padding-top: 0; }
.series-description { max-width: 760px; line-height: 1.75; }
.cast { display: flex; flex-wrap: wrap; gap: 1.25rem; margin: 2rem 0; }
.cast-member { min-width: 76px; text-align: center; font-weight: 700; }
.cast-avatar { width: 68px; height: 68px; margin: 0 auto .5rem; border: 2px solid var(--ink); border-radius: 50%; object-fit: cover; }
.cast-photo { width: 68px; height: 68px; margin: 0 auto .5rem; display: block; object-fit: cover; }
.cast-placeholder { display: grid; place-items: center; color: white; background: var(--pink); font: 1.35rem 'Lilita One', sans-serif; }
.cast-role { display: block; color: var(--pink); font-size: .75rem; font-weight: 700; }
.episode-card { height: 100%; overflow: hidden; background: white; border: 2px solid var(--ink); }
.episode-art { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; background: var(--ink); }
.episode-art-placeholder { display: grid; place-items: center; padding: 1rem; color: white; text-align: center; font-weight: 700; }
.episode-body { padding: 1.25rem; }
.episode-body h2 { margin: 0 0 .35rem; font-size: 1.6rem; }
.coming-soon { padding: 2rem; color: white; background: var(--ink); }
.coming-soon h2, .coming-soon .eyebrow { color: var(--yellow); }
footer { padding: 2rem 0; color: white; background: var(--ink); }

@media (max-width: 767px) {
  main { padding: 3.5rem 0; }
  .site-nav { gap: .7rem; font-size: .9rem; }
}
