:root {
  --ink: #0f0e0c;
  --ink-soft: #1c1814;
  --paper: #e4dccb;
  --paper-dim: #d4caba;
  --paper-raise: #ebe3d4;
  --muted: #3f3830;
  --text: #14110e;
  --amber: #c45c26;
  --amber-deep: #7a300c;
  --line: rgba(20, 17, 14, 0.18);
  --max: 68rem;
  --font-display: "Lora", "Times New Roman", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 500;
  background:
    radial-gradient(120% 80% at 50% -10%, #ece4d5 0%, transparent 55%),
    var(--paper);
  line-height: 1.65;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

h1,
h2,
h3 {
  color: var(--ink);
  text-shadow: none;
}

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

a {
  color: var(--amber-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--amber);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
  color: var(--paper);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.logo:hover {
  color: inherit;
  opacity: 0.9;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.92rem;
}

.nav-links a {
  color: rgba(244, 239, 230, 0.92);
  text-decoration: none;
}

.nav-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.hero {
  position: relative;
  min-height: 0;
  height: clamp(26rem, 58vh, 36rem);
  display: grid;
  align-items: center;
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}

@media (max-width: 700px) {
  .hero {
    height: clamp(22rem, 62vh, 30rem);
  }
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #1f1216;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* collage has dark left for copy; keep art readable on the right */
  object-position: right center;
  min-height: 100%;
}

@media (min-width: 1400px) {
  .hero-media img {
    object-position: 70% center;
  }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 14, 22, 0.42) 0%, rgba(12, 14, 22, 0.16) 34%, rgba(12, 14, 22, 0.04) 58%, transparent 100%),
    linear-gradient(180deg, rgba(12, 14, 22, 0.08) 0%, rgba(12, 14, 22, 0.22) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0;
  padding: 4.5rem clamp(1.25rem, 4vw, 3rem) 2.75rem;
}

.hero-inner > * {
  max-width: min(32rem, 100%);
}

@media (max-width: 700px) {
  .hero-media img {
    /* keep collage visible; bias toward art on the right */
    display: block;
    object-position: 78% center;
  }

  .hero-media {
    background: #0c0e16;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(12, 14, 22, 0.55) 0%, rgba(12, 14, 22, 0.72) 100%),
      linear-gradient(90deg, rgba(12, 14, 22, 0.55) 0%, rgba(12, 14, 22, 0.2) 55%, transparent 100%);
  }

  .hero-inner > * {
    max-width: 100%;
  }
}

.hero-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
  text-shadow: none;
}

.hero h1 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
  max-width: 32rem;
  color: #ffffff;
  text-shadow: none;
}

@media (max-width: 700px) {
  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }
}

.hero-lead {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: none;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.85rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 8px 24px rgba(196, 92, 38, 0.35);
}

.btn-primary:hover {
  background: var(--amber-deep);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16), 0 10px 28px rgba(196, 92, 38, 0.45);
}

.btn-secondary {
  background: rgba(244, 239, 230, 0.22);
  color: #fff;
  border-color: rgba(255, 248, 238, 0.72);
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.btn-secondary:hover {
  background: rgba(244, 239, 230, 0.34);
  color: #fff;
  border-color: rgba(244, 239, 230, 0.75);
}

.hero .btn-primary {
  background: #e06a2c;
  box-shadow: 0 0 0 1px rgba(255, 220, 180, 0.25), 0 0 28px rgba(224, 106, 44, 0.45), 0 8px 22px rgba(0, 0, 0, 0.28);
}

.hero .btn-primary:hover {
  background: #f07838;
  box-shadow: 0 0 0 1px rgba(255, 220, 180, 0.35), 0 0 34px rgba(224, 106, 44, 0.55), 0 10px 26px rgba(0, 0, 0, 0.3);
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: rgba(28, 23, 18, 0.28);
  color: var(--amber-deep);
}

.btn-on-light.btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: transparent;
}

.btn-on-light.btn-secondary:hover {
  background: rgba(28, 23, 18, 0.04);
  color: var(--amber-deep);
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 4.5rem clamp(1.25rem, 4vw, 3rem);
}

.section-pack-after {
  padding-bottom: 1.1rem;
}

.section-pack-before {
  padding-top: 1.1rem;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2rem;
}

.section-how .section-head {
  max-width: 46rem;
}

.section-head h2 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-shadow: none;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.6;
}

.channels {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .channels {
    grid-template-columns: repeat(3, 1fr);
  }
}

.channel {
  padding: 0;
  border: 0;
  background: transparent;
}

.channel h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
}

.channel p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.story-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .story-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .story-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

#stories {
  padding-top: 2.25rem;
}

