@font-face {
  font-family: "Cinzel";
  src: url("/assets/fonts/cinzel-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Cinzel";
  src: url("/assets/fonts/cinzel-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/cormorant-garamond-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/cormorant-garamond-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --black: #050404;
  --charcoal: #0b0b0d;
  --panel: rgba(8, 8, 10, 0.84);
  --panel-deep: rgba(2, 2, 3, 0.94);
  --gold-light: #f4d18a;
  --gold: #c9974d;
  --gold-deep: #7a4a1e;
  --bronze: #9a6230;
  --ivory: #ead6aa;
  --muted-gold: #b78b52;
  --burgundy: #4b0714;
  --deep-red: #2a0309;
  --text: rgba(234, 214, 170, 0.9);
  --text-soft: rgba(234, 214, 170, 0.76);
  --line: rgba(201, 151, 77, 0.5);
  --line-soft: rgba(201, 151, 77, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 151, 77, 0.08), transparent 26%),
    radial-gradient(circle at 18% 100%, rgba(75, 7, 20, 0.18), transparent 32%),
    linear-gradient(180deg, #020202 0%, #090709 42%, #040304 100%);
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  padding: 0;
}

.site-stage {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  position: relative;
}

.hero-stage {
  position: relative;
  aspect-ratio: 1672 / 941;
  min-height: 0;
  height: auto;
  overflow: hidden;
  background: #030304;
  border: 0;
  box-shadow:
    0 26px 120px rgba(0, 0, 0, 0.68),
    inset 0 0 0 1px rgba(244, 209, 138, 0.06);
}

.hero-stage::before {
  content: none;
}

.hero-slideshow,
.stage-vignette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slideshow {
  z-index: 0;
  overflow: hidden;
  background: #030304;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  opacity: 0;
  filter: saturate(1.03);
  transform: scale(1.02);
  transition:
    opacity 1100ms ease,
    transform 5200ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: clamp(42px, 3vw, 58px);
  height: clamp(58px, 4vw, 76px);
  transform: translateY(-50%);
  border: 1px solid rgba(244, 209, 138, 0.5);
  background:
    linear-gradient(180deg, rgba(34, 10, 12, 0.82), rgba(5, 4, 5, 0.88)),
    radial-gradient(circle at 50% 0%, rgba(244, 209, 138, 0.2), transparent 58%);
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: clamp(2.4rem, 3vw, 3.5rem);
  line-height: 1;
  text-shadow: 0 8px 16px rgba(0, 0, 0, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(244, 209, 138, 0.18),
    0 16px 30px rgba(0, 0, 0, 0.32);
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  border-color: rgba(244, 209, 138, 0.82);
  background:
    linear-gradient(180deg, rgba(60, 16, 18, 0.92), rgba(8, 7, 9, 0.96)),
    radial-gradient(circle at 50% 0%, rgba(244, 209, 138, 0.28), transparent 58%);
}

.hero-arrow-prev {
  left: clamp(16px, 2vw, 42px);
  clip-path: polygon(0 14%, 18% 0, 100% 0, 100% 100%, 18% 100%, 0 86%);
}

.hero-arrow-next {
  right: clamp(16px, 2vw, 42px);
  clip-path: polygon(0 0, 82% 0, 100% 14%, 100% 86%, 82% 100%, 0 100%);
}

.hero-dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: clamp(18px, 1.8vw, 34px);
  display: flex;
  gap: clamp(8px, 0.58vw, 12px);
  transform: translateX(-50%);
  padding: 10px 14px;
  border: 1px solid rgba(244, 209, 138, 0.24);
  border-radius: 999px;
  background: rgba(2, 2, 3, 0.48);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
}

.hero-dot {
  width: clamp(9px, 0.7vw, 13px);
  height: clamp(9px, 0.7vw, 13px);
  padding: 0;
  border: 1px solid rgba(244, 209, 138, 0.54);
  border-radius: 50%;
  background: rgba(5, 4, 5, 0.78);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.38);
}

.hero-dot.is-active,
.hero-dot:hover,
.hero-dot:focus-visible {
  background: var(--gold-light);
  box-shadow:
    0 0 14px rgba(244, 209, 138, 0.62),
    inset 0 0 0 1px rgba(122, 74, 30, 0.5);
}

.mobile-hero-slideshow {
  display: none;
  position: relative;
  width: 100vw;
  min-height: 100svh;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
  background: #030304;
}

.mobile-hero-slides,
.mobile-hero-slide,
.mobile-hero-slide picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mobile-hero-slide {
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 900ms ease,
    transform 5200ms ease;
}

.mobile-hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.mobile-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.03);
}

.mobile-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.16) 18%, rgba(0, 0, 0, 0.12) 58%, rgba(0, 0, 0, 0.72) 100%);
}

.mobile-hero-header {
  top: 10px;
  left: 8px;
  right: 8px;
  z-index: 6;
  display: block;
}

.mobile-hero-header .hamburger {
  display: none;
}

.mobile-hero-header .nav-links {
  display: contents;
}

.mobile-hero-arrow {
  position: absolute;
  z-index: 6;
  top: 50%;
  width: clamp(40px, 12vw, 52px);
  height: clamp(56px, 15vw, 72px);
  transform: translateY(-50%);
  border: 1px solid rgba(244, 209, 138, 0.5);
  background:
    linear-gradient(180deg, rgba(34, 10, 12, 0.82), rgba(5, 4, 5, 0.88)),
    radial-gradient(circle at 50% 0%, rgba(244, 209, 138, 0.2), transparent 58%);
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: clamp(2rem, 8vw, 2.8rem);
  line-height: 1;
  text-shadow: 0 8px 16px rgba(0, 0, 0, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(244, 209, 138, 0.18),
    0 16px 30px rgba(0, 0, 0, 0.32);
}

.mobile-hero-arrow:hover,
.mobile-hero-arrow:focus-visible {
  border-color: rgba(244, 209, 138, 0.82);
  background:
    linear-gradient(180deg, rgba(60, 16, 18, 0.92), rgba(8, 7, 9, 0.96)),
    radial-gradient(circle at 50% 0%, rgba(244, 209, 138, 0.28), transparent 58%);
}

.mobile-hero-arrow-prev {
  left: 14px;
  clip-path: polygon(0 14%, 18% 0, 100% 0, 100% 100%, 18% 100%, 0 86%);
}

.mobile-hero-arrow-next {
  right: 14px;
  clip-path: polygon(0 0, 82% 0, 100% 14%, 100% 86%, 82% 100%, 0 100%);
}

.mobile-hero-dots {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 20px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
  padding: 10px 14px;
  border: 1px solid rgba(244, 209, 138, 0.24);
  border-radius: 999px;
  background: rgba(2, 2, 3, 0.48);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
}

.mobile-hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(244, 209, 138, 0.54);
  border-radius: 50%;
  background: rgba(5, 4, 5, 0.78);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.38);
}

