:root {
  --ink: #16314a;
  --muted: #6b8293;
  --pale: #e9f6fa;
  --sky: #cceaf4;
  --blue: #3c89a8;
  --deep: #0c2c43;
  --paper: #fdfefd;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(24px, 5vw, 76px);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 600; letter-spacing: .16em; }
.brand-mark { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid currentColor; border-radius: 50%; font-size: 12px; }
.site-header nav { display: flex; gap: 34px; font-size: 12px; letter-spacing: .18em; }
.site-header nav a { position: relative; padding: 8px 0; }
.site-header nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.site-header nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: clamp(32px, 5vw, 84px);
  padding: 116px clamp(24px, 6vw, 92px) 72px;
  background:
    radial-gradient(circle at 15% 18%, rgba(255,255,255,.96) 0 12%, transparent 34%),
    linear-gradient(118deg, #f8fcfc 0 44%, #dff1f6 44% 100%);
}
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(22,49,74,.25), transparent); }
.hero-copy { position: relative; z-index: 2; max-width: 580px; padding-left: clamp(0px, 3vw, 42px); }
.eyebrow, .section-number, .hero-meta, .hero-art figcaption {
  font-family: Arial, "Yu Gothic", sans-serif;
  font-size: 10px;
  letter-spacing: .25em;
}
.eyebrow { display: flex; align-items: center; gap: 15px; margin: 0 0 32px; color: var(--blue); }
.eyebrow::before { content: ""; width: 42px; height: 1px; background: currentColor; }
.hero h1 { display: flex; align-items: center; gap: clamp(12px, 2vw, 28px); margin: 0; font-size: clamp(66px, 8.3vw, 132px); font-weight: 400; letter-spacing: .02em; line-height: .92; }
.hero h1 i { font-size: .24em; font-style: normal; color: var(--blue); }
.hero-lead { margin: 36px 0 0; font-size: clamp(17px, 1.5vw, 22px); line-height: 2.05; letter-spacing: .13em; }
.hero-actions { display: flex; align-items: center; gap: 16px; margin-top: 42px; font-family: "Yu Gothic", sans-serif; }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 12px; padding: 0 27px; font-size: 13px; letter-spacing: .12em; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--deep); color: white; box-shadow: 0 14px 34px rgba(12,44,67,.18); }
.button-primary:hover { box-shadow: 0 18px 38px rgba(12,44,67,.26); }
.button-quiet { border-bottom: 1px solid rgba(22,49,74,.35); padding-inline: 18px; }
.play-icon { font-size: 9px; }
.hero-meta { margin-top: 34px; color: var(--muted); }

.hero-art-wrap { position: relative; z-index: 2; width: min(100%, 690px); justify-self: end; padding: 24px 40px 40px 0; }
.art-backdrop { position: absolute; inset: 0 0 0 12%; background: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.76); transform: translate(26px, 20px); }
.hero-art { position: relative; width: min(88%, 560px); margin: 0 auto; background: white; box-shadow: 0 28px 80px rgba(41,92,115,.2); }
.hero-art img { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; }
.hero-art figcaption { display: flex; justify-content: space-between; padding: 15px 3px 0; color: var(--muted); }
.vertical-note { position: absolute; right: 0; top: 50%; margin: 0; writing-mode: vertical-rl; transform: translateY(-50%); color: var(--muted); font-size: 11px; letter-spacing: .3em; }

.paper { position: absolute; z-index: 1; width: 38px; height: 60px; background: rgba(255,255,255,.7); box-shadow: 0 10px 24px rgba(61,127,151,.12); transform: rotate(22deg) skew(-9deg); animation: float 7s ease-in-out infinite; }
.paper-one { left: 42%; top: 23%; }
.paper-two { left: 6%; bottom: 9%; width: 26px; height: 43px; animation-delay: -2s; transform: rotate(-28deg) skew(8deg); }
.paper-three { right: 5%; top: 16%; width: 22px; height: 35px; animation-delay: -4s; }
@keyframes float { 50% { translate: 0 -14px; rotate: 4deg; } }