.story-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
  background: var(--paper-raise);
  border: 1px solid rgba(196, 92, 38, 0.28);
  border-radius: 1.1rem;
  overflow: visible;
  box-shadow:
    0 0 0 1px rgba(196, 92, 38, 0.08),
    0 8px 28px rgba(154, 63, 20, 0.08),
    0 0 22px rgba(196, 92, 38, 0.16);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.story-card:hover {
  opacity: 1;
  color: inherit;
  border-color: rgba(196, 92, 38, 0.55);
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(196, 92, 38, 0.22),
    0 12px 32px rgba(154, 63, 20, 0.12),
    0 0 34px rgba(196, 92, 38, 0.28);
}

.story-media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--paper-dim);
  overflow: hidden;
  border-radius: 1.1rem 1.1rem 0 0;
}

.story-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 0;
}

.story-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.story-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  margin: 0;
}

.story-slide-cast img {
  z-index: 0;
  filter: brightness(1.08) saturate(0.45) contrast(0.88);
  opacity: 0.55;
  transform: none;
}

.story-slide-cast::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(232, 224, 209, 0.55);
  pointer-events: none;
}

.story-cast-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.45rem;
  padding: 0.55rem 0.55rem 1.7rem;
  color: var(--text);
}

.story-card .story-cast-title {
  margin: 0;
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 4.2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  text-shadow: none;
  background: var(--paper-raise);
  border: 1px solid rgba(28, 23, 18, 0.16);
  border-radius: 0.5rem;
  padding: 0.32rem 0.55rem;
  box-shadow: 0 6px 18px rgba(20, 17, 14, 0.14);
}

.story-cast-grid {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
  align-content: stretch;
}

.story-card .story-cast-mini {
  display: grid;
  gap: 0.12rem;
  min-height: 0;
  align-content: center;
  padding: 0.38rem 0.55rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(28, 23, 18, 0.16);
  background: var(--paper-raise);
  box-shadow: 0 4px 12px rgba(20, 17, 14, 0.1);
}

.story-card .story-cast-mini strong {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 3.4vw, 1.05rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
}

.story-card .story-cast-mini span {
  font-size: clamp(0.72rem, 2.6vw, 0.8rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.story-media-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.65rem;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  pointer-events: auto;
}

.story-media-dots button {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(244, 239, 230, 0.45);
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(20, 17, 14, 0.2);
}

.story-media-dots button.is-active {
  background: #f4efe6;
  width: 0.85rem;
}

.story-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1rem 1rem 1.2rem;
  flex: 1;
  overflow: visible;
}

.story-card .tag {
  display: inline-block;
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.story-card h3 {
  margin: 0;
  padding: 0.15em 0 0.08em;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--ink);
  overflow: visible;
  text-shadow: none;
}

.story-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.5;
}

.story-card .story-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.story-card .card-cta {
  margin-top: auto;
  padding-top: 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--amber-deep);
}

.section-more {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0.25rem clamp(1.25rem, 4vw, 3rem) 0.5rem;
}

.section > .section-more {
  width: auto;
  margin: 1.75rem 0 0;
  padding-left: 0;
  padding-right: 0;
}

.demo-section {
  padding-top: 3rem;
}

.demo-stage {
  max-width: 40rem;
  padding: 1.5rem 1.35rem 1.6rem;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid rgba(244, 239, 230, 0.12);
  border-radius: 1.1rem;
  overflow: hidden;
}

.demo-meta {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 248, 238, 0.72);
}

.demo-line {
  margin: 0 0 0.9rem;
  line-height: 1.55;
  font-size: 0.98rem;
}

.demo-narrator {
  color: rgba(255, 248, 238, 0.92);
}

.demo-char span {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}

.demo-prompt {
  margin: 1.25rem 0 0.65rem;
  font-size: 0.88rem;
  color: rgba(255, 248, 238, 0.82);
}

.demo-choices {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.demo-choice {
  text-align: left;
  padding: 0.75rem 0.95rem;
  border: 1px solid rgba(224, 106, 44, 0.4);
  border-radius: 0.75rem;
  background: transparent;
  color: var(--paper);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  animation: demo-choice-pulse 2s ease-in-out infinite;
}

.demo-choice:hover,
.demo-choice:focus-visible,
.demo-choice.is-active {
  border-color: #f07838;
  background: rgba(196, 92, 38, 0.22);
  box-shadow: 0 0 0 1px rgba(224, 106, 44, 0.45), 0 0 22px rgba(224, 106, 44, 0.45);
  outline: none;
  animation: none;
}

.demo-choice-input {
  display: grid;
  gap: 0.35rem;
  border-style: dashed;
  background: rgba(244, 239, 230, 0.04);
}

.demo-choice-input.is-active,
.demo-choice-input:hover,
.demo-choice-input:focus-visible {
  border-style: solid;
}

@keyframes demo-choice-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(224, 106, 44, 0), 0 0 8px rgba(224, 106, 44, 0.15);
    border-color: rgba(224, 106, 44, 0.35);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(224, 106, 44, 0.55), 0 0 22px rgba(224, 106, 44, 0.5);
    border-color: rgba(240, 120, 56, 0.85);
  }
}

