:root {
  --red: #c51f28;
  --red-deep: #9e0e17;
  --red-soft: #fbeaec;
  --ink: #2b2020;
  --muted: #7d6c69;
  --paper: #fffdfb;
  --line: #efc7c2;
  --line-strong: #d9655e;
  --shadow: 0 14px 40px rgba(108, 34, 34, 0.08);
  --serif: "Noto Serif JP", serif;
  --sans: "Noto Sans JP", sans-serif;
  --display: "Oswald", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: linear-gradient(#fff, #fffaf8);
  color: var(--ink);
  font-family: var(--sans);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
}
.site-header {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 3.2vw 0 220px;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #f0e6e3;
  position: relative;
  z-index: 30;
}
.header-logo {
  position: absolute;
  left: 26px;
  top: 7px;
  width: 178px;
  height: 178px;
  z-index: 40;
  filter: drop-shadow(0 8px 10px rgba(41, 26, 26, 0.12));
}
.header-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.global-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  justify-content: center;
}
.global-nav a {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
  position: relative;
  padding: 18px 0 14px;
}
.global-nav small {
  display: block;
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: 0.08em;
  color: #9a8580;
  margin-top: 3px;
  font-weight: 600;
}
.header-actions {
  display: flex;
  gap: 9px;
  align-items: center;
}
.header-actions > a:not(.patreon-mini) {
  width: 29px;
  height: 29px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
}
.patreon-mini {
  background: var(--red);
  color: #fff;
  padding: 11px 15px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
}
.menu-toggle {
  display: none;
}
.hero {
  height: min(530px, 45vw);
  min-height: 390px;
  position: relative;
  overflow: hidden;
  background: #eef2f5;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}
.hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 25%,
    rgba(255, 255, 255, 0.1) 56%,
    rgba(255, 251, 248, 0.96) 100%
  );
}
.hero-copy {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  text-align: center;
  width: min(900px, 90%);
  text-shadow: 0 2px 14px rgba(255, 255, 255, 0.85);
}
.hero-copy p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(31px, 3.4vw, 58px);
  font-weight: 500;
  letter-spacing: 0.09em;
  color: #322421;
}
.hero-copy strong {
  font-weight: 600;
  color: var(--red);
}
.hero-copy span {
  display: block;
  margin-top: 10px;
  font-family: var(--serif);
  letter-spacing: 0.13em;
  font-size: clamp(11px, 1.15vw, 16px);
}
.hero-copy .hero-credit {
  display: block;
  margin-top: 8px;
  font-family: Gabriola, "Segoe Script", "Brush Script MT", cursive;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.025em;
  font-size: clamp(17px, 1.55vw, 25px);
  color: #6d4b47;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.9);
}
.page-shell {
  width: min(1450px, 94%);
  margin: 0 auto;
  padding: 18px 0 0;
}
.panel {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 20px;
  overflow: hidden;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 16px;
}
.section-head h2 {
  margin: 0;
  color: #97262b;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: 0.025em;
}
.section-head h2 small {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  color: #8f7570;
  margin-left: 6px;
}
.section-head > a {
  font-size: 10px;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.lead-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.08fr 0.72fr;
  gap: 16px;
  align-items: stretch;
}
.news-list {
  border-top: 1px solid #f0d7d4;
}
.news-list a {
  display: grid;
  grid-template-columns: 85px 42px 1fr;
  gap: 9px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f2dedb;
  font-size: 11px;
}
.news-list time {
  font-family: var(--serif);
  color: #8b5a56;
}
.news-list b {
  background: var(--red);
  color: #fff;
  font-size: 9px;
  padding: 4px 5px;
  text-align: center;
  font-weight: 700;
}
.outline-button {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 10px 18px;
  display: flex;
  justify-content: center;
  gap: 22px;
  width: min(220px, 100%);
  margin: 18px auto 0;
  color: var(--red);
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 700;
  background: #fff;
}
.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  background: #201614;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #8c2b2f;
}
.video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.video-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(26, 11, 10, 0.88),
    rgba(26, 11, 10, 0.28) 65%,
    rgba(26, 11, 10, 0.12)
  );
}
.video-copy {
  position: absolute;
  left: 22px;
  top: 22px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 48%;
}
.video-copy > span {
  background: var(--red);
  padding: 4px 7px;
  font-size: 10px;
  width: max-content;
}
.video-copy strong {
  font-family: var(--serif);
  font-size: 25px;
  letter-spacing: 0.06em;
}
.video-copy small {
  line-height: 1.7;
  color: #f5eaea;
}
.play-button {
  position: absolute;
  left: 63%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(20, 10, 10, 0.35);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}