.story-intro {
  display: grid;
  grid-template-columns: minmax(120px, .55fr) minmax(0, 1.45fr);
  gap: clamp(30px, 8vw, 120px);
  padding: clamp(90px, 11vw, 160px) clamp(24px, 9vw, 140px);
  background: #fff;
}
.section-number { margin: 8px 0 0; color: var(--blue); }
.story-kicker { max-width: 800px; margin: 0 0 34px; font-size: clamp(28px, 3.4vw, 52px); line-height: 1.55; letter-spacing: .06em; }
.story-summary { max-width: 750px; margin: 0; color: #486376; font-size: 15px; line-height: 2.15; letter-spacing: .06em; }

.section-heading { max-width: 850px; }
.section-heading h2 { margin: 20px 0 24px; font-size: clamp(40px, 6vw, 86px); font-weight: 400; line-height: 1.25; letter-spacing: .08em; }
.section-heading > p:last-child { max-width: 620px; margin: 0; color: var(--muted); font-size: 14px; line-height: 2; letter-spacing: .07em; }

.characters { padding: clamp(90px, 11vw, 160px) clamp(24px, 7vw, 110px); background: var(--pale); }
.characters .section-heading { margin: 0 auto 74px; text-align: center; }
.characters .section-number { margin-inline: auto; }
.character-grid { display: grid; max-width: 1280px; margin: 0 auto; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(22,49,74,.12); border: 1px solid rgba(22,49,74,.12); }
.character-card { position: relative; min-height: 760px; overflow: hidden; display: flex; align-items: flex-end; padding: clamp(30px, 4vw, 58px); background: rgba(255,255,255,.7); }
.character-reita { background: linear-gradient(145deg, #173a51, #0e293c); color: #f5fafb; }
.character-portrait { position: absolute; inset: 0; margin: 0; }
.character-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; filter: saturate(.9) contrast(1.02); }
.character-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,27,42,.02) 28%, rgba(7,25,39,.93) 91%); }
.character-mashiro::after { background: linear-gradient(180deg, rgba(8,36,50,.02) 25%, rgba(13,48,65,.9) 92%); }
.character-index { position: absolute; right: -2vw; top: -7vw; opacity: .09; font-family: Arial, sans-serif; font-size: clamp(260px, 35vw, 480px); font-weight: 200; line-height: 1; }
.character-index-white { top: -1vw; color: var(--blue); font-family: inherit; font-size: clamp(210px, 25vw, 350px); opacity: .08; }
.character-body { position: relative; z-index: 2; color: #f5fafb; text-shadow: 0 1px 20px rgba(1,17,28,.24); }
.character-role, .episode-label, .theme-label { margin: 0 0 18px; font-family: Arial, "Yu Gothic", sans-serif; color: #85c3d8; font-size: 10px; letter-spacing: .25em; }
.character-body h3 { margin: 0 0 32px; font-size: clamp(30px, 3.2vw, 44px); font-weight: 400; letter-spacing: .08em; }
.character-body h3 span { display: block; margin-top: 10px; font-family: "Yu Gothic", sans-serif; font-size: 10px; letter-spacing: .2em; opacity: .65; }
.character-body blockquote { margin: 0 0 32px; padding-left: 22px; border-left: 1px solid currentColor; font-size: clamp(16px, 1.5vw, 20px); line-height: 1.9; letter-spacing: .08em; }
.character-body > p:last-child { max-width: 510px; margin: 0; font-size: 13px; line-height: 2.05; letter-spacing: .05em; opacity: .76; }
.character-mashiro .character-role { color: #a8ddec; }

.episodes { padding: clamp(96px, 12vw, 170px) clamp(24px, 8vw, 130px); background: var(--deep); color: #f4fafb; }
.light-heading { margin-bottom: 70px; }
.light-heading .section-number { color: #79bed5; }
.light-heading > p:last-child { color: #9eb4c1; }
.episode-list { max-width: 1200px; border-top: 1px solid rgba(255,255,255,.2); }
.episode-card { display: grid; grid-template-columns: 90px minmax(0, 1fr) auto; gap: clamp(22px, 4vw, 60px); align-items: center; padding: 42px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.episode-no { color: #79bed5; font-family: Arial, sans-serif; font-size: 14px; letter-spacing: .18em; }
.episode-copy h3 { margin: 0 0 16px; font-size: clamp(25px, 2.8vw, 39px); font-weight: 400; letter-spacing: .07em; }
.episode-copy > p:last-child { max-width: 700px; margin: 0; color: #b8c8d0; font-size: 13px; line-height: 1.95; letter-spacing: .04em; }
.episode-action { display: flex; align-items: center; gap: 26px; }
.episode-action > span { color: #93aab6; font-family: Arial, sans-serif; font-size: 11px; letter-spacing: .12em; }
.episode-action a { display: grid; place-items: center; width: 58px; height: 58px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; transition: background .2s ease, color .2s ease, transform .2s ease; }
.episode-action a:hover { background: white; color: var(--deep); transform: scale(1.05); }
.episode-action a span { margin-left: 3px; font-size: 11px; }
.podcast-link { display: inline-flex; gap: 12px; margin-top: 40px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.45); font-family: Arial, "Yu Gothic", sans-serif; font-size: 12px; letter-spacing: .12em; }

.theme { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr); min-height: 780px; background: #f7fbfb; }
.theme-visual { display: grid; place-items: center; padding: clamp(34px, 6vw, 90px); background:
  linear-gradient(rgba(24,81,106,.08) 1px, transparent 1px),
  linear-gradient(90deg, rgba(24,81,106,.08) 1px, transparent 1px),
  #d9eef4;
  background-size: 54px 54px;
}
.video-frame { position: relative; width: 100%; max-width: 860px; aspect-ratio: 16 / 9; box-shadow: 0 34px 80px rgba(31,87,111,.22); }
.video-frame::before { content: ""; position: absolute; inset: -16px 16px 16px -16px; z-index: 0; border: 1px solid rgba(22,49,74,.2); }
.video-frame iframe { position: relative; z-index: 1; width: 100%; height: 100%; border: 0; }
.theme-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(70px, 8vw, 120px); }
.theme-label { margin-top: 70px; color: var(--blue); }
.theme-copy h2 { margin: 0; font-size: clamp(55px, 7vw, 100px); font-weight: 400; letter-spacing: .1em; }
.artist { margin: 12px 0 38px; color: var(--blue); font-family: Arial, sans-serif; font-size: 20px; letter-spacing: .18em; }
.theme-description { max-width: 520px; margin: 0; color: var(--muted); font-size: 14px; line-height: 2.05; letter-spacing: .05em; }
.text-link { display: inline-flex; align-self: flex-start; gap: 12px; margin-top: 38px; padding-bottom: 8px; border-bottom: 1px solid currentColor; font-family: Arial, sans-serif; font-size: 11px; letter-spacing: .16em; }

.production { padding: clamp(96px, 12vw, 170px) clamp(24px, 8vw, 130px); background: #fff; }
.production-heading { margin-bottom: 70px; }
.production-grid { display: grid; grid-template-columns: repeat(2, 1fr); max-width: 1300px; border-top: 1px solid rgba(22,49,74,.18); border-bottom: 1px solid rgba(22,49,74,.18); }
.production-grid article { padding: 46px clamp(20px, 3vw, 42px) 50px 0; }
.production-grid article + article { padding-left: clamp(20px, 3vw, 42px); border-left: 1px solid rgba(22,49,74,.18); }
.production-grid article:nth-child(3) { padding-left: 0; border-top: 1px solid rgba(22,49,74,.18); border-left: 0; }
.production-grid article:nth-child(4) { border-top: 1px solid rgba(22,49,74,.18); }
.note-icon { color: var(--blue); font-family: Arial, sans-serif; font-size: 10px; letter-spacing: .18em; }
.production-grid h3 { margin: 36px 0 22px; font-size: 25px; font-weight: 400; letter-spacing: .1em; }
.production-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 2; letter-spacing: .04em; }

.novel-promo { position: relative; overflow: hidden; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr); gap: clamp(50px, 8vw, 120px); align-items: end; padding: clamp(100px, 13vw, 190px) clamp(24px, 9vw, 140px); background: linear-gradient(135deg, #0a2b42 0 55%, #103a52 55% 100%); color: #f3fafc; }
.novel-promo::before { content: ""; position: absolute; inset: 0; opacity: .16; background: repeating-linear-gradient(135deg, transparent 0 46px, rgba(255,255,255,.2) 46px 47px); }
.novel-promo-no { position: absolute; right: -1vw; top: -10vw; color: white; opacity: .035; font-family: Arial, sans-serif; font-size: clamp(280px, 42vw, 620px); line-height: 1; }
.novel-promo-copy, .novel-promo blockquote { position: relative; z-index: 1; }
.novel-promo-label { margin: 54px 0 18px; color: #88c9dd; font-family: Arial, sans-serif; font-size: 10px; letter-spacing: .24em; }
.novel-promo h2 { margin: 0; font-size: clamp(42px, 6vw, 86px); font-weight: 400; line-height: 1.35; letter-spacing: .06em; }
.novel-promo-copy > p:not(.section-number):not(.novel-promo-label) { max-width: 700px; margin: 34px 0 38px; color: #b8cdd6; font-size: 14px; line-height: 2.1; letter-spacing: .05em; }
.novel-promo .button-primary { background: #f2f8fa; color: var(--deep); }
.novel-promo blockquote { margin: 0 0 12px; padding: 42px; border: 1px solid rgba(255,255,255,.25); color: #d9ebf1; font-size: clamp(19px, 2vw, 28px); line-height: 2; letter-spacing: .08em; }
.novel-promo blockquote span { display: block; margin-bottom: 28px; color: #7cc0d7; font-family: Arial, sans-serif; font-size: 11px; letter-spacing: .2em; }

.credits { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 10vw, 160px); padding: clamp(90px, 11vw, 160px) clamp(24px, 9vw, 140px); background: var(--pale); }
.credits-title h2 { margin: 34px 0 15px; font-size: clamp(56px, 7vw, 105px); font-weight: 400; letter-spacing: .08em; }
.credits-title > p:last-child { margin: 0; color: var(--muted); font-family: Arial, sans-serif; font-size: 10px; letter-spacing: .2em; }
.credits dl { margin: 0; border-top: 1px solid rgba(22,49,74,.2); }
.credits dl div { display: grid; grid-template-columns: 160px 1fr; gap: 24px; padding: 25px 0; border-bottom: 1px solid rgba(22,49,74,.2); }
.credits dt { font-family: Arial, sans-serif; color: var(--blue); font-size: 10px; letter-spacing: .2em; }
.credits dd { margin: 0; font-size: 14px; line-height: 1.8; letter-spacing: .06em; }

footer { display: grid; grid-template-columns: 1fr 1.6fr auto; align-items: center; gap: 34px; padding: 52px clamp(24px, 6vw, 90px); background: #09263a; color: #edf8fa; font-family: "Yu Gothic", sans-serif; }
.footer-brand { font-family: "Yu Mincho", serif; }
footer > p { margin: 0; color: #9fb7c3; font-family: "Yu Mincho", serif; font-size: 12px; letter-spacing: .08em; }
footer > div { display: flex; gap: 24px; font-size: 10px; letter-spacing: .15em; }
footer small { grid-column: 1 / -1; color: #77909d; font-size: 9px; letter-spacing: .15em; }

.novel-page { min-height: 100vh; background: #f7f5ef; color: #162f43; }
.novel-header { position: relative; z-index: 10; display: flex; align-items: center; justify-content: space-between; padding: 25px clamp(22px, 5vw, 74px); border-bottom: 1px solid rgba(18,51,71,.14); background: rgba(250,249,245,.92); font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif; }
.novel-back { padding-bottom: 6px; border-bottom: 1px solid rgba(22,49,74,.45); font-size: 11px; letter-spacing: .14em; }
.novel-cover { display: grid; min-height: 720px; grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr); align-items: center; gap: clamp(42px, 7vw, 110px); padding: clamp(72px, 9vw, 130px) clamp(24px, 8vw, 120px); background: linear-gradient(120deg, #fcfbf7 0 48%, #e0eff3 48% 100%); }
.novel-cover-copy { max-width: 620px; }
.novel-cover .eyebrow { margin-bottom: 46px; }
.novel-edition { margin: 0 0 14px; color: var(--blue); font-size: 14px; letter-spacing: .35em; }
.novel-cover h1 { margin: 0; font-size: clamp(68px, 9vw, 138px); font-weight: 400; letter-spacing: .08em; line-height: 1; }
.novel-cover-copy > p:last-child { max-width: 560px; margin: 42px 0 0; color: var(--muted); font-size: 14px; line-height: 2.1; letter-spacing: .05em; }
.novel-cover figure { width: min(100%, 700px); margin: 0; justify-self: end; box-shadow: 0 34px 90px rgba(23,70,91,.2); }
.novel-cover img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; }
.novel-shell { display: grid; grid-template-columns: 260px minmax(0, 760px); gap: clamp(45px, 8vw, 130px); justify-content: center; align-items: start; padding: clamp(90px, 12vw, 170px) clamp(22px, 6vw, 90px); }
.novel-toc { position: sticky; top: 30px; padding-top: 6px; font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif; }
.novel-toc > p { margin: 0 0 28px; color: var(--blue); font-size: 10px; letter-spacing: .24em; }
.novel-toc ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(22,49,74,.2); }
.novel-toc li { border-bottom: 1px solid rgba(22,49,74,.16); }
.novel-toc a { display: flex; gap: 15px; padding: 14px 0; color: #566d7d; font-size: 11px; line-height: 1.6; }
.novel-toc a:hover { color: var(--ink); }
.novel-toc span { color: var(--blue); font-family: Arial, sans-serif; }
.content-note { margin-bottom: 92px; padding: 24px 28px; border-left: 2px solid #77b6ca; background: rgba(219,236,240,.65); }
.content-note strong { color: var(--blue); font-family: Arial, sans-serif; font-size: 9px; letter-spacing: .2em; }
.content-note p { margin: 10px 0 0; color: #607684; font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif; font-size: 11px; line-height: 1.8; }
.novel-chapter { scroll-margin-top: 32px; margin-bottom: clamp(120px, 16vw, 210px); }
.novel-chapter > header { margin-bottom: 60px; }
.novel-chapter > header > span { display: inline-block; margin-bottom: 22px; color: var(--blue); font-family: Arial, sans-serif; font-size: 11px; letter-spacing: .24em; }
.novel-chapter h2 { margin: 0; font-size: clamp(38px, 5vw, 65px); font-weight: 400; letter-spacing: .1em; }
.novel-chapter header p { margin: 28px 0 0; color: #80909a; font-size: 13px; line-height: 1.9; letter-spacing: .09em; }
.novel-prose { font-size: clamp(16px, 1.35vw, 18px); line-height: 2.45; letter-spacing: .055em; text-align: justify; text-underline-offset: 3px; }
.novel-prose p { margin: 0 0 2.1em; }
.novel-prose p:first-child::first-letter { float: left; margin: .09em .13em 0 0; color: var(--blue); font-size: 3.4em; line-height: .8; }
.novel-end { display: block; padding: 78px 0 20px; border-top: 1px solid rgba(22,49,74,.2); background: transparent; color: var(--ink); text-align: center; font-family: inherit; }
.novel-end span { color: var(--blue); font-family: Arial, sans-serif; font-size: 10px; letter-spacing: .34em; }
.novel-end p { margin: 30px 0; color: var(--muted); font-size: 12px; letter-spacing: .08em; }
.novel-end a { display: inline-block; padding-bottom: 7px; border-bottom: 1px solid rgba(22,49,74,.45); font-size: 12px; letter-spacing: .08em; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 60px; padding-top: 140px; }
  .hero-copy { padding-left: 0; }
  .hero-art-wrap { width: min(100%, 620px); justify-self: center; }
  .paper-one { left: auto; right: 7%; top: 10%; }
  .character-grid, .theme, .credits { grid-template-columns: 1fr; }
  .character-card { min-height: 520px; }
  .theme-copy { order: -1; }
  .theme-visual { min-height: 520px; }
  .production-grid { grid-template-columns: 1fr; }
  .production-grid article + article, .production-grid article:nth-child(3), .production-grid article:nth-child(4) { padding-left: 0; border-left: 0; border-top: 1px solid rgba(22,49,74,.18); }
  .novel-promo { grid-template-columns: 1fr; }
  .novel-cover { grid-template-columns: 1fr; }
  .novel-cover figure { justify-self: center; }
  .novel-shell { grid-template-columns: 1fr; }
  .novel-toc { position: relative; top: 0; }
  footer { grid-template-columns: 1fr 1fr; }
  footer > p { grid-column: 1 / -1; grid-row: 2; }
  footer small { grid-row: 3; }
}
@media (max-width: 600px) {
  .site-header { padding: 22px 20px; }
  .site-header nav { gap: 15px; }
  .site-header nav a:nth-child(2), .site-header nav a:nth-child(4) { display: none; }
  .hero { padding: 126px 20px 58px; }
  .hero h1 { font-size: clamp(62px, 22vw, 92px); }
  .hero-lead { font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-art-wrap { padding: 0 22px 28px 0; }
  .hero-art { width: 93%; }
  .hero-art figcaption { font-size: 8px; }
  .vertical-note { right: -2px; }
  .story-intro { grid-template-columns: 1fr; gap: 28px; padding: 82px 24px; }
  .characters, .episodes, .production { padding-inline: 20px; }
  .character-card { min-height: 570px; padding: 30px 24px; }
  .character-body blockquote br { display: none; }
  .episode-card { grid-template-columns: 42px minmax(0, 1fr); gap: 18px; }
  .episode-action { grid-column: 2; justify-content: space-between; }
  .episode-action a { width: 50px; height: 50px; }
  .theme-copy { padding: 82px 24px; }
  .theme-label { margin-top: 50px; }
  .theme-visual { min-height: auto; padding: 42px 20px 58px; }
  .production-grid article { padding: 36px 0; }
  .novel-promo { padding: 92px 24px; }
  .novel-promo blockquote { padding: 28px 24px; }
  .novel-header { padding: 20px; }
  .novel-back { font-size: 9px; }
  .novel-cover { min-height: auto; padding: 74px 20px; }
  .novel-cover h1 { font-size: clamp(64px, 23vw, 96px); }
  .novel-cover figure { width: 100%; }
  .novel-shell { padding: 78px 22px; }
  .novel-toc { display: none; }
  .content-note { margin-bottom: 72px; }
  .novel-chapter { margin-bottom: 120px; }
  .novel-prose { font-size: 16px; line-height: 2.25; text-align: left; }
  .credits { padding: 82px 24px; }
  .credits dl div { grid-template-columns: 110px 1fr; }
  footer { grid-template-columns: 1fr; padding: 48px 24px; }
  footer > p, footer > div, footer small { grid-column: 1; grid-row: auto; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .paper { animation: none; }
  * { transition-duration: .01ms !important; }
}