@media (prefers-reduced-motion: reduce) {
  .demo-choice {
    animation: none;
    box-shadow: 0 0 14px rgba(224, 106, 44, 0.28);
    border-color: rgba(224, 106, 44, 0.5);
  }
}

.demo-input-hint {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 248, 238, 0.55);
}

.demo-input-field {
  display: flex;
  align-items: center;
  min-height: 1.35em;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff8ef;
}

.demo-input-text {
  white-space: pre-wrap;
}

.demo-caret {
  display: inline-block;
  width: 0.08em;
  height: 1.05em;
  margin-left: 0.08em;
  background: var(--amber);
  vertical-align: text-bottom;
  animation: demo-caret-blink 1s steps(1) infinite;
}

@keyframes demo-caret-blink {
  0%,
  45% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .demo-caret {
    animation: none;
    opacity: 1;
  }
}

.demo-note {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: rgba(244, 239, 230, 0.55);
}


.steps {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 900px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2rem;
  }
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--amber-deep);
  line-height: 1.2;
}

.steps h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
}

.channels-compact {
  margin-top: 0.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.position-section .section-head {
  max-width: 46rem;
}

.position-grid {
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 800px) {
  .position-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.position-grid h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.position-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
}

.catalog-list {
  display: grid;
  gap: 1.5rem;
}

.catalog-item {
  display: grid;
  gap: 0.35rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.catalog-item h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
}

.catalog-item .meta {
  color: var(--muted);
  font-size: 0.88rem;
}

.catalog-item p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.page-hero {
  padding: 6.5rem clamp(1.25rem, 4vw, 3rem) 2.5rem;
  background:
    radial-gradient(ellipse at top left, rgba(196, 92, 38, 0.12), transparent 50%),
    linear-gradient(180deg, #ebe3d5 0%, var(--paper) 100%);
}

.page-hero-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.breadcrumb {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

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

.breadcrumb a:hover {
  color: var(--amber-deep);
  text-decoration: underline;
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
  max-width: 18ch;
}

.page-hero .lead {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.story-page-meta {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.page-hero--cover {
  position: relative;
  isolation: isolate;
  min-height: min(72vh, 36rem);
  display: flex;
  align-items: flex-end;
  padding-top: 2.5rem;
  background-color: #14110e;
  background-image: var(--story-hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 700px) {
  .page-hero--cover {
    min-height: min(52vh, 22rem);
    padding-top: 1.75rem;
  }
}

.page-hero--cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(14, 11, 8, 0.58) 0%, rgba(14, 11, 8, 0.32) 38%, rgba(14, 11, 8, 0.1) 68%, rgba(14, 11, 8, 0.16) 100%),
    linear-gradient(180deg, rgba(14, 11, 8, 0.12) 0%, rgba(14, 11, 8, 0.22) 55%, rgba(14, 11, 8, 0.48) 100%);
}

.page-hero--cover .page-hero-inner {
  position: relative;
  z-index: 1;
  padding-bottom: 0.5rem;
}

.page-hero--cover h1,
.page-hero--cover .lead,
.page-hero--cover .story-page-meta {
  color: #f4efe6;
}

.page-hero--cover .lead,
.page-hero--cover .story-page-meta {
  color: rgba(244, 239, 230, 0.9);
}

.page-hero--cover .breadcrumb {
  color: rgba(244, 239, 230, 0.75);
}

.page-hero--cover .breadcrumb a:hover {
  color: #f0c9a8;
}

.ending-names {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 1.25rem 0 0;
  max-width: 46rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.65rem 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .ending-names {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .ending-names {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.ending-names li {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-left: 0;
  line-height: 1.25;
}

.ending-names li::before {
  display: none;
}

.ending-names strong {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.ending-names strong::before {
  content: "—";
  margin-right: 0.45rem;
  color: var(--amber-deep);
  font-weight: 500;
}

.ending-names em {
  margin: 0 0 0 1.15rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.35;
}

.story-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .story-layout {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

.story-synopsis {
  display: grid;
  gap: 1.5rem;
  max-width: 52rem;
}

.story-synopsis-art {
  margin: 0;
  overflow: hidden;
  background: var(--paper-dim);
}

.story-synopsis-art img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  display: block;
}

.story-scene-demo {
  display: grid;
  gap: 0;
  max-width: 52rem;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(20, 17, 14, 0.12);
}

.story-scene-demo .story-synopsis-art {
  border-radius: 0;
}

.demo-stage--embed {
  max-width: none;
  border-radius: 0;
  border: 0;
  border-top: 1px solid rgba(244, 239, 230, 0.12);
}

.demo-stage--embed .btn {
  margin-top: 1.1rem;
}

.seo-prose {
  max-width: 46rem;
}

.seo-points {
  margin-top: 1.75rem;
  display: grid;
  gap: 1.25rem;
  max-width: 52rem;
}

@media (min-width: 720px) {
  .seo-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.seo-points h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}

.seo-points p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.5;
}

.story-cover {
  width: 100%;
  max-height: min(70vh, 36rem);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  background: var(--paper-dim);
}

.story-start-band {
  margin: 1.25rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
}

.story-start-band p {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.chapter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.chapter-list li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.65rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.98rem;
}

.chapter-list .ch-no {
  font-family: var(--font-display);
  color: var(--amber-deep);
  font-size: 1.05rem;
}

.chapter-list strong {
  color: var(--text);
  font-weight: 600;
}

.cast-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .cast-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cast-card {
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  background: var(--paper-raise);
}

.cast-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.cast-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.scene-gallery {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .scene-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.scene-gallery figure {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--paper-dim);
  overflow: hidden;
}

.scene-gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.scene-gallery figcaption {
  padding: 0.55rem 0.75rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.prose p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 500;
}

.prose h2 {
  margin: 1.75rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
}

.prose h3 {
  margin: 1.25rem 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}

.prose ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 500;
}

.prose li {
  margin: 0.35rem 0;
}

.prose .fine {
  margin-top: 1.5rem;
  font-size: 0.9rem;
}


.faq-section .section-head {
  max-width: 42rem;
}

.faq-list {
  max-width: 46rem;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 1.75rem 1.05rem 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--amber-deep);
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0 0 1.15rem;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 500;
}

.site-footer {
  margin-top: 2rem;
  padding: 2.5rem clamp(1.25rem, 4vw, 3rem) 3rem;
  border-top: 1px solid var(--line);
  background: var(--paper-dim);
}

.site-footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
}

.site-footer a:hover {
  color: var(--amber-deep);
  text-decoration: underline;
}

.site-footer .fine {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(20, 17, 14, 0.55);
}

.modal-backdrop[hidden] {
  display: none !important;
}

.modal {
  position: relative;
  width: min(100%, 26rem);
  background: var(--paper);
  color: var(--text);
  padding: 1.75rem 1.5rem 1.5rem;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(20, 17, 14, 0.25);
}

.modal h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
}

.modal p {
  margin: 0 0 1.25rem;
  color: var(--muted);
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.modal-close {
  position: absolute;
  top: 0.55rem;
  right: 0.7rem;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}

.header-light {
  position: relative;
  color: var(--text);
  background: transparent;
}

.header-light .nav-links a {
  color: var(--muted);
}

.header-light .logo {
  color: var(--text);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .story-card,
  .story-slide {
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}

.hub-intro {
  padding-bottom: 0;
}

.hub-intro .seo-prose {
  max-width: 42rem;
}

.hub-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin: 1.5rem 0 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
}

.hub-genres a {
  color: var(--amber-deep);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.hub-genres a:hover {
  color: var(--amber);
}

.demo-your span {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 248, 238, 0.7);
}

.demo-end {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(244, 239, 230, 0.14);
}

.demo-end-text {
  margin: 0 0 1rem;
  color: rgba(255, 248, 238, 0.88);
  line-height: 1.55;
}

.demo-end-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.btn-on-dark {
  background: transparent;
  border-color: rgba(255, 248, 238, 0.45);
  color: #fff;
}

.btn-on-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.demo-free {
  display: grid;
  gap: 0.55rem;
}

.demo-free-form {
  display: grid;
  gap: 0.5rem;
  padding: 0.75rem 0.85rem;
  border: 1px dashed rgba(244, 239, 230, 0.28);
  border-radius: 0.75rem;
  background: rgba(244, 239, 230, 0.05);
}

.demo-free-form[hidden] {
  display: none !important;
}

.demo-free-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 248, 238, 0.55);
}

.demo-free-input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(244, 239, 230, 0.28);
  border-radius: 0.55rem;
  background: rgba(0, 0, 0, 0.25);
  color: var(--paper);
  font: inherit;
}

.demo-free-input:focus {
  outline: 2px solid rgba(196, 92, 38, 0.55);
  outline-offset: 1px;
}

.demo-free-submit {
  justify-self: start;
}

.demo-stage .demo-choices[hidden],
.demo-stage .demo-end[hidden] {
  display: none !important;
}

.chapter-more {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}