.mobile-hero-dot.is-active,
.mobile-hero-dot:hover,
.mobile-hero-dot:focus-visible {
  background: var(--gold-light);
  box-shadow:
    0 0 14px rgba(244, 209, 138, 0.62),
    inset 0 0 0 1px rgba(122, 74, 30, 0.5);
}

@media (min-width: 768px) {
  .mobile-hero-slideshow {
    display: none;
  }

  .books-panel {
    order: 5;
  }

  .alana-panel {
    order: 6;
  }
}

.stage-frame {
  display: none;
}

.stage-vignette {
  z-index: 2;
  pointer-events: none;
  background: none;
}

.stage-header,
.hero-layer {
  position: absolute;
  z-index: 4;
}

.stage-header {
  top: 2.8%;
  left: 4.8%;
  right: 4.8%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.main-nav {
  width: min(74%, 1120px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: start;
  gap: clamp(18px, 1.5vw, 34px);
}

.nav-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 1.8vw, 42px);
}

.nav-link {
  position: relative;
  color: var(--ivory);
  font-family: "Cinzel", "Cormorant Garamond", serif;
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.64);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: #fff1cb;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.95vw;
  width: clamp(36px, 4.3vw, 82px);
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  box-shadow: 0 0 16px rgba(244, 209, 138, 0.58);
}

.nav-crest {
  width: clamp(34px, 3vw, 68px);
  height: clamp(18px, 1.5vw, 30px);
  display: flex;
  align-items: flex-start;
  justify-self: center;
  margin-top: -0.35vw;
  overflow: hidden;
}

.nav-crest img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.7));
}

.social-links {
  position: absolute;
  top: -0.1vw;
  right: 0;
  display: flex;
  gap: clamp(10px, 0.7vw, 16px);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(28px, 2vw, 38px);
  min-height: clamp(28px, 2vw, 38px);
  padding: 0 8px;
  border: 1px solid rgba(244, 209, 138, 0.18);
  border-radius: 999px;
  background: rgba(8, 7, 10, 0.44);
  color: var(--gold-light);
  font-family: "Cinzel", serif;
  font-size: clamp(0.66rem, 0.74vw, 0.82rem);
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 0 1px rgba(244, 209, 138, 0.05);
}

.social-links a:hover,
.social-links a:focus-visible {
  background: rgba(28, 10, 12, 0.8);
  border-color: rgba(244, 209, 138, 0.42);
}

.hero-layer {
  top: 9.4%;
  left: 6.3%;
  right: 6.3%;
  bottom: 35.2%;
}

.mobile-scene-card {
  display: none;
}

.cover-wrap {
  position: absolute;
  top: 7.8%;
  left: 9%;
  width: 20.8%;
  max-width: 396px;
  margin: 0;
  overflow: hidden;
  filter:
    drop-shadow(0 24px 34px rgba(0, 0, 0, 0.78))
    drop-shadow(0 0 28px rgba(154, 98, 48, 0.18));
}

.cover-wrap::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 10%;
  bottom: -4.8%;
  height: 8%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6), transparent 72%);
  transform: scaleX(1.08);
}

.book-cover {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  transform: scale(1.08);
  transform-origin: center center;
  mix-blend-mode: multiply;
  filter: saturate(1.04) contrast(1.04);
}

.title-lockup {
  position: absolute;
  top: 8.2%;
  left: 33.2%;
  width: 35.8%;
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.title-art {
  width: 100%;
  height: auto;
  filter:
    brightness(1.09)
    saturate(1.08)
    drop-shadow(0 18px 28px rgba(0, 0, 0, 0.86))
    drop-shadow(0 0 24px rgba(244, 209, 138, 0.26));
}

.hero-tagline {
  margin: clamp(10px, 1.2vw, 18px) 0 0;
  color: var(--ivory);
  font-family: "Cinzel", "Cormorant Garamond", serif;
  font-size: clamp(1rem, 1.18vw, 1.42rem);
  line-height: 1.32;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-shadow: 0 10px 18px rgba(0, 0, 0, 0.72);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 1.2vw, 22px);
  margin-top: clamp(16px, 1.7vw, 26px);
}

.fantasy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42em;
  min-width: clamp(192px, 11.5vw, 250px);
  min-height: clamp(48px, 3.5vw, 60px);
  padding: 0 clamp(18px, 1.2vw, 28px);
  border: 1px solid rgba(244, 209, 138, 0.5);
  background:
    linear-gradient(180deg, rgba(34, 10, 12, 0.96), rgba(9, 8, 10, 0.98)),
    linear-gradient(180deg, rgba(199, 151, 77, 0.22), rgba(122, 74, 30, 0.08));
  color: var(--ivory);
  clip-path: polygon(0 14%, 8% 0, 92% 0, 100% 14%, 100% 86%, 92% 100%, 8% 100%, 0 86%);
  box-shadow:
    inset 0 1px 0 rgba(244, 209, 138, 0.18),
    inset 0 -8px 16px rgba(0, 0, 0, 0.44),
    0 14px 24px rgba(0, 0, 0, 0.28);
  font-family: "Cinzel", "Cormorant Garamond", serif;
  font-size: clamp(0.76rem, 0.9vw, 1rem);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-align: center;
}