.patreon-panel {
  background: linear-gradient(145deg, #fff, #fff7f5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.patreon-kicker {
  font-family: var(--serif);
  font-weight: 800;
  color: var(--red);
  font-size: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  margin-bottom: 15px;
}
.patreon-panel h2 {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.55;
  margin: 0 0 12px;
  color: #392625;
}
.patreon-panel ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  font-size: 11px;
  line-height: 2;
  color: #5f4b48;
}
.patreon-panel li:before {
  content: "✓";
  color: var(--red);
  margin-right: 7px;
  font-weight: 800;
}
.primary-button {
  margin-top: auto;
  background: linear-gradient(180deg, #d82b35, #ad111b);
  color: #fff;
  border-radius: 999px;
  text-align: center;
  padding: 14px 12px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 7px 16px rgba(174, 20, 29, 0.18);
}
.story-episodes-row {
  display: grid;
  grid-template-columns: 0.62fr 1.62fr;
  gap: 16px;
  margin-top: 16px;
}
.story-panel p {
  font-family: var(--serif);
  font-size: 12px;
  line-height: 2.05;
  color: #4a3c39;
  margin: 0;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.episode-card {
  min-width: 0;
}
.episode-art {
  height: 112px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #e8c1bc;
}
.episode-art:after {
  content: "▶";
  position: absolute;
  left: 10px;
  bottom: 8px;
  background: var(--red);
  color: #fff;
  font-size: 9px;
  width: 22px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 3px;
}
.episode-art-1 {
  background-image:
    linear-gradient(rgba(60, 12, 11, 0.22), rgba(60, 12, 11, 0.18)),
    url("assets/images/characters/kohaku-main.png");
  background-position: center 25%;
}
.episode-art-2 {
  background-image:
    linear-gradient(rgba(60, 12, 11, 0.2), rgba(60, 12, 11, 0.2)),
    url("assets/images/characters/mio-main.png");
  background-position: center 30%;
}
.episode-art-3 {
  background-image:
    linear-gradient(rgba(60, 12, 11, 0.2), rgba(60, 12, 11, 0.2)),
    url("assets/images/characters/kirino-main.png");
  background-position: center 25%;
}
.episode-art-4 {
  background-image:
    linear-gradient(rgba(60, 12, 11, 0.2), rgba(60, 12, 11, 0.2)),
    url("assets/images/characters/shuri-main.png");
  background-position: center 30%;
}
.latest .episode-art span {
  position: absolute;
  left: 8px;
  top: 8px;
  background: var(--red);
  color: #fff;
  padding: 4px 7px;
  font-size: 9px;
  z-index: 2;
}
.episode-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 19px;
  margin-top: 7px;
  color: #462b29;
}
.episode-card small {
  color: #806e69;
  font-size: 10px;
}
.centered {
  margin-left: auto;
  margin-right: auto;
}
.character-panel {
  margin-top: 16px;
}
.character-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.character-card {
  border: 1px solid #efd3cf;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 45% 55%;
  background: #fff;
  overflow: hidden;
  min-height: 170px;
  transition:
    0.2s transform,
    0.2s box-shadow;
}
.character-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(123, 34, 34, 0.1);
}
.portrait {
  background: #fff6f3;
  overflow: hidden;
  min-height: 170px;
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.character-card > div:last-child {
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.character-card strong {
  font-family: var(--serif);
  color: var(--red);
  font-size: 18px;
}
.character-card span {
  font-family: var(--serif);
  font-weight: 700;
  margin-top: 2px;
}
.character-card small {
  margin-top: 11px;
  color: #8d6f6a;
  font-size: 10px;
}
.character-extra-row[hidden] {
  display: none !important;
}
.lower-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr;
  gap: 16px;
  margin-top: 16px;
}
.special-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.special-grid a {
  min-width: 0;
}
.special-art {
  height: 150px;
  border-radius: 7px;
  background-size: cover;
  background-position: center;
  border: 1px solid #edcbc6;
  position: relative;
  overflow: hidden;
}
.special-art:after {
  content: "";
  position: absolute;
  right: 7px;
  bottom: 7px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--red);
  font-size: 9px;
  padding: 3px 5px;
  border-radius: 3px;
}
.s1 {
  background-image:
    linear-gradient(rgba(70, 15, 15, 0.15), rgba(70, 15, 15, 0.15)),
    url("assets/images/special/appeal-making.jpg");
  background-position: left center;
}
.s2 {
  background-image:
    linear-gradient(rgba(70, 15, 15, 0.15), rgba(70, 15, 15, 0.15)),
    url("assets/images/special/ep03-outtakes.png");
  background-position: center;
}
.s3 {
  background-image:
    linear-gradient(rgba(70, 15, 15, 0.15), rgba(70, 15, 15, 0.15)),
    url("assets/images/special/hasshaku-origin.jpg");
  background-position: 50% 20%;
}
.special-grid strong {
  display: block;
  font-family: var(--serif);
  font-size: 16px;
  margin-top: 8px;
}
.special-grid span {
  font-size: 10px;
  color: #816d69;
}
.music-feature {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: center;
}
.album-placeholder {
  aspect-ratio: 1;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 62px;
  color: #fff;
  background: radial-gradient(
    circle at 50% 45%,
    #ffb7ae 0,
    #b61822 42%,
    #4d1115 100%
  );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}