.fantasy-button:hover,
.fantasy-button:focus-visible {
  color: #fff1cf;
  border-color: rgba(244, 209, 138, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(244, 209, 138, 0.24),
    inset 0 -8px 16px rgba(0, 0, 0, 0.5),
    0 16px 28px rgba(0, 0, 0, 0.32),
    0 0 18px rgba(201, 151, 77, 0.14);
}

.fantasy-button-secondary {
  background:
    linear-gradient(180deg, rgba(12, 11, 16, 0.96), rgba(6, 6, 10, 0.98)),
    linear-gradient(180deg, rgba(199, 151, 77, 0.16), rgba(122, 74, 30, 0.06));
}

.fantasy-button-solid {
  width: 100%;
  background:
    linear-gradient(180deg, #ba7f36 0%, #8f5923 50%, #72421a 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0));
  color: #fff1cf;
}

.fantasy-button-small {
  min-width: 0;
  width: fit-content;
  min-height: clamp(34px, 2.2vw, 42px);
  padding-inline: clamp(12px, 0.8vw, 18px);
  font-size: clamp(0.58rem, 0.68vw, 0.76rem);
}

.panel-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 18px;
}

.panel {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 5, 7, 0.9), rgba(9, 8, 10, 0.92)),
    radial-gradient(circle at top right, rgba(124, 63, 24, 0.08), transparent 22%);
  border: 1px solid rgba(201, 151, 77, 0.5);
  box-shadow:
    inset 0 0 0 1px rgba(244, 209, 138, 0.08),
    inset 0 -28px 42px rgba(0, 0, 0, 0.38),
    0 16px 30px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(5px);
}

.panel::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201, 151, 77, 0.18);
  pointer-events: none;
}

.panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 10%, rgba(244, 209, 138, 0.08), transparent 14%),
    radial-gradient(circle at 16% 88%, rgba(75, 7, 20, 0.22), transparent 18%);
  pointer-events: none;
}

.panel-heading-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 1vw, 18px) clamp(16px, 1.2vw, 22px) 0;
}

.panel-heading {
  margin: 0;
  color: var(--gold-light);
  font-family: "Cinzel", "Cormorant Garamond", serif;
  font-size: clamp(0.84rem, 0.98vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.64);
}

.story-panel {
  padding: 0;
}

.story-panel::before,
.characters-panel::before,
.chapter-panel::before,
.alana-panel::before,
.books-panel::before,
.circle-panel::before {
  display: none;
}

.story-panel::after,
.characters-panel::after,
.chapter-panel::after,
.alana-panel::after,
.books-panel::after,
.circle-panel::after {
  content: none;
}

.story-illustration {
  margin: 0;
  position: relative;
  z-index: 1;
  background: #000;
}

.art-panel-figure picture,
.art-panel-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.art-panel-figure img {
  object-fit: contain;
  object-position: center;
  background: #000;
}

.story-copy {
  display: none;
}

.story-cta {
  position: absolute;
  z-index: 3;
  top: 79%;
  left: 21%;
  transform: none;
  display: flex;
  width: auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  text-align: left;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.78));
}

.story-cta h2 {
  margin: 0;
  color: var(--gold-light);
  font-family: "Cinzel", "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3.5vw, 4.8rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow:
    0 3px 0 rgba(42, 19, 7, 0.72),
    0 14px 28px rgba(0, 0, 0, 0.88),
    0 0 24px rgba(244, 209, 138, 0.24);
}

.fantasy-button-story {
  min-width: clamp(220px, 15vw, 320px);
  min-height: clamp(50px, 3.9vw, 68px);
  font-size: clamp(0.92rem, 1.1vw, 1.24rem);
}

.chapter-panel {
  padding: 0;
  background: #000;
}

.chapter-illustration {
  margin: 0;
  position: relative;
  z-index: 1;
  background: #000;
}

.chapter-cta {
  position: absolute;
  z-index: 3;
  top: 56.5%;
  right: 8%;
  display: flex;
  width: min(32%, 560px);
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.8));
}

.chapter-cta h2 {
  margin: 0;
  color: var(--gold-light);
  font-family: "Cinzel", "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3.6vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow:
    0 3px 0 rgba(42, 19, 7, 0.72),
    0 14px 28px rgba(0, 0, 0, 0.88),
    0 0 24px rgba(244, 209, 138, 0.24);
}

.fantasy-button-chapter {
  min-width: clamp(204px, 14vw, 310px);
  min-height: clamp(44px, 3.4vw, 60px);
  font-size: clamp(0.76rem, 0.95vw, 1.08rem);
}

.fantasy-button-mobile-lysander {
  display: none;
}

.characters-panel {
  padding: 0;
  background: #000;
}

.characters-illustration {
  margin: 0;
  position: relative;
  z-index: 1;
  background: #000;
}

.characters-copy {
  display: none;
}

.character-cta {
  position: absolute;
  z-index: 3;
  top: 91.4%;
  display: flex;
  width: auto;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.72));
}

.character-cta-left {
  left: 14.8%;
  align-items: flex-start;
}

.character-cta-right {
  right: 18.2%;
  align-items: flex-end;
}

.character-cta h3 {
  margin: 0;
  color: var(--gold-light);
  font-family: "Cinzel", "Cormorant Garamond", serif;
  font-size: clamp(0.95rem, 1.55vw, 2.05rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow:
    0 3px 0 rgba(42, 19, 7, 0.72),
    0 12px 24px rgba(0, 0, 0, 0.86),
    0 0 20px rgba(244, 209, 138, 0.24);
}

.fantasy-button-character {
  min-width: clamp(168px, 12vw, 248px);
  min-height: clamp(36px, 2.55vw, 48px);
  font-size: clamp(0.62rem, 0.78vw, 0.9rem);
  background:
    linear-gradient(180deg, rgba(42, 12, 14, 0.94), rgba(7, 7, 10, 0.98)),
    linear-gradient(180deg, rgba(244, 209, 138, 0.18), rgba(122, 74, 30, 0.08));
}

.alana-panel,
.books-panel,
.circle-panel {
  padding: 0;
  background: #000;
}

.alana-illustration,
.books-illustration,
.circle-illustration {
  margin: 0;
  position: relative;
  z-index: 1;
  background: #000;
}

.newsletter-copy {
  display: none;
}

.alana-cta {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 15%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  width: min(24%, 360px);
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.78));
}

.fantasy-button-alana {
  min-width: clamp(180px, 13vw, 280px);
  min-height: clamp(44px, 3.4vw, 60px);
  font-size: clamp(0.76rem, 0.95vw, 1.08rem);
}

.books-cta,
.circle-cta {
  position: absolute;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.78));
}

.books-cta {
  bottom: 20%;
  width: min(22%, 330px);
  pointer-events: auto;
}

.circle-cta {
  top: 79.2%;
  width: min(28%, 430px);
}

.fantasy-button-books,
.fantasy-button-circle {
  min-height: clamp(44px, 3.4vw, 60px);
  font-size: clamp(0.76rem, 0.95vw, 1.08rem);
}