.music-feature span {
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
}
.music-feature h3 {
  font-family: var(--serif);
  margin: 4px 0 7px;
  font-size: 22px;
}
.music-feature p {
  font-size: 11px;
  color: #796662;
  line-height: 1.7;
}
.dark-button {
  display: inline-block;
  background: #3f2826;
  color: #fff;
  border-radius: 999px;
  padding: 9px 17px;
  font-size: 10px;
}
.support-banner {
  height: 160px;
  background: linear-gradient(105deg, #a80813, #d52029 55%, #a70913);
  margin-top: 16px;
  border-radius: 12px;
  border: 1px solid #8e1017;
  color: #fff;
  display: grid;
  grid-template-columns: 160px 1.1fr 0.8fr 210px 140px;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.support-banner:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 25% 40%,
      rgba(255, 255, 255, 0.09),
      transparent 23%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(255, 255, 255, 0.08),
      transparent 20%
    );
}
.support-mascot {
  align-self: end;
  position: relative;
  z-index: 2;
}
.support-mascot img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: center 65%;
}
.support-mascot.cow img {
  transform: scale(1.25);
  transform-origin: bottom center;
}
.support-mascot.wall img {
  object-fit: contain;
  object-position: bottom center;
  height: 150px;
}
.support-copy,
.support-perks,
.support-button {
  position: relative;
  z-index: 2;
}
.support-copy span {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.15em;
  opacity: 0.76;
}
.support-copy h2 {
  font-family: var(--serif);
  font-size: 26px;
  margin: 4px 0 6px;
}
.support-copy p {
  font-size: 11px;
  line-height: 1.7;
  margin: 0;
  opacity: 0.9;
}
.support-perks {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 11px;
}
.support-perks span {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  padding-left: 12px;
}
.support-button {
  background: #fff;
  color: var(--red);
  font-family: var(--serif);
  font-weight: 800;
  text-align: center;
  padding: 16px 18px;
  border-radius: 10px;
  font-size: 16px;
  border: 2px solid rgba(255, 255, 255, 0.55);
}
.site-footer {
  width: min(1450px, 94%);
  margin: 0 auto;
  padding: 34px 0 40px;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 28px;
  align-items: center;
  color: #6f605d;
}
.site-footer > img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 10px;
}
.credit {
  font-family: var(--serif);
  font-size: 11px;
}
.site-footer > small {
  grid-column: 1/-1;
  text-align: center;
  border-top: 1px solid #ead7d3;
  padding-top: 18px;
}
@media (max-width: 1150px) {
  .site-header {
    padding-left: 160px;
  }
  .header-logo {
    width: 135px;
    height: 135px;
  }
  .global-nav {
    gap: 12px;
  }
  .global-nav a {
    font-size: 11px;
  }
  .header-actions > a:not(.patreon-mini) {
    display: none;
  }
  .lead-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }
  .patreon-panel {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .patreon-panel .primary-button {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
  }
  .character-card {
    grid-template-columns: 1fr;
  }
  .portrait {
    height: 190px;
  }
  .character-card > div:last-child {
    padding: 11px 13px;
  }
  .support-banner {
    grid-template-columns: 120px 1.1fr 0.7fr 180px 100px;
  }
  .support-mascot img {
    height: 130px;
  }
}
@media (max-width: 820px) {
  .site-header {
    height: 64px;
    padding: 0 15px 0 82px;
    position: sticky;
    top: 0;
  }
  .header-logo {
    width: 78px;
    height: 78px;
    left: 6px;
    top: 3px;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
    border: 1px solid var(--line-strong);
    background: #fff;
    color: var(--red);
    border-radius: 999px;
    padding: 7px 12px;
    font-weight: 700;
  }
  .global-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    display: none;
    grid-template-columns: repeat(2, 1fr);
    padding: 18px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(70, 20, 20, 0.08);
  }
  .global-nav.open {
    display: grid;
  }
  .header-actions {
    display: none;
  }
  .hero {
    height: 58vw;
    min-height: 350px;
  }
  .hero-image {
    object-position: center center;
  }
  .hero-copy {
    bottom: 18px;
  }
  .hero-copy span {
    letter-spacing: 0.04em;
  }
  .page-shell {
    width: 94%;
  }
  .lead-grid,
  .story-episodes-row,
  .lower-grid {
    grid-template-columns: 1fr;
  }
  .lead-grid {
    gap: 12px;
  }
  .patreon-panel {
    grid-column: auto;
    display: block;
  }
  .patreon-panel .primary-button {
    display: block;
  }
  .episode-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .character-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .character-card:last-child {
    grid-column: 1/-1;
  }
  .special-grid {
    grid-template-columns: 1fr;
  }
  .special-art {
    height: 190px;
  }
  .support-banner {
    height: auto;
    min-height: 185px;
    grid-template-columns: 90px 1fr 80px;
    padding: 14px;
  }
  .support-copy {
    grid-column: 2;
  }
  .support-perks {
    display: none;
  }
  .support-button {
    grid-column: 2;
  }
  .support-mascot.cow {
    grid-column: 1;
    grid-row: 1/3;
  }
  .support-mascot.wall {
    grid-column: 3;
    grid-row: 1/3;
  }
  .support-mascot img {
    height: 150px;
  }
  .site-footer {
    grid-template-columns: 80px 1fr;
  }
  .credit {
    grid-column: 1/-1;
  }
  .footer-links {
    gap: 12px;
  }
}
@media (max-width: 520px) {
  .hero {
    height: 68vw;
    min-height: 330px;
  }
  .hero-image {
    width: 118%;
    max-width: none;
    margin-left: -9%;
    object-fit: cover;
  }
  .hero-copy p {
    font-size: 28px;
    letter-spacing: 0.03em;
  }
  .hero-copy span {
    font-size: 9px;
  }
  .section-head h2 {
    font-size: 23px;
  }
  .panel {
    padding: 15px;
  }
  .news-list a {
    grid-template-columns: 72px 38px 1fr;
    font-size: 10px;
  }
  .video-copy {
    left: 14px;
    top: 14px;
  }
  .video-copy strong {
    font-size: 18px;
  }
  .video-copy small {
    display: none;
  }
  .play-button {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }
  .episode-grid {
    grid-template-columns: 1fr 1fr;
  }
  .episode-art {
    height: 100px;
  }
  .character-grid {
    grid-template-columns: 1fr;
  }
  .character-card:last-child {
    grid-column: auto;
  }
  .character-card {
    grid-template-columns: 38% 62%;
    min-height: 150px;
  }
  .portrait {
    height: auto;
    min-height: 150px;
  }
  .music-feature {
    grid-template-columns: 105px 1fr;
  }
  .support-banner {
    grid-template-columns: 66px 1fr 62px;
  }
  .support-mascot img {
    height: 120px;
  }
  .support-copy h2 {
    font-size: 20px;
  }
  .support-copy p {
    font-size: 9px;
  }
  .support-button {
    font-size: 13px;
    padding: 12px;
  }
  .site-footer {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
}

/* v2: trailer coming-soon state */
.trailer-coming-soon .video-shade {
  background: linear-gradient(
    90deg,
    rgba(26, 11, 10, 0.9),
    rgba(26, 11, 10, 0.38) 68%,
    rgba(26, 11, 10, 0.2)
  );
}
.coming-soon-badge {
  position: absolute;
  left: 63%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.92);
  background: rgba(28, 10, 10, 0.58);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.12em;
  white-space: nowrap;
  backdrop-filter: blur(3px);
}
.episode-card small {
  display: block;
  line-height: 1.45;
  min-height: 29px;
}

/* v3: real episode thumbnails */
.episode-art {
  background: #1d1514;
}
.episode-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.episode-art:after {
  z-index: 3;
}
.latest .episode-art span {
  z-index: 4;
}