.fantasy-button-books {
  min-width: clamp(160px, 11vw, 240px);
  position: relative;
  z-index: 4;
  pointer-events: auto;
}

.fantasy-button-circle {
  min-width: clamp(240px, 18vw, 390px);
}

.newsletter-form input:focus-visible,
.fantasy-button:focus-visible,
.nav-link:focus-visible,
.social-links a:focus-visible {
  outline: 2px solid rgba(244, 209, 138, 0.76);
  outline-offset: 3px;
}

.stage-footer {
  position: relative;
  z-index: 2;
  width: min(75%, 960px);
  margin: 18px auto 0;
  text-align: center;
}

.stage-footer::before,
.stage-footer::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 209, 138, 0.54), transparent);
}

.stage-footer::before {
  left: 0;
}

.stage-footer::after {
  right: 0;
}

.stage-footer p {
  margin: 0;
  color: var(--gold-light);
  font-family: "Cinzel", serif;
  font-size: clamp(0.7rem, 0.8vw, 0.92rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-shadow: 0 10px 18px rgba(0, 0, 0, 0.64);
}

@media (max-width: 1300px) {
  .title-lockup {
    width: 36.8%;
    left: 33.8%;
  }
}

@media (max-width: 1120px) {
  .main-nav {
    width: min(80%, 980px);
  }

  .cover-wrap {
    width: 24.4%;
    left: 6.5%;
  }

  .title-lockup {
    left: 32.8%;
    width: 38%;
  }

  .panel-row {
    gap: 16px;
  }
}

@media (max-width: 767.98px) {
  .page-shell {
    padding: 8px;
  }

  .site-stage {
    padding: 0 10px 18px;
  }

  .mobile-hero-slideshow {
    display: block;
  }

  .site-stage:not(.character-page) > .hero-stage {
    display: none;
  }

  .hero-stage {
    aspect-ratio: auto;
    min-height: 0;
    overflow: visible;
    border-color: rgba(244, 209, 138, 0.18);
    background: linear-gradient(180deg, #030304 0%, #090709 100%);
    box-shadow:
      0 16px 48px rgba(0, 0, 0, 0.5),
      inset 0 0 0 1px rgba(244, 209, 138, 0.08);
  }

  .hero-stage::before,
  .hero-slideshow,
  .stage-vignette {
    display: none;
  }

  .stage-header {
    position: absolute;
    top: 10px;
    left: 8px;
    right: 8px;
    z-index: 6;
    display: block;
  }

  .main-nav {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .nav-group {
    flex-wrap: wrap;
    gap: 10px 16px;
    padding-inline: 12px;
  }

  .nav-link {
    font-size: 16px;
    letter-spacing: 0.12em;
  }

  .nav-link.active::after {
    bottom: -8px;
    width: 42px;
  }

  .nav-crest {
    display: none;
  }

  .social-links {
    position: static;
    justify-content: center;
    margin-top: 10px;
  }

  .mobile-hero-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    pointer-events: none;
  }

  .mobile-hero-header .mobile-nav {
    width: auto;
    display: block;
  }

  .mobile-hero-header .hamburger {
    display: inline-flex;
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 48px;
    padding: 10px 14px;
    border: 1px solid rgba(244, 209, 138, 0.4);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--gold-light);
    font-family: "Cinzel", "Cormorant Garamond", serif;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(10px);
    pointer-events: auto;
  }

  .mobile-hero-header .hamburger:hover,
  .mobile-hero-header .hamburger:focus-visible {
    background: rgba(12, 8, 10, 0.86);
    border-color: rgba(244, 209, 138, 0.7);
  }

  .mobile-hero-header .nav-links {
    display: none;
  }

  .mobile-hero-header .nav-links .nav-link {
    font-size: 22px;
    letter-spacing: 0.14em;
  }

  .mobile-hero-header .nav-links .nav-link.active::after {
    bottom: -10px;
    width: 54px;
  }

  .nav-mobile-open {
    overflow: hidden;
  }

  .nav-mobile-open .mobile-hero-header .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 96px 24px 40px;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9998;
    align-items: center;
    justify-content: center;
    gap: 24px;
    backdrop-filter: blur(12px);
    pointer-events: auto;
  }

  .nav-mobile-open .mobile-hero-header .hamburger {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(244, 209, 138, 0.72);
  }

  .mobile-hero-header .mobile-social-links {
    margin-top: 12px;
  }

  .hero-layer {
    position: relative;
    inset: auto;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin: 0 -10px 14px;
    padding: 92px 14px 18px;
    overflow: hidden;
  }

  .hero-layer::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.72));
  }

  .mobile-scene-card {
    display: block;
    position: absolute;
    inset: 0;
    margin: 0;
  }

  .mobile-scene-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: saturate(1.04) brightness(0.98);
  }

  .cover-wrap {
    display: none;
  }

  .title-lockup {
    position: relative;
    display: flex;
    z-index: 2;
    top: auto;
    left: auto;
    width: min(100%, 440px);
    padding: 0 12px 10px;
  }

  .title-art {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .hero-tagline {
    margin-top: 8px;
    font-size: clamp(1rem, 3.9vw, 1.22rem);
    line-height: 1.42;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
  }

  .fantasy-button,
  .fantasy-button-solid,
  .fantasy-button-small {
    width: 100%;
  }

  .character-cta {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    width: 100%;
    padding: 14px 18px 0;
  }

  .character-cta h3 {
    font-size: 1.5rem;
  }

  .fantasy-button-character {
    width: min(100%, 280px);
  }

  .characters-panel .character-cta-left {
    position: absolute;
    left: 50%;
    right: auto;
    top: auto;
    bottom: 16px;
    width: auto;
    padding: 0;
    transform: translateX(-50%);
    z-index: 3;
  }

  .characters-panel .character-cta-right {
    display: none;
  }

  .characters-panel .fantasy-button-character {
    width: auto;
    min-width: min(74vw, 260px);
  }

  .story-cta {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 100%;
    padding: 18px 18px 0;
  }

  .story-cta h2 {
    font-size: 1.65rem;
  }

  .fantasy-button-story {
    width: min(100%, 280px);
  }

  .chapter-cta {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    padding: 18px 18px 0;
  }

  .chapter-cta h2 {
    font-size: 1.65rem;
  }

  .fantasy-button-chapter {
    width: min(100%, 300px);
  }

  .chapter-panel .chapter-cta {
    position: absolute;
    left: 50%;
    right: auto;
    top: auto;
    bottom: 16px;
    width: auto;
    padding: 0;
    transform: translateX(-50%);
    z-index: 3;
  }

  .chapter-panel .chapter-cta h2,
  .chapter-panel .fantasy-button-chapter {
    display: none;
  }

  .chapter-panel .fantasy-button-mobile-lysander {
    display: inline-flex;
    width: auto;
    min-width: min(74vw, 260px);
  }

  .alana-cta {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 6%;
    transform: translateX(-50%);
    width: auto;
    padding: 0;
  }

  .fantasy-button-alana {
    width: auto;
    min-width: min(72vw, 260px);
  }

  .circle-cta {
    position: static;
    z-index: 1;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    padding: 14px 0 18px;
    background: #000;
  }

  .fantasy-button-circle {
    width: auto;
    min-width: min(82vw, 320px);
  }

  .books-panel .books-cta {
    position: static;
    z-index: 1;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    padding: 14px 0 18px;
    background: #000;
  }

  .books-panel .fantasy-button-books {
    width: auto;
    min-width: min(72vw, 260px);
  }

  .panel-row {
    gap: 14px;
  }

  .stage-footer {
    width: 100%;
    padding-top: 10px;
  }

  .stage-footer::before,
  .stage-footer::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 6px;
  }

  .site-stage {
    padding-inline: 8px;
  }

  .hero-layer {
    padding-inline: 10px;
    min-height: 96svh;
  }

  .title-lockup {
    padding-inline: 8px;
  }

  .title-art {
    max-width: 332px;
  }

  .stage-footer p {
    font-size: 0.82rem;
    letter-spacing: 0.16em;
  }
}


/* Character profile pages */
.character-hero-stage {
  min-height: clamp(720px, 90vh, 980px);
  height: clamp(720px, 90vh, 980px);
  aspect-ratio: auto;
}

.character-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #030304;
}

.character-hero-media::after {
  content: none;
}

.character-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.02) contrast(1.03);
}

.character-hero-layer {
  position: absolute;
  z-index: 4;
  left: 6.3%;
  right: 6.3%;
  bottom: 12%;
  display: flex;
  align-items: flex-end;
}

.elara-page-body .character-hero-layer {
  justify-content: flex-end;
}

.elara-page-body .character-profile-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 2.4vw, 40px);
}

.elara-page-body .character-profile-copy .panel-heading-wrap {
  padding-bottom: 22px;
}

.elara-page-body .character-profile-body p {
  font-size: clamp(1.3rem, 1.55vw, 1.72rem);
  line-height: 1.68;
}

.lysander-page-body .character-hero-card {
  max-width: min(54%, 760px);
}

.lysander-page-body .character-hero-title {
  font-size: clamp(2.7rem, 5.9vw, 5.7rem);
  letter-spacing: 0.09em;
}

.character-hero-card {
  position: relative;
  max-width: min(46%, 640px);
  padding: clamp(24px, 2.2vw, 38px);
  background:
    linear-gradient(180deg, rgba(5, 5, 7, 0.82), rgba(8, 7, 10, 0.92)),
    radial-gradient(circle at top right, rgba(201, 151, 77, 0.18), transparent 28%);
  border: 1px solid rgba(201, 151, 77, 0.52);
  box-shadow:
    inset 0 0 0 1px rgba(244, 209, 138, 0.08),
    0 18px 34px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

.character-hero-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201, 151, 77, 0.18);
  pointer-events: none;
}

.character-hero-card > * {
  position: relative;
  z-index: 1;
}

.character-hero-title {
  margin: 0;
  color: #fff1cf;
  font-family: "Cinzel", "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow:
    0 16px 28px rgba(0, 0, 0, 0.86),
    0 0 26px rgba(244, 209, 138, 0.18);
}

.character-hero-subheading {
  margin: clamp(14px, 1.5vw, 20px) 0 0;
  max-width: 20em;
  color: var(--ivory);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 1.75vw, 2.05rem);
  line-height: 1.3;
}

.character-page-panels {
  width: min(92%, 1240px);
  margin: 20px auto 28px;
  gap: 20px;
}

.character-profile-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
}

.character-profile-illustration {
  margin: 0;
  position: relative;
  z-index: 1;
  background: #000;
}

.character-profile-illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  background: #000;
}

.character-profile-copy {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 2vw, 34px);
}

.character-profile-copy .panel-heading-wrap,
.character-quote-panel .panel-heading-wrap,
.character-details-panel .panel-heading-wrap {
  padding: 0 0 18px;
  justify-content: flex-start;
}

.character-profile-body {
  position: relative;
  z-index: 1;
}

.character-profile-body p {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: clamp(1.16rem, 1.3vw, 1.42rem);
  line-height: 1.58;
}

.character-profile-body p:last-child {
  margin-bottom: 0;
}

.character-quote-panel {
  padding: clamp(24px, 2vw, 34px);
}

.character-pull-quote {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--gold-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.95rem, 2.8vw, 3.45rem);
  font-style: italic;
  line-height: 1.28;
  text-align: center;
  text-shadow: 0 10px 18px rgba(0, 0, 0, 0.74);
}

.character-details-panel {
  padding: clamp(24px, 2vw, 34px);
}

.character-details-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.character-detail {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid rgba(201, 151, 77, 0.28);
  background: linear-gradient(180deg, rgba(13, 12, 15, 0.7), rgba(5, 5, 7, 0.8));
  box-shadow: inset 0 0 0 1px rgba(244, 209, 138, 0.03);
}