/* Episodes page */
.subpage-header {
  background: linear-gradient(180deg, #fff, #fff9f7);
  border-bottom: 1px solid var(--line);
  padding: 72px 5vw 46px;
  text-align: center;
}
.subpage-header .eyebrow {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--red);
  font-weight: 700;
}
.subpage-header h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(38px, 5vw, 70px);
  letter-spacing: 0.06em;
  margin: 8px 0 10px;
  color: #772226;
}
.subpage-header p {
  margin: 0;
  color: #806c68;
  font-family: var(--serif);
  font-size: 13px;
  line-height: 1.8;
}
.subpage-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.subpage-actions .outline-button {
  margin: 0;
  width: auto;
  min-width: 190px;
}
.episodes-page-shell {
  width: min(1280px, 92%);
  margin: 34px auto 70px;
}
.all-episode-grid {
  display: grid;
  gap: 22px;
}
.episode-detail-card {
  display: grid;
  grid-template-columns: minmax(360px, 46%) 1fr;
  gap: 28px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  scroll-margin-top: 100px;
}
.episode-detail-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  border-radius: 9px;
  overflow: hidden;
  background: #211816;
}
.episode-detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.episode-watch-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgba(30, 10, 10, 0.48);
  display: grid;
  place-items: center;
  color: #fff;
  padding-left: 4px;
  font-size: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.episode-detail-copy {
  padding: 4px 4px 2px;
}
.episode-number {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--red);
  font-weight: 700;
}
.episode-detail-copy h2 {
  font-family: var(--serif);
  font-size: 28px;
  color: #422a28;
  margin: 5px 0 10px;
}
.episode-summary {
  font-family: var(--serif);
  font-size: 13px;
  line-height: 2;
  color: #685552;
  margin: 0 0 18px;
}
.episode-detail-actions {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}
.episode-watch-button {
  display: inline-block;
  margin: 0;
  min-width: 170px;
  padding: 12px 20px;
}
.episode-detail-actions details {
  flex: 1;
  min-width: 240px;
  border: 1px solid #edd3cf;
  border-radius: 9px;
  background: #fffaf8;
  overflow: hidden;
}
.episode-detail-actions summary {
  cursor: pointer;
  padding: 12px 16px;
  color: var(--red);
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}
.episode-detail-actions summary::-webkit-details-marker {
  display: none;
}
.episode-detail-actions summary:after {
  content: "＋";
  float: right;
}
.episode-detail-actions details[open] summary:after {
  content: "−";
}
.episode-description {
  border-top: 1px solid #f0d8d4;
  padding: 8px 16px 14px;
}
.episode-description p {
  white-space: normal;
  font-size: 11px;
  line-height: 1.9;
  color: #64524e;
  margin: 11px 0;
}
.episode-page-footer-note {
  text-align: center;
  color: #8c7772;
  font-size: 11px;
  margin-top: 26px;
}
@media (max-width: 820px) {
  .subpage-header {
    padding: 50px 5vw 32px;
  }
  .episode-detail-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 15px;
  }
  .episode-detail-copy h2 {
    font-size: 24px;
  }
}
@media (max-width: 520px) {
  .episodes-page-shell {
    width: 94%;
    margin-top: 22px;
  }
  .episode-detail-actions {
    display: block;
  }
  .episode-watch-button {
    display: block;
    text-align: center;
    margin-bottom: 10px;
  }
  .episode-detail-actions details {
    min-width: 0;
  }
}

/* Character page ---------------------------------------------------------- */
.characters-page {
  background: #fffdfb;
}
.global-nav a.active {
  color: var(--red);
}
.global-nav a.active:after {
  content: "";
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 4px;
  height: 2px;
  background: var(--red);
  border-radius: 999px;
}
.character-feature {
  position: relative;
  min-height: 670px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: #f8f5f2;
  scroll-margin-top: 82px;
}
.character-feature-image {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition:
    background-image 0.35s ease,
    background-position 0.35s ease,
    filter 0.35s ease;
}
.character-feature-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(255, 255, 255, 0.03) 38%,
    rgba(255, 255, 255, 0.54) 52%,
    rgba(255, 255, 255, 0.94) 68%,
    #fff 87%
  );
}
.character-image-switch {
  position: absolute;
  left: 38%;
  bottom: 26px;
  z-index: 6;
  display: flex;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid rgba(224, 174, 164, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 22px rgba(95, 49, 42, 0.12);
  backdrop-filter: blur(8px);
}
.character-image-switch button {
  appearance: none;
  border: 0;
  background: transparent;
  color: #d8aaa2;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  padding: 2px;
  transition: 0.18s ease;
}
.character-image-switch button.active {
  color: var(--red);
  transform: scale(1.18);
}
.character-feature-image.portrait-mode {
  background-repeat: no-repeat;
  background-position: left center !important;
}
.character-side-slogan {
  position: absolute;
  left: 4.2vw;
  bottom: 48px;
  color: #fff;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.9;
  letter-spacing: 0.12em;
  text-shadow: 0 2px 18px rgba(44, 60, 70, 0.45);
  writing-mode: vertical-rl;
}
.character-profile-card {
  position: relative;
  margin-left: auto;
  width: min(53%, 820px);
  min-height: 670px;
  padding: 58px 5vw 44px 4.5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #382828;
}
.character-profile-titleline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.character-page-kicker {
  display: block;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #9e7770;
  margin-bottom: 6px;
}
.character-profile-card h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 600;
  line-height: 1;
  margin: 0;
  color: var(--red);
  letter-spacing: 0.08em;
}
.character-motif {
  font-size: 52px;
  line-height: 1;
  color: #e7a17d;
  opacity: 0.75;
  font-family: var(--serif);
}
.character-name-line {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 18px 0 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}
.character-name-line strong {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--red);
}
.character-name-line span {
  font-family: var(--serif);
  font-size: 20px;
  color: #4c3734;
}
.character-facts {
  margin: 0 0 22px;
  display: grid;
  gap: 7px;
}
.character-facts > div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 13px;
  align-items: start;
}
.character-facts dt {
  font-size: 12px;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.08em;
}
.character-facts dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 13px;
  line-height: 1.65;
  color: #4f3a37;
}
.character-facts dd small {
  display: block;
  margin-top: 3px;
  color: #a05a50;
  font-family: var(--sans);
  font-size: 10px;
}
.profile-copy-block {
  margin-top: 15px;
  padding-left: 17px;
  border-left: 2px solid #e9b1a8;
}
.profile-copy-block h2 {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--red);
  margin: 0 0 8px;
}
.profile-copy-block p {
  font-family: var(--serif);
  font-size: 12px;
  line-height: 1.95;
  color: #5d4946;
  margin: 0 0 5px;
}
.short-block p {
  font-size: 13px;
  line-height: 1.85;
}
.character-page-shell {
  width: min(1380px, 93%);
  margin: 0 auto 70px;
}
.main-character-selector,
.other-character-section {
  padding: 32px 0 0;
}
.character-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 15px;
}
.character-section-head h2 {
  font-family: var(--serif);
  font-size: 30px;
  color: #9f161e;
  margin: 0;
  letter-spacing: 0.05em;
}
.character-section-head h2 small {
  font-family: var(--sans);
  font-size: 12px;
  color: #6f5754;
  margin-left: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.character-section-head p,
.character-section-head span {
  font-size: 11px;
  color: #967f7b;
  margin: 0;
}
.character-selector-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.character-selector-card {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr 26px;
  align-items: center;
  min-width: 0;
  height: 136px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(128, 49, 49, 0.04);
  transition: 0.2s ease;
}
.character-selector-card:hover {
  transform: translateY(-2px);
  border-color: #d36e67;
  box-shadow: 0 12px 26px rgba(128, 49, 49, 0.08);
}
.character-selector-card.active {
  border: 2px solid var(--red);
  background: linear-gradient(90deg, #fff, #fff7f4);
}
.selector-portrait {
  height: 100%;
  overflow: hidden;
  background: #f5efed;
}
.selector-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.selector-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
  padding: 10px 8px 10px 13px;
  min-width: 0;
}
.selector-copy b {
  font-family: var(--serif);
  font-size: 19px;
  color: #4f302e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.selector-copy em {
  font-family: var(--display);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--red);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.selector-copy small {
  font-size: 11px;
  color: #826d68;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.selector-arrow {
  font-size: 19px;
  color: var(--red);
  padding-right: 8px;
}
.other-character-section {
  margin-top: 18px;
  border-top: 1px solid #f0ddd9;
}
.other-head {
  align-items: center;
}
.other-character-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.other-character-card {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 10px 12px;
  border: 1px solid #efd7d2;
  border-radius: 10px;
  background: #fff;
}
.other-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fff6f2, #f7ece8);
  color: #d6aaa1;
  font-family: var(--serif);
  font-size: 24px;
}
.other-character-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 14px;
  color: #4d3532;
}
.other-character-card small {
  display: block;
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.09em;
  color: #a1837d;
  margin-top: 3px;
}
.other-coming {
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.08em;
  color: #c89d95;
  border: 1px solid #ecd1cc;
  border-radius: 999px;
  padding: 5px 7px;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .character-feature {
    min-height: 720px;
  }
  .character-profile-card {
    width: 58%;
    min-height: 720px;
    padding-right: 3.5vw;
  }
  .character-selector-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .other-character-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 820px) {
  .character-feature {
    min-height: auto;
    padding-top: 56vw;
    background: #fff;
  }
  .character-feature-image {
    height: 58vw;
    bottom: auto;
    background-size: cover;
    background-position: center !important;
  }
  .character-feature-fade {
    height: 61vw;
    bottom: auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 55%, #fff 100%);
  }
  .character-image-switch {
    left: 50%;
    transform: translateX(-50%);
    bottom: auto;
    top: calc(56vw - 38px);
  }
  .character-feature-image.portrait-mode {
    background-size: auto calc(58vw - 12px) !important;
    background-position: center center !important;
  }
  .character-side-slogan {
    display: none;
  }
  .character-profile-card {
    width: 100%;
    min-height: 0;
    padding: 28px 6vw 38px;
    background: #fff;
  }
  .character-profile-card h1 {
    font-size: 48px;
  }
  .character-motif {
    font-size: 40px;
  }
  .character-name-line {
    flex-wrap: wrap;
  }
  .character-selector-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .other-character-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .character-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}
@media (max-width: 560px) {
  .character-feature {
    padding-top: 72vw;
  }
  .character-feature-image {
    height: 76vw;
  }
  .character-feature-fade {
    height: 79vw;
  }
  .character-image-switch {
    top: calc(72vw - 38px);
  }
  .character-feature-image.portrait-mode {
    background-size: auto calc(76vw - 12px) !important;
  }
  .character-profile-card {
    padding-top: 18px;
  }
  .character-profile-card h1 {
    font-size: 40px;
  }
  .character-name-line {
    gap: 8px;
    margin-top: 12px;
  }
  .character-name-line span {
    width: 100%;
    font-size: 17px;
  }
  .character-facts > div {
    grid-template-columns: 60px 1fr;
  }
  .character-selector-grid {
    grid-template-columns: 1fr;
  }
  .character-selector-card {
    height: 118px;
    grid-template-columns: 84px 1fr 28px;
  }
  .other-character-grid {
    grid-template-columns: 1fr;
  }
}

/* Special page ------------------------------------------------------------ */
.special-page {
  background: #fffdfb;
}
.special-subpage-header {
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(197, 31, 40, 0.08),
      transparent 24%
    ),
    radial-gradient(
      circle at 82% 25%,
      rgba(240, 142, 75, 0.13),
      transparent 23%
    ),
    linear-gradient(180deg, #fff, #fff8f5);
}
.special-access-guide {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.special-access-guide small {
  font-size: 10px;
  color: #8d7470;
  margin-right: 8px;
}
.special-access {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.09em;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 3px 8px rgba(75, 34, 30, 0.07);
}
.access-public {
  background: #fff;
  color: #a31c24;
  border: 1px solid #d97570;
}
.access-free {
  background: #fff0df;
  color: #a35414;
  border: 1px solid #e7b57f;
}
.access-members {
  background: linear-gradient(180deg, #cf2933, #a90f18);
  color: #fff;
  border: 1px solid #a90f18;
}
.special-page-shell {
  width: min(1320px, 92%);
  margin: 34px auto 70px;
}
.special-section {
  scroll-margin-top: 100px;
}
.special-section + .special-section {
  margin-top: 46px;
  padding-top: 36px;
  border-top: 1px solid #f0d8d4;
}
.special-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 18px;
}
.special-section-head > div > span {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: #aa7a73;
}
.special-section-head h2 {
  font-family: var(--serif);
  font-size: 32px;
  color: #9f161e;
  letter-spacing: 0.04em;
  margin: 3px 0 0;
}
.special-section-head h2 small {
  font-family: var(--sans);
  font-size: 12px;
  color: #7d6662;
  font-weight: 500;
  margin-left: 8px;
}
.special-section-head p {
  margin: 0;
  color: #967e79;
  font-size: 11px;
}
.special-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.special-video-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.2s ease;
}
.special-video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(108, 34, 34, 0.11);
}
.special-video-thumb {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #221413;
}
.special-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.28s ease;
}
.special-video-card:hover .special-video-thumb img {
  transform: scale(1.015);
}
.special-video-thumb:after,
.special-short-thumb:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(32, 12, 12, 0.25));
  pointer-events: none;
}
.special-play-mark {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 3;
  width: 42px;
  height: 32px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  padding-left: 2px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  box-shadow: 0 6px 16px rgba(78, 12, 15, 0.22);
}
.special-video-thumb .special-access {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 3;
}
.special-card-copy {
  padding: 18px 20px 20px;
}
.special-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 9px;
}
.special-card-meta > span {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.13em;
  color: var(--red);
  font-weight: 700;
}
.special-card-meta small {
  font-size: 9px;
  color: #9a7d77;
  text-align: right;
}
.special-card-copy h2 {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.7;
  color: #493331;
  margin: 0 0 15px;
  font-weight: 600;
}
.special-card-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f0d8d4;
  padding-top: 13px;
  color: var(--red);
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.special-short-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.special-short-card {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(108, 34, 34, 0.06);
  transition: 0.2s ease;
}
.special-short-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(108, 34, 34, 0.1);
}
.special-short-thumb {
  position: relative;
  display: block;
  aspect-ratio: 9/16;
  background: #241817;
  overflow: hidden;
}
.special-short-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.28s ease;
}
.special-short-card:hover .special-short-thumb img {
  transform: scale(1.015);
}
.special-short-thumb .special-access {
  position: absolute;
  left: 9px;
  top: 9px;
  z-index: 3;
  font-size: 8px;
  padding: 5px 7px;
}
.short-play {
  left: auto;
  right: 10px;
  bottom: 10px;
  width: 34px;
  height: 27px;
  font-size: 11px;
}
.special-short-copy {
  padding: 13px 13px 15px;
}
.special-short-category {
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--red);
  font-weight: 700;
}
.special-short-copy h3 {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.65;
  color: #4b3431;
  margin: 5px 0 8px;
}
.special-short-copy small {
  display: block;
  color: #967c76;
  font-size: 9px;
  min-height: 18px;
}
.special-short-copy > a {
  display: block;
  margin-top: 10px;
  padding-top: 9px;
  border-top: 1px solid #f0d8d4;
  color: var(--red);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.07em;
  font-weight: 700;
}
.special-patreon-cta {
  margin-top: 46px;
  border: 1px solid #e4a39e;
  border-radius: 14px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  background: linear-gradient(120deg, #fff, #fff3ef);
  box-shadow: var(--shadow);
}
.special-patreon-cta > div > span {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--red);
  font-weight: 700;
}
.special-patreon-cta h2 {
  font-family: var(--serif);
  font-size: 25px;
  color: #6f2024;
  margin: 4px 0 8px;
}
.special-patreon-cta p {
  margin: 0;
  color: #765d58;
  font-size: 11px;
  line-height: 1.8;
}
.special-patreon-cta > a {
  background: linear-gradient(180deg, #d82b35, #ad111b);
  color: #fff;
  border-radius: 999px;
  padding: 14px 24px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
  box-shadow: 0 7px 16px rgba(174, 20, 29, 0.18);
}
@media (max-width: 1000px) {
  .special-short-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 820px) {
  .special-page-shell {
    width: 94%;
    margin-top: 24px;
  }
  .special-video-grid {
    grid-template-columns: 1fr;
  }
  .special-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .special-patreon-cta {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .special-patreon-cta > a {
    justify-self: start;
  }
}
@media (max-width: 560px) {
  .special-short-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
  }
  .special-short-copy {
    padding: 10px 10px 12px;
  }
  .special-short-copy h3 {
    font-size: 13px;
  }
  .special-card-copy h2 {
    font-size: 16px;
  }
  .special-access-guide {
    justify-content: flex-start;
  }
  .special-access-guide small {
    width: calc(100% - 120px);
    margin-right: 0;
  }
}

/* Music page -------------------------------------------------------------- */
.music-page {
  background: #fffdfb;
}
.music-subpage-header {
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(197, 31, 40, 0.07),
      transparent 24%
    ),
    radial-gradient(
      circle at 82% 25%,
      rgba(240, 142, 75, 0.12),
      transparent 23%
    ),
    linear-gradient(180deg, #fff, #fff8f5);
}
.music-page-shell {
  width: min(1320px, 92%);
  margin: 34px auto 70px;
}
.music-section + .music-section {
  margin-top: 48px;
  padding-top: 38px;
  border-top: 1px solid #f0d8d4;
}
.music-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 18px;
}
.music-section-head > div > span {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: #aa7a73;
}
.music-section-head h2 {
  font-family: var(--serif);
  font-size: 32px;
  color: #9f161e;
  letter-spacing: 0.04em;
  margin: 3px 0 0;
}
.music-section-head h2 small {
  font-family: var(--sans);
  font-size: 12px;
  color: #7d6662;
  font-weight: 500;
  margin-left: 8px;
}
.music-section-head p {
  margin: 0;
  color: #967e79;
  font-size: 11px;
}
.music-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.music-video-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.2s ease;
}
.music-video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(108, 34, 34, 0.11);
}
.music-video-art {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #1d1313;
}
.music-video-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.28s ease;
}
.music-video-card:hover .music-video-art img {
  transform: scale(1.015);
}
.music-video-art:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(28, 10, 10, 0.28));
  pointer-events: none;
}
.music-status {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.09em;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 3px 8px rgba(75, 34, 30, 0.08);
}
.music-public {
  background: #fff;
  color: #a31c24;
  border: 1px solid #d97570;
}
.music-coming {
  background: linear-gradient(180deg, #e79d58, #cc6e25);
  color: #fff;
  border: 1px solid #c56c28;
}
.music-play-mark {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 3;
  width: 42px;
  height: 32px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  padding-left: 2px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  box-shadow: 0 6px 16px rgba(78, 12, 15, 0.22);
}
.music-card-copy {
  padding: 18px 20px 20px;
}
.music-type {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.13em;
  color: var(--red);
  font-weight: 700;
}
.music-card-copy h2 {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.7;
  color: #493331;
  margin: 7px 0 15px;
  font-weight: 600;
}
.music-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f0d8d4;
  padding-top: 13px;
}
.music-card-footer small {
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: #9a7d77;
}
.music-card-footer a {
  color: var(--red);
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.music-ost-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.music-album-card {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 32px;
  align-items: center;
  background: linear-gradient(120deg, #fff, #fff8f4);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.music-album-art {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1;
  background: #261717;
  box-shadow: 0 12px 28px rgba(73, 30, 28, 0.12);
}
.music-album-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.music-album-copy {
  padding: 10px 18px 10px 0;
}
.music-album-copy h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.5;
  color: #632126;
  margin: 8px 0 13px;
  font-weight: 600;
}
.music-album-copy p {
  max-width: 720px;
  margin: 0 0 20px;
  color: #765d58;
  font-size: 12px;
  line-height: 1.9;
}
.music-album-action {
  display: inline-flex;
  border-radius: 999px;
  padding: 11px 18px;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.music-album-action.is-disabled {
  color: #a78982;
  background: #f3e8e4;
  border: 1px solid #ead5cf;
  cursor: default;
}
@media (max-width: 820px) {
  .music-page-shell {
    width: 94%;
    margin-top: 24px;
  }
  .music-video-grid {
    grid-template-columns: 1fr;
  }
  .music-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .music-album-card {
    grid-template-columns: minmax(180px, 280px) 1fr;
    gap: 20px;
  }
}
@media (max-width: 620px) {
  .music-album-card {
    grid-template-columns: 1fr;
    padding: 14px;
  }
  .music-album-copy {
    padding: 4px 5px 8px;
  }
  .music-album-copy h2 {
    font-size: 24px;
  }
}

.album-placeholder.album-art-real {
  overflow: hidden;
  background: #171313;
}
.album-placeholder.album-art-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* v9: NEWS archive */
.news-page {
  background: #fffdfb;
}
.news-page-shell {
  width: min(1180px, 90%);
  margin: 34px auto 78px;
}
.news-archive-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4px 12px;
  border-bottom: 1px solid var(--line);
}
.news-archive-head > span {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--red);
  font-weight: 600;
}
.news-archive-head > small {
  font-size: 10px;
  color: #99827e;
}
.news-archive {
  border-bottom: 1px solid var(--line);
}
.news-archive-row {
  display: grid;
  grid-template-columns: 105px 88px minmax(0, 1fr) 110px 20px;
  gap: 18px;
  align-items: center;
  padding: 22px 4px;
  border-bottom: 1px solid #f1ddda;
  transition:
    background 0.18s ease,
    padding 0.18s ease;
}
.news-archive-row:last-child {
  border-bottom: 0;
}
.news-archive-row:hover {
  background: #fff7f4;
  padding-left: 12px;
  padding-right: 12px;
}
.news-archive-row time {
  font-family: var(--serif);
  font-size: 12px;
  color: #7e6561;
  white-space: nowrap;
}
.news-platform,
.news-access {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-width: 74px;
  border-radius: 999px;
  padding: 6px 9px;
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.08em;
  font-weight: 600;
  white-space: nowrap;
}
.news-platform-patreon {
  background: #fff0ed;
  color: #b33b2e;
  border: 1px solid #efc3bb;
}
.news-platform-youtube {
  background: #fff0f1;
  color: #b6151d;
  border: 1px solid #efc4c7;
}
.news-archive-row strong {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
  color: #3d2d2b;
}
.news-access-public {
  color: #8b6b65;
  border: 1px solid #e7cbc7;
  background: #fff;
}
.news-access-free {
  color: #fff;
  background: var(--red);
  border: 1px solid var(--red);
}
.news-arrow {
  color: var(--red);
  font-size: 16px;
  text-align: right;
}
.news-preview-platform.patreon {
  background: #b33b2e;
}
.news-preview-platform.youtube {
  background: #d71820;
}
@media (max-width: 820px) {
  .news-page-shell {
    width: 94%;
    margin-top: 24px;
  }
  .news-archive-row {
    grid-template-columns: 88px 76px 1fr 18px;
    gap: 10px;
    padding: 17px 4px;
  }
  .news-archive-row .news-access {
    grid-column: 3;
    grid-row: 2;
    min-width: 0;
  }
  .news-arrow {
    grid-column: 4;
    grid-row: 1/3;
  }
  .news-archive-row strong {
    font-size: 13px;
  }
}
@media (max-width: 520px) {
  .news-archive-row {
    grid-template-columns: 76px 1fr 18px;
    gap: 8px 10px;
  }
  .news-archive-row time {
    font-size: 10px;
  }
  .news-platform {
    grid-column: 2;
    width: max-content;
  }
  .news-archive-row strong {
    grid-column: 1/3;
    font-size: 12px;
  }
  .news-archive-row .news-access {
    grid-column: 1/3;
    grid-row: auto;
  }
  .news-arrow {
    grid-column: 3;
    grid-row: 1/4;
    align-self: center;
  }
}