.character-detail-label {
  color: var(--muted-gold);
  font-family: "Cinzel", "Cormorant Garamond", serif;
  font-size: clamp(0.78rem, 0.9vw, 0.94rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.character-detail-value {
  color: var(--ivory);
  font-size: clamp(1.1rem, 1.2vw, 1.3rem);
  line-height: 1.35;
}

.character-bottom-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: clamp(22px, 2vw, 28px);
}

.character-bottom-actions .fantasy-button {
  flex: 1 1 280px;
}

@media (max-width: 960px) {
  .character-hero-stage {
    min-height: 0;
    height: auto;
  }

  .character-hero-media {
    position: relative;
    min-height: 74svh;
  }

  .character-hero-layer {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: -46px;
    padding: 0 14px 20px;
  }

  .character-hero-card {
    max-width: none;
    width: 100%;
  }

  .character-page-panels {
    width: calc(100% - 20px);
    margin-top: 16px;
  }

  .character-profile-panel {
    grid-template-columns: 1fr;
  }

  .character-profile-illustration img {
    max-height: 560px;
  }

  .character-detail {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .character-hero-media {
    min-height: 62svh;
  }

  .character-hero-card {
    padding: 20px 18px 22px;
  }

  .character-hero-title {
    font-size: clamp(2.5rem, 15vw, 4.2rem);
  }

  .character-hero-subheading {
    font-size: clamp(1.15rem, 5vw, 1.45rem);
  }

  .character-profile-copy,
  .character-quote-panel,
  .character-details-panel {
    padding: 18px;
  }

  .character-pull-quote {
    font-size: clamp(1.55rem, 8vw, 2.3rem);
  }

  .character-bottom-actions {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .about-hero .character-hero-media {
    min-height: 85vh;
  }

  .about-hero .character-hero-media picture {
    display: block;
    height: 85vh;
  }

  .about-hero picture img {
    width: 100%;
    height: 85vh;
    object-fit: cover;
    object-position: center top;
  }

  .elara-hero .character-hero-media,
  .lysander-hero .character-hero-media {
    min-height: 85vh;
  }

  .elara-hero .character-hero-media picture,
  .lysander-hero .character-hero-media picture {
    display: block;
    height: 85vh;
  }

  .elara-hero picture img,
  .lysander-hero picture img {
    width: 100%;
    height: 85vh;
    object-fit: cover;
    object-position: center top;
  }
}

/* About page */
.about-page-panels {
  gap: 20px;
}

.about-bio-panel,
.about-image-panel {
  padding: 0;
  position: relative;
}

.about-center-image-panel {
  width: min(84%, 1120px);
  margin-inline: auto;
}

.about-bio-panel .panel-heading-wrap {
  padding: clamp(26px, 2vw, 34px) clamp(24px, 2.4vw, 40px) 0;
}

.about-page-heading {
  font-size: clamp(1.55rem, 2.2vw, 2.6rem);
  letter-spacing: 0.14em;
}

.about-bio-content {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 60px) clamp(24px, 4vw, 40px) clamp(42px, 5vw, 60px);
  text-align: center;
}

.about-bio-content p {
  font-size: clamp(1.28rem, 1.55vw, 1.62rem);
  line-height: 1.72;
}

.about-image-figure {
  margin: 0;
  background: #000;
}

.about-image-figure picture,
.about-image-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.about-image-actions {
  position: absolute;
  left: 50%;
  bottom: clamp(20px, 3vw, 34px);
  transform: translateX(-50%);
  width: min(92%, 860px);
  justify-content: center;
  z-index: 3;
  padding: 0 clamp(16px, 2vw, 24px);
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.72));
}

.about-image-actions .fantasy-button {
  flex: 0 1 320px;
}

.about-page-panels .character-quote-panel {
  padding: clamp(28px, 3vw, 40px);
}

.about-page-panels .character-pull-quote {
  max-width: 22ch;
  margin: 0 auto;
  font-size: clamp(2.3rem, 3vw, 3.9rem);
}

.about-page-panels .character-details-panel {
  padding: clamp(28px, 3vw, 40px);
}

.about-continue-copy {
  max-width: 800px;
  margin: 0 auto;
  padding: 8px clamp(24px, 4vw, 40px) 0;
  text-align: center;
}

.about-continue-copy p {
  font-size: clamp(1.22rem, 1.4vw, 1.48rem);
  line-height: 1.68;
}

.about-page-panels .character-bottom-actions {
  justify-content: center;
}

@media (max-width: 767px) {
  .about-center-image-panel {
    display: none;
  }
}

@media (max-width: 640px) {
  .about-bio-panel .panel-heading-wrap {
    padding: 22px 18px 0;
  }

  .about-page-heading {
    font-size: clamp(1.3rem, 6vw, 1.85rem);
  }

  .about-bio-content {
    padding: 30px 18px 36px;
  }

  .about-bio-content p,
  .about-continue-copy p {
    font-size: clamp(1.12rem, 4.6vw, 1.28rem);
  }

  .about-image-actions {
    width: calc(100% - 20px);
    bottom: 16px;
  }
}

/* Book page */
.book-hero {
  min-height: 0;
  height: auto;
  aspect-ratio: auto;
}

.book-hero .character-hero-media {
  position: relative;
  inset: auto;
  height: auto;
}

.book-hero .character-hero-media picture {
  display: block;
  width: 100%;
  height: auto;
}

.book-hero .character-hero-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}

.book-story-shell {
  width: min(92%, 980px);
  margin: 22px auto 44px;
}

.book-story-panel {
  padding: 0;
}

.book-story-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 62px) clamp(22px, 4vw, 48px) clamp(40px, 5vw, 62px);
  text-align: center;
}

.book-story-heading-wrap {
  padding-top: 0;
}

.book-story-title {
  font-size: clamp(1.7rem, 2.7vw, 3rem);
  letter-spacing: 0.18em;
}

.book-story-subtitle {
  margin: 12px 0 0;
  color: var(--gold-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.3rem, 1.8vw, 1.9rem);
  font-style: italic;
  line-height: 1.35;
}

.book-story-copy {
  margin-top: clamp(28px, 3vw, 38px);
  text-align: left;
}

.book-story-copy p {
  margin: 0 0 1.45rem;
  color: var(--text);
  font-size: clamp(1.18rem, 1.38vw, 1.42rem);
  line-height: 1.8;
}

.book-story-copy p:last-child {
  margin-bottom: 0;
}