/* Story page -------------------------------------------------------------- */
.story-page {
  background: #fffdfb;
}
.story-subpage-header {
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(197, 31, 40, 0.07),
      transparent 24%
    ),
    radial-gradient(
      circle at 82% 25%,
      rgba(240, 142, 75, 0.12),
      transparent 23%
    ),
    linear-gradient(180deg, #fff, #fff8f5);
}
.story-page-shell {
  width: min(1320px, 92%);
  margin: 34px auto 74px;
}
.story-hero-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}
.story-hero-card img {
  width: 100%;
  aspect-ratio: 7/3;
  object-fit: cover;
  object-position: center 48%;
}
.story-hero-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 17px 22px;
  border-top: 1px solid #f0d8d4;
  background: linear-gradient(90deg, #fff, #fff8f4);
}
.story-hero-caption span {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.17em;
  color: var(--red);
  font-weight: 700;
}
.story-hero-caption strong {
  font-family: var(--serif);
  font-size: 15px;
  color: #5b3936;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.story-copy-card {
  width: min(940px, 92%);
  margin: 32px auto 0;
  padding: 34px 42px 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: var(--shadow);
}
.story-copy-card .story-kicker,
.story-side-copy .story-kicker {
  display: block;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.17em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 8px;
}
.story-copy-card h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  color: #702126;
  line-height: 1.6;
  margin: 0 0 18px;
  font-weight: 600;
}
.story-copy-card p,
.story-side-copy p {
  font-family: var(--serif);
  font-size: 13px;
  line-height: 2.05;
  color: #5f4a47;
  margin: 0 0 15px;
}
.story-split {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 34px;
}
.story-secondary-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  min-height: 520px;
}
.story-secondary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
.story-side-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 34px;
  background: linear-gradient(145deg, #fff, #fff7f3);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.story-side-copy h2 {
  font-family: var(--serif);
  font-size: clamp(23px, 2.5vw, 32px);
  color: #702126;
  line-height: 1.55;
  margin: 0 0 17px;
  font-weight: 600;
}
.story-final-line {
  margin-top: 34px;
  padding: 38px 24px;
  text-align: center;
  border-top: 1px solid #efc7c2;
  border-bottom: 1px solid #efc7c2;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    #fff5ef 28%,
    #fff5ef 72%,
    rgba(255, 255, 255, 0)
  );
}
.story-final-line span {
  display: block;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #b27c73;
  margin-bottom: 7px;
}
.story-final-line strong {
  font-family: var(--serif);
  font-size: clamp(27px, 4vw, 46px);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--red);
}
@media (max-width: 900px) {
  .story-split {
    grid-template-columns: 1fr;
  }
  .story-secondary-image {
    min-height: 0;
  }
  .story-secondary-image img {
    aspect-ratio: 16/9;
    height: auto;
  }
}
@media (max-width: 560px) {
  .story-page-shell {
    width: 94%;
    margin-top: 24px;
  }
  .story-hero-card img {
    aspect-ratio: 16/9;
  }
  .story-hero-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding: 14px 16px;
  }
  .story-copy-card {
    width: 100%;
    padding: 25px 21px 27px;
  }
  .story-side-copy {
    padding: 25px 21px;
  }
  .story-copy-card p,
  .story-side-copy p {
    font-size: 12px;
    line-height: 1.95;
  }
}