.book-story-quote {
  margin: clamp(30px, 4vw, 44px) auto 0;
  padding-top: clamp(28px, 3vw, 36px);
  max-width: 24ch;
  border-top: 1px solid rgba(201, 151, 77, 0.28);
  color: var(--gold-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-style: italic;
  line-height: 1.28;
  text-align: center;
  text-shadow: 0 10px 18px rgba(0, 0, 0, 0.74);
}

.book-story-comp {
  margin: 22px auto 0;
  color: var(--muted-gold);
  font-family: "Cinzel", "Cormorant Garamond", serif;
  font-size: clamp(0.84rem, 1vw, 0.98rem);
  letter-spacing: 0.08em;
  line-height: 1.7;
  text-align: center;
}

.book-story-actions {
  justify-content: center;
  margin-top: clamp(28px, 4vw, 40px);
}

.book-story-actions .fantasy-button {
  flex: 0 1 250px;
}

@media (max-width: 767px) {
  .book-hero {
    min-height: 85vh;
    height: 85vh;
  }

  .book-hero .character-hero-media,
  .book-hero .character-hero-media picture,
  .book-hero .character-hero-image {
    height: 85vh;
  }

  .book-story-shell {
    width: calc(100% - 20px);
    margin: 18px auto 32px;
  }
}

@media (max-width: 640px) {
  .book-story-inner {
    padding: 30px 18px 36px;
  }

  .book-story-title {
    font-size: clamp(1.35rem, 6.2vw, 1.9rem);
  }

  .book-story-subtitle {
    font-size: clamp(1.14rem, 4.8vw, 1.35rem);
  }

  .book-story-copy p {
    font-size: clamp(1.08rem, 4.8vw, 1.22rem);
  }

  .book-story-quote {
    font-size: clamp(1.72rem, 7vw, 2.3rem);
  }

  .book-story-actions {
    flex-direction: column;
  }
}

/* Chapter one page */
.chapter-hero {
  min-height: 0;
  height: auto;
  aspect-ratio: auto;
}

.chapter-hero .character-hero-media {
  position: relative;
  inset: auto;
  height: auto;
}

.chapter-hero .character-hero-media picture {
  display: block;
  width: 100%;
  height: auto;
}

.chapter-hero .character-hero-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}

.chapter-hero .stage-vignette {
  background:
    linear-gradient(180deg, rgba(2, 2, 4, 0.38) 0%, rgba(2, 2, 4, 0.12) 18%, rgba(3, 3, 5, 0.18) 62%, rgba(3, 3, 5, 0.5) 100%),
    radial-gradient(circle at 50% 12%, rgba(244, 209, 138, 0.1), transparent 42%);
}

@media (min-width: 768px) {
  .chapter-hero .stage-header {
    top: 0;
    left: 0;
    right: 0;
    position: absolute;
    z-index: 4;
  }

  .chapter-hero .social-links {
    z-index: 5;
  }
}

@media (max-width: 767px) {
  .chapter-hero {
    min-height: 80vh;
    height: 80vh;
  }

  .chapter-hero .character-hero-media {
    position: absolute;
    inset: 0;
    height: 80vh;
  }

  .chapter-hero .character-hero-media picture {
    display: block;
    width: 100%;
    height: 80vh;
  }

  .chapter-hero .character-hero-image {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    object-position: center top;
  }
}

.chapter-reading-shell {
  width: min(92%, 980px);
  margin: 22px auto 44px;
}

.chapter-reading-panel {
  padding: 0;
}

.chapter-reading-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 62px) clamp(22px, 4vw, 48px) clamp(44px, 5vw, 64px);
  text-align: center;
}

.chapter-heading-wrap {
  padding-top: 0;
}

.chapter-page-title {
  font-size: clamp(1.7rem, 2.7vw, 3rem);
  letter-spacing: 0.18em;
}

.chapter-page-subtitle {
  margin: 12px 0 0;
  color: var(--gold-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.3rem, 1.8vw, 1.9rem);
  font-style: italic;
  line-height: 1.35;
}

.chapter-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(100%, 320px);
  margin: 18px auto 0;
  color: var(--gold-light);
}

.chapter-divider::before,
.chapter-divider::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 151, 77, 0), rgba(201, 151, 77, 0.72), rgba(244, 209, 138, 0));
}

.chapter-divider span {
  font-size: 1rem;
  line-height: 1;
  opacity: 0.92;
}

.chapter-scene-title {
  margin: 18px 0 0;
  color: var(--muted-gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.28rem, 1.8vw, 1.7rem);
  font-style: italic;
  letter-spacing: 0.06em;
  line-height: 1.35;
}

.chapter-reading-copy {
  margin-top: clamp(28px, 3vw, 38px);
  text-align: left;
}

.chapter-prose {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 116px;
}

.chapter-prose::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 170px;
  background: linear-gradient(180deg, rgba(5, 4, 4, 0) 0%, rgba(5, 4, 4, 0.84) 68%, rgba(5, 4, 4, 1) 100%);
  pointer-events: none;
}

.chapter-prose p {
  margin: 0 0 1.5em;
  color: #f0ece0;
  font-size: clamp(1.24rem, 1.5vw, 1.46rem);
  line-height: 1.9;
}

.chapter-prose p:last-child {
  margin-bottom: 0;
}

.chapter-lead::first-letter {
  float: left;
  margin: 0.12em 0.12em 0 0;
  color: var(--gold-light);
  font-family: "Cinzel", "Cormorant Garamond", serif;
  font-size: clamp(3.6rem, 6vw, 5.4rem);
  font-weight: 700;
  line-height: 0.82;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.58);
}