/* ABOUT */
.about-hero {
  width: min(1450px, 94%);
  margin: 28px auto 16px;
  border-radius: 16px;
  background: linear-gradient(120deg, #fff4ef, #fff 46%, #ffe8d2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.about-hero:after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  right: -65px;
  top: -90px;
  background: radial-gradient(
    circle,
    rgba(216, 28, 39, 0.13),
    rgba(244, 140, 55, 0.04) 52%,
    transparent 70%
  );
}
.about-hero-inner {
  padding: 56px 62px;
  position: relative;
  z-index: 1;
}
.about-kicker,
.about-section-en {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--red);
}
.about-hero h1 {
  font-family: var(--serif);
  font-size: 38px;
  margin: 8px 0 14px;
}
.about-tagline {
  font-family: var(--serif);
  font-size: 22px;
  margin: 0;
  color: #6e4c45;
}
.about-shell {
  display: grid;
  gap: 16px;
}
.about-section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 30px 38px;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 34px;
  align-items: center;
}
.about-section-lead {
  padding-top: 38px;
  padding-bottom: 38px;
}
.about-icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-icon-wrap img {
  width: 142px;
  height: 142px;
  object-fit: contain;
}
.about-copy {
  max-width: 920px;
}
.about-copy h2 {
  font-family: var(--serif);
  font-size: 27px;
  margin: 5px 0 20px;
}
.about-copy p {
  font-size: 13px;
  line-height: 2;
  margin: 0 0 13px;
  color: #564946;
}
.creator-section .about-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 30px;
  color: #452f2b;
}
.creator-jp {
  font-weight: 600;
}
.about-links-section,
.contact-section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 28px 34px;
}
.official-link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.official-link-grid a {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 14px;
  align-items: center;
  background: linear-gradient(90deg, #fff, #fffaf8);
  transition: 0.2s ease;
}
.official-link-grid a:hover {
  transform: translateY(-2px);
  border-color: #e5b7ad;
  box-shadow: 0 8px 20px rgba(100, 35, 35, 0.08);
}
.official-link-grid span {
  grid-column: 1;
  font-size: 9px;
  color: var(--red);
  letter-spacing: 0.12em;
  font-weight: 700;
}
.official-link-grid strong {
  grid-column: 1;
  font-size: 13px;
}
.official-link-grid b {
  grid-column: 2;
  grid-row: 1/3;
  color: var(--red);
  font-size: 18px;
}
.contact-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 36px;
  align-items: start;
}
.contact-heading h2 {
  font-family: var(--serif);
  font-size: 30px;
  margin: 6px 0 14px;
}
.contact-heading p {
  font-size: 12px;
  line-height: 1.9;
  color: #62524e;
}
.contact-form {
  display: grid;
  gap: 16px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
  color: #554843;
}
.contact-form label em {
  font-style: normal;
  color: var(--red);
  font-size: 9px;
}
.contact-form label span {
  font-size: 9px;
  color: #897873;
  font-weight: 500;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dec8c3;
  background: #fffdfc;
  border-radius: 8px;
  padding: 12px 13px;
  font: inherit;
  color: #3b302d;
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196, 28, 40, 0.07);
}
.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}
.message-field {
  display: grid;
}
.form-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.form-foot p {
  margin: 0;
  font-size: 9px;
  color: #897873;
}
.contact-submit {
  border: 0;
  background: linear-gradient(105deg, #a80813, #d52029);
  color: #fff;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(166, 8, 19, 0.2);
}
.contact-submit span {
  color: #fff;
}
.contact-status {
  font-size: 10px;
  margin: 0;
  min-height: 1.5em;
  color: #745e58;
}
.contact-status.error {
  color: var(--red);
}
.contact-status.ok {
  color: #2d6a4f;
}
@media (max-width: 900px) {
  .about-section {
    grid-template-columns: 130px 1fr;
    padding: 24px;
  }
  .about-icon-wrap img {
    width: 110px;
    height: 110px;
  }
  .contact-section {
    grid-template-columns: 1fr;
  }
  .about-hero-inner {
    padding: 42px 36px;
  }
}
@media (max-width: 650px) {
  .about-hero {
    width: 94%;
    margin-top: 16px;
  }
  .about-hero-inner {
    padding: 32px 22px;
  }
  .about-hero h1 {
    font-size: 28px;
  }
  .about-tagline {
    font-size: 17px;
  }
  .about-section {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px;
  }
  .about-icon-wrap {
    justify-content: flex-start;
  }
  .about-icon-wrap img {
    width: 92px;
    height: 92px;
  }
  .about-copy h2 {
    font-size: 23px;
  }
  .official-link-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .about-links-section,
  .contact-section {
    padding: 22px;
  }
  .form-foot {
    align-items: flex-start;
    flex-direction: column;
  }
  .contact-submit {
    width: 100%;
  }
}

/* v14: responsive hero asset + Episode 7 trailer thumbnail */
.hero-picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-picture .hero-image {
  display: block;
  width: 100%;
  height: 100%;
}
.trailer-thumb-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 8, 7, 0.02),
    rgba(20, 8, 7, 0.08)
  );
  pointer-events: none;
}