.chapter-break {
  margin: 1.05em auto 1.45em;
  color: var(--gold-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  text-align: center;
  letter-spacing: 0.22em;
}

.chapter-reading-cta {
  margin-top: clamp(22px, 3vw, 34px);
  padding-top: clamp(26px, 3vw, 34px);
  border-top: 1px solid rgba(201, 151, 77, 0.24);
  text-align: center;
}

.chapter-reading-cta-copy {
  margin: 0;
  color: var(--gold-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  font-style: italic;
  line-height: 1.2;
  text-shadow: 0 10px 18px rgba(0, 0, 0, 0.74);
}

.chapter-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: clamp(22px, 3vw, 30px);
}

.chapter-actions .fantasy-button {
  flex: 0 1 250px;
}

@media (max-width: 767px) {
  .chapter-hero {
    min-height: 80vh;
    height: 80vh;
  }

  .chapter-hero .character-hero-media,
  .chapter-hero .character-hero-media picture,
  .chapter-hero .character-hero-image {
    height: 80vh;
  }

  .chapter-hero .character-hero-image {
    object-position: center top;
  }

  .chapter-reading-shell {
    width: calc(100% - 20px);
    margin: 18px auto 32px;
  }

  .chapter-prose::after {
    height: 146px;
  }
}

@media (max-width: 640px) {
  .chapter-reading-inner {
    padding: 30px 18px 36px;
  }

  .chapter-page-title {
    font-size: clamp(1.35rem, 6.2vw, 1.9rem);
  }

  .chapter-page-subtitle {
    font-size: clamp(1.14rem, 4.8vw, 1.35rem);
  }

  .chapter-scene-title {
    font-size: clamp(1.08rem, 4.8vw, 1.24rem);
  }

  .chapter-prose {
    padding-bottom: 100px;
  }

  .chapter-prose p {
    font-size: clamp(1.12rem, 5vw, 1.24rem);
  }

  .chapter-prose::after {
    height: 128px;
  }

  .chapter-reading-cta-copy {
    font-size: clamp(1.6rem, 6.8vw, 2.2rem);
  }

  .chapter-actions {
    flex-direction: column;
  }

  .chapter-actions .fantasy-button {
    width: 100%;
  }
}

/* Newsletter page */
.newsletter-hero {
  min-height: 70vh;
  height: 70vh;
}

.newsletter-hero .character-hero-media,
.newsletter-hero .character-hero-media picture,
.newsletter-hero .character-hero-image {
  display: block;
  width: 100%;
  height: 70vh;
}

.newsletter-hero .character-hero-image {
  object-fit: cover;
  object-position: center center;
}

.newsletter-hero .stage-vignette {
  background:
    linear-gradient(180deg, rgba(4, 3, 5, 0.16) 0%, rgba(4, 3, 5, 0.08) 24%, rgba(4, 3, 5, 0.26) 74%, rgba(4, 3, 5, 0.54) 100%),
    radial-gradient(circle at 50% 8%, rgba(244, 209, 138, 0.12), transparent 38%);
}

.newsletter-section {
  background: #0a0804;
  padding: 80px 24px;
  text-align: center;
}

.newsletter-shell {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: clamp(36px, 5vw, 56px) clamp(22px, 4vw, 44px) clamp(40px, 5vw, 60px);
  background:
    linear-gradient(180deg, rgba(9, 8, 7, 0.92), rgba(5, 4, 4, 0.98)),
    radial-gradient(circle at top center, rgba(201, 151, 77, 0.14), transparent 34%);
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow:
    inset 0 0 0 1px rgba(244, 209, 138, 0.05),
    0 22px 42px rgba(0, 0, 0, 0.36);
}

.newsletter-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(100%, 320px);
  margin: 0 auto 18px;
  color: #d4af37;
}

.newsletter-divider::before,
.newsletter-divider::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0), rgba(212, 175, 55, 0.76), rgba(212, 175, 55, 0));
}

.newsletter-divider span {
  font-size: 1rem;
  line-height: 1;
  opacity: 0.9;
}

.newsletter-title {
  margin: 0 0 8px;
  font-family: "Cinzel", "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #d4af37;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow:
    0 10px 18px rgba(0, 0, 0, 0.72),
    0 0 20px rgba(212, 175, 55, 0.12);
}

.newsletter-subtitle {
  margin: 0 0 40px;
  font-style: italic;
  color: rgba(212, 175, 55, 0.7);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
}

.newsletter-body {
  margin: 0 auto 40px;
  max-width: 560px;
  color: #f0ece0;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.8;
}

.newsletter-form {
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: #f0ece0;
  font-size: 16px;
  border-radius: 3px;
  margin-bottom: 14px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.newsletter-input:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.24);
  background: rgba(255, 255, 255, 0.07);
}

.newsletter-input::placeholder {
  color: rgba(212, 175, 55, 0.4);
  font-style: italic;
}

.newsletter-btn {
  width: 100%;
  padding: 16px;
  background: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
  font-size: 13px;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.newsletter-btn:hover,
.newsletter-btn:focus-visible {
  background: rgba(212, 175, 55, 0.12);
  letter-spacing: 4px;
}

.newsletter-disclaimer {
  margin: 0;
  color: rgba(212, 175, 55, 0.4);
  font-size: 13px;
  font-style: italic;
}

.newsletter-btn:disabled {
  opacity: 0.72;
  cursor: wait;
}

.newsletter-btn:disabled:hover,
.newsletter-btn:disabled:focus-visible {
  background: transparent;
  letter-spacing: 3px;
}

.newsletter-form #form-error {
  max-width: 460px;
  margin: 12px auto 0;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .newsletter-hero {
    min-height: 90vh;
    height: 90vh;
  }

  .newsletter-hero .character-hero-media,
  .newsletter-hero .character-hero-media picture,
  .newsletter-hero .character-hero-image {
    height: 90vh;
  }

  .newsletter-hero .character-hero-image {
    object-position: center top;
  }
}

@media (max-width: 640px) {
  .newsletter-section {
    padding: 64px 18px;
  }

  .newsletter-shell {
    padding: 30px 18px 36px;
  }
}

/* Welcome page */
.welcome-section {
  width: min(92%, 980px);
  margin: 22px auto 44px;
}

.welcome-panel {
  padding: 0;
}

.welcome-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 60px) clamp(22px, 4vw, 48px) clamp(42px, 5vw, 60px);
  text-align: center;
}

.welcome-title {
  margin: 0;
  color: var(--gold-light);
  font-family: "Cinzel", "Cormorant Garamond", serif;
  font-size: clamp(1.85rem, 3vw, 3.2rem);
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow:
    0 10px 18px rgba(0, 0, 0, 0.72),
    0 0 20px rgba(212, 175, 55, 0.12);
}

.welcome-subtitle {
  margin: 12px 0 0;
  color: rgba(212, 175, 55, 0.72);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-style: italic;
}

.welcome-body {
  max-width: 620px;
  margin: 32px auto 0;
  color: #f0ece0;
  font-size: clamp(1.08rem, 1.45vw, 1.26rem);
  line-height: 1.85;
}

.welcome-actions {
  justify-content: center;
  margin-top: clamp(28px, 4vw, 38px);
}

.welcome-actions .fantasy-button {
  flex: 0 1 250px;
}

@media (max-width: 767px) {
  .welcome-section {
    width: calc(100% - 20px);
    margin: 18px auto 32px;
  }
}

@media (max-width: 640px) {
  .welcome-inner {
    padding: 30px 18px 36px;
  }

  .welcome-title {
    font-size: clamp(1.42rem, 6.6vw, 1.95rem);
  }

  .welcome-subtitle {
    font-size: clamp(1rem, 4.8vw, 1.18rem);
  }

  .welcome-body {
    font-size: clamp(1.02rem, 4.8vw, 1.12rem);
  }

  .welcome-actions {
    flex-direction: column;
  }

  .welcome-actions .fantasy-button {
    width: 100%;
  }
}
