@charset "UTF-8";
:root {
  --bg: #101518;
  --deep: #090e11;
  --surface: #171e22;
  --ink: #f1f2ec;
  --muted: #acb6bd;
  --amber: #e7bf80;
  --line: #354147;
  --faint: #243038;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'Courier New', monospace;
  --max: 1440px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 1rem/1.7 var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.modal-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
}
button:disabled {
  cursor: default;
  opacity: 0.45;
}
button,
select {
  touch-action: manipulation;
}
h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-weight: 400;
}
h1,
h2,
h3 {
  font-family: var(--serif);
}
img {
  display: block;
  width: 100%;
  height: auto;
}
button {
  border: 0;
  background: none;
}
svg {
  width: 20px;
  height: 20px;
  flex: none;
}
::selection {
  background: var(--amber);
  color: var(--deep);
}
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 5px;
}
[hidden] {
  display: none !important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.wrap {
  width: min(var(--max), calc(100% - 100px));
  margin: auto;
}
.narrow {
  max-width: 850px;
  margin: auto;
}
.eyebrow {
  font: 400 0.75rem/1.6 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}
.muted {
  color: var(--muted);
}
.small {
  font-size: 0.875rem;
}
.serif {
  font-family: var(--serif);
}
.skip-link {
  position: fixed;
  left: 20px;
  top: 15px;
  z-index: 100;
  padding: 12px 20px;
  background: var(--amber);
  color: var(--deep);
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(12, 18, 22, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}
.header-inner {
  height: 88px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 190px;
}
.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.brand strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.25;
}
.brand span {
  display: block;
  color: var(--muted);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 5px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
}
.main-nav > a,
.nav-chapters > summary {
  font-size: 0.875rem;
  color: #c2c9ce;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}
.main-nav a:hover,
.main-nav a[aria-current='page'],
.nav-chapters[open] > summary {
  color: var(--amber);
}
.nav-chapters {
  position: relative;
}
.nav-chapters > summary {
  list-style: none;
}
.nav-chapters > summary::-webkit-details-marker {
  display: none;
}
.chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}
.nav-chapters[open] .chevron {
  transform: rotate(180deg);
}
.chapter-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: -26px;
  width: 345px;
  border: 1px solid var(--line);
  background: #121b20;
  box-shadow: 0 20px 70px #0008;
  padding: 10px;
}
.chapter-menu a {
  display: flex;
  gap: 16px;
  padding: 15px;
  font-family: var(--serif);
  font-size: 1.05rem;
  border-bottom: 1px solid var(--faint);
}
.chapter-menu a:last-child {
  border: 0;
}
.chapter-menu a:hover {
  background: var(--faint);
}
.chapter-menu .numeral {
  font: 0.75rem var(--mono);
  color: var(--amber);
  padding-top: 7px;
  min-width: 26px;
}
.chapter-menu small {
  display: block;
  font: 0.6875rem var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
  margin-bottom: 5px;
}
.header-contact {
  font-size: 0.8125rem;
  border: 1px solid #667077;
  padding: 9px 17px;
  white-space: nowrap;
}
.header-contact:hover {
  background: var(--amber);
  color: var(--deep);
  border-color: var(--amber);
}
.menu-toggle {
  display: none;
  font-size: 0.875rem;
  padding: 10px;
  border: 1px solid var(--line);
  margin-left: auto;
}
.top-rule {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 17px 0;
  color: var(--muted);
  font: 0.75rem var(--mono);
  letter-spacing: 0.07em;
}
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(840px, calc(100svh - 88px));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--deep);
}
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 48%;
  filter: brightness(0.72);
}
.hero:after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(5, 12, 16, 0.92),
      rgba(5, 12, 16, 0.48) 44%,
      rgba(5, 12, 16, 0.02) 75%
    ),
    linear-gradient(0deg, #101518, transparent 28%);
}
.hero-inner {
  padding-top: 70px;
  padding-bottom: 110px;
}
.hero h1 {
  font-size: clamp(4.5rem, 8.8vw, 9.2rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 870px;
  margin: 26px 0;
}
.hero h1 em {
  color: var(--amber);
  font-weight: 400;
}
.hero p.hero-copy {
  max-width: 380px;
  font-size: 1.05rem;
  color: #d3d6d3;
  margin: 30px 0;
}
.hero-bottom {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  color: #c4cacc;
  font: 400 0.75rem var(--mono);
  letter-spacing: 0.06em;
}
.hero-bottom a {
  display: flex;
  gap: 15px;
  align-items: center;
}
.hero-caption {
  color: var(--muted);
}
.hero-side {
  position: absolute;
  right: 34px;
  top: 50%;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
  font: 0.75rem var(--mono);
  letter-spacing: 0.18em;
  color: #d8d1bc;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 13px 23px;
  min-height: 48px;
  font-size: 0.875rem;
  border: 1px solid var(--line);
  line-height: 1.4;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.button.primary {
  background: var(--amber);
  color: #101518;
  border-color: var(--amber);
}
.button:hover {
  background: #293238;
  border-color: var(--amber);
}
.button.primary:hover {
  background: #f1cf99;
  color: #101518;
}
.button.ghost {
  border-color: #8a969d;
}
.actions {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}
.text-link {
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #687178;
  padding: 7px 0;
}
.text-link:hover {
  color: var(--amber);
  border-color: var(--amber);
}
.section {
  padding: 100px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 35px;
  margin-bottom: 44px;
}
.section-head h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-top: 16px;
}
.section-head .intro {
  max-width: 350px;
  color: var(--muted);
  font-size: 0.95rem;
}
.section-head .text-link {
  white-space: nowrap;
}
.chapter-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.chapter-card {
  position: relative;
  isolation: isolate;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  overflow: hidden;
  background: #0a1014;
}
.chapter-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  filter: brightness(0.5) saturate(0.6);
  transition:
    transform 0.7s,
    filter 0.7s;
}
.chapter-card:after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(0deg, #091015 4%, transparent 90%);
}
.chapter-card:hover img {
  transform: scale(1.04);
  filter: brightness(0.75) saturate(0.9);
}
.chapter-card .roman {
  font: 2.5rem var(--serif);
  color: #e2c28f;
}
.chapter-card h3 {
  font-size: 1.75rem;
  line-height: 1.16;
  margin: 10px 0 17px;
}
.chapter-card .eyebrow {
  font-size: 0.6875rem;
  color: #d3b487;
}
.chapter-card .card-arrow {
  font-size: 1.3rem;
}
.interlude {
  padding: 64px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}
.interlude blockquote {
  font: clamp(1.65rem, 2.5vw, 2.6rem) / 1.4 var(--serif);
  max-width: 860px;
  margin: 0;
}
.interlude .attribution {
  font: 0.75rem var(--mono);
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-top: 18px;
}
.interlude .signal-symbol {
  color: var(--amber);
  font: 2.6rem var(--serif);
  display: block;
  margin-bottom: 15px;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 20px;
}
.photo-card {
  min-width: 0;
}
.photo-card a {
  display: block;
  overflow: hidden;
  background: var(--deep);
}
.photo-card img {
  aspect-ratio: 4/5;
  object-fit: cover;
  transition:
    transform 0.6s,
    filter 0.6s;
}
.photo-card a:hover img {
  transform: scale(1.025);
  filter: brightness(1.08);
}
.photo-card figcaption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.photo-card h3 {
  font-size: 1.125rem;
}
.photo-card figcaption .meta {
  font: 0.6875rem var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.photo-grid.editorial-grid .photo-card:nth-child(3n + 2) {
  margin-top: 60px;
}
.photo-grid.editorial-grid .photo-card:nth-child(3n + 2) img {
  aspect-ratio: 4/5;
}
.archive-grid {
  columns: 4;
  column-gap: 20px;
}
.archive-grid .photo-card {
  break-inside: avoid;
  margin-bottom: 25px;
}
.archive-grid .photo-card img {
  aspect-ratio: auto;
}
.archive-grid .photo-card figcaption {
  padding: 12px 0;
}
.archive-grid .photo-card h3 {
  font-size: 1rem;
}
.archive-grid .photo-card .meta {
  display: none;
}
.duet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.duet h2 {
  font-size: clamp(2.5rem, 4.4vw, 4.6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 20px 0 24px;
}
.duet .body-copy p {
  color: var(--muted);
  margin: 18px 0;
}
.duet .text-link {
  margin-top: 15px;
}
.duet-photo {
  position: relative;
}
.duet-photo img {
  aspect-ratio: 4/5;
  object-fit: cover;
}
.duet-photo:after {
  content: '';
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1px solid #514731;
  z-index: -1;
}
.full-panel {
  position: relative;
  isolation: isolate;
  padding: 95px 0;
  min-height: 550px;
  background: var(--deep);
  overflow: hidden;
}
.full-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% 50%;
  z-index: -3;
  filter: brightness(0.55);
}
.full-panel:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #080f13 10%, #080f13b0 45%, #080f1300);
  z-index: -2;
}
.full-panel h2 {
  font-size: clamp(3rem, 5.7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  max-width: 650px;
  margin: 25px 0;
}
.full-panel p:not(.eyebrow) {
  max-width: 450px;
  color: #c7cbd0;
  margin-bottom: 28px;
}
.stat-line {
  display: flex;
  gap: 30px;
  margin: 28px 0;
}
.stat-line strong {
  font: 2rem var(--serif);
  color: var(--amber);
}
.stat-line span {
  font-size: 0.8125rem;
  color: var(--muted);
  display: block;
}
.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 75px 0;
  border-top: 1px solid var(--line);
}
.cta-band h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
}
.cta-band p {
  color: var(--muted);
  margin-top: 17px;
  max-width: 550px;
}
.page-intro {
  padding: 80px 0 60px;
}
.page-intro h1 {
  font-size: clamp(3.5rem, 6.5vw, 6.4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin: 22px 0;
}
.page-intro .lead {
  max-width: 670px;
  color: var(--muted);
  font-size: 1.1rem;
}
.page-intro .eyebrow a:hover {
  color: var(--ink);
}
.about-opening {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-opening .page-intro {
  padding: 70px 0;
}
.about-opening .portrait {
  position: relative;
}
.about-opening .portrait img {
  aspect-ratio: 1/1;
  object-fit: cover;
}
.about-opening .portrait .photo-note {
  position: absolute;
  bottom: 15px;
  right: 15px;
  padding: 7px 12px;
  background: #0c141bdd;
  font: 0.6875rem var(--mono);
}
.prose {
  font-size: 1.05rem;
  color: #c5cbd0;
}
.prose p {
  margin-bottom: 22px;
}
.prose h2 {
  font-size: 2.25rem;
  color: var(--ink);
  margin: 50px 0 20px;
  line-height: 1.2;
}
.prose h3 {
  font-size: 1.5rem;
  color: var(--ink);
  margin: 30px 0 15px;
}
.prose a {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--amber);
}
.prose ul {
  padding-left: 24px;
}
.prose li {
  margin: 10px 0;
}
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 60px 0;
  border-top: 1px solid var(--line);
}
.principles h3 {
  font-size: 1.7rem;
  margin: 15px 0;
}
.principles p {
  color: var(--muted);
}
.chapter-hero {
  position: relative;
  min-height: 640px;
  isolation: isolate;
  display: flex;
  align-items: end;
  background: #090e11;
  overflow: hidden;
}
.chapter-hero > img {
  position: absolute;
  inset: 0;
  z-index: -3;
  object-fit: cover;
  height: 100%;
  filter: brightness(0.65);
  object-position: 50% 40%;
}
.chapter-hero:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #101518 0%, #10151877 55%, #10151822);
  z-index: -2;
}
.chapter-hero .wrap {
  padding-top: 130px;
  padding-bottom: 65px;
}
.chapter-hero h1 {
  font-size: clamp(3.5rem, 6.9vw, 7rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
  max-width: 900px;
  margin: 24px 0;
}
.chapter-hero .chapter-deck {
  font-size: 1.1rem;
  max-width: 620px;
  color: #ccd0d2;
}
.chapter-story {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding: 70px 0;
}
.chapter-story .prose {
  max-width: 720px;
}
.chapter-story .chapter-label {
  font: 5rem/1 var(--serif);
  color: #56626a;
}
.chapter-story .eyebrow {
  margin-top: 20px;
}
.chapter-next {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 55px 0;
  border-top: 1px solid var(--line);
}
.chapter-next h2 {
  font-size: 2.7rem;
  margin-top: 12px;
}
.chapter-next .button {
  flex: none;
}
.filter-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(180px, 260px) auto;
  gap: 20px;
  align-items: end;
  margin-bottom: 32px;
}
.filter-bar label {
  display: block;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 8px;
}
input,
select,
textarea {
  background: #141d22;
  color: var(--ink);
  border: 1px solid #65717a;
  border-radius: 0;
  min-height: 48px;
  padding: 10px 14px;
  width: 100%;
  line-height: 1.5;
}
input::placeholder,
textarea::placeholder {
  color: #919fa9;
}
select {
  appearance: auto;
}
textarea {
  resize: vertical;
}
.filter-count {
  font: 0.8125rem var(--mono);
  color: var(--muted);
  padding-bottom: 12px;
  white-space: nowrap;
}
.empty-results {
  padding: 55px 20px;
  text-align: center;
  border: 1px solid var(--line);
  margin: 20px 0;
}
.empty-results h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.clear-filter {
  color: var(--amber);
  text-decoration: underline;
  padding: 10px;
}
.music-opening {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 75px 0 50px;
}
.music-opening h1 {
  font-size: clamp(3.5rem, 5.4vw, 5.7rem);
  line-height: 1.04;
  margin: 24px 0;
  letter-spacing: -0.04em;
}
.music-opening p {
  color: var(--muted);
  max-width: 640px;
}
.music-opening > img {
  aspect-ratio: 6/5;
  object-fit: cover;
}
.download-help {
  border: 1px solid var(--line);
  padding: 0 24px;
  margin-bottom: 35px;
}
.download-help summary {
  padding: 20px 0;
  cursor: pointer;
  font-size: 0.95rem;
}
.download-help ol {
  color: var(--muted);
  padding-left: 20px;
  margin: 0 0 24px;
}
.download-help li {
  padding: 5px 0;
}
.artist-section {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 40px;
  padding: 35px 0;
  border-top: 1px solid var(--line);
}
.artist-section h2 {
  font-size: 2rem;
}
.artist-section .artist-count {
  font: 0.75rem var(--mono);
  color: var(--muted);
  margin-top: 9px;
}
.album-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.album-link {
  background: var(--surface);
  border: 1px solid #344048;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  height: 100%;
  min-height: 105px;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.album-link:hover {
  background: #232f35;
  border-color: var(--amber);
}
.album-id {
  color: var(--amber);
  font: 0.6875rem var(--mono);
  align-self: start;
  margin-top: 3px;
}
.album-title {
  display: block;
  font-size: 1rem;
  line-height: 1.45;
}
.album-format {
  display: block;
  font: 0.6875rem var(--mono);
  color: var(--muted);
  margin-top: 7px;
  letter-spacing: 0.03em;
}
.album-link svg {
  margin-left: auto;
  color: var(--amber);
}
.album-link .album-text {
  flex: 1;
}
.music-extras {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  padding: 28px 0;
}
.kingdom-intro {
  max-width: 850px;
}
.cast-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 22px;
}
.character {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  scroll-margin-top: 115px;
}
.character img {
  aspect-ratio: 1/1;
  object-fit: cover;
  margin: 20px 0;
  filter: saturate(0.7);
}
.character h2,
.character h3 {
  font-size: 1.9rem;
  line-height: 1.15;
  margin: 14px 0;
}
.character p {
  font-size: 0.94rem;
  color: var(--muted);
}
.character blockquote {
  border-left: 1px solid var(--amber);
  padding-left: 16px;
  margin: 22px 0 0;
  font: 1.12rem/1.5 var(--serif);
  color: #e5d0b0;
}
.character .eyebrow {
  font-size: 0.6875rem;
}
.character .text-link {
  margin-top: 22px;
}
.order-panel {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 65px;
  align-items: center;
}
.order-panel h2 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin: 20px 0;
}
.order-panel p {
  color: var(--muted);
}
.seats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.seat {
  background: var(--bg);
  padding: 20px 15px;
  scroll-margin-top: 110px;
}
.seat span {
  font: 0.75rem var(--mono);
  color: var(--amber);
  display: block;
  margin-bottom: 6px;
}
.seat strong {
  font: 1.2rem var(--serif);
}
.seat.unassigned {
  color: #abb4ba;
}
.seat.unassigned span {
  color: #abb4ba;
}
.satellite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
.world-note {
  border: 1px solid var(--line);
  padding: 24px 28px;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 50px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.service-card {
  border: 1px solid var(--line);
  padding-bottom: 28px;
}
.service-card img {
  aspect-ratio: 4/3;
  object-fit: cover;
}
.service-card h2 {
  font-size: 1.8rem;
  padding: 25px 25px 12px;
}
.service-card p {
  color: var(--muted);
  padding: 0 25px;
}
.service-card .text-link {
  margin: 20px 25px 0;
}
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}
.process article {
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.process h3 {
  font-size: 1.8rem;
  margin: 15px 0;
}
.process p {
  color: var(--muted);
}
.faq {
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0 0;
}
.faq summary {
  font: 1.4rem var(--serif);
  padding: 25px 0;
  cursor: pointer;
}
.faq details p {
  max-width: 780px;
  color: var(--muted);
  padding: 0 25px 25px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
}
.contact-info h2 {
  font-size: 2.6rem;
  margin: 0 0 15px;
}
.contact-info .lead {
  color: var(--muted);
  max-width: 450px;
}
.contact-links {
  margin-top: 35px;
  border-top: 1px solid var(--line);
}
.contact-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: 1.5rem var(--serif);
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  overflow-wrap: anywhere;
}
.contact-links a:hover {
  color: var(--amber);
}
.contact-links small {
  font: 0.6875rem var(--mono);
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 5px;
}
.contact-form {
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
.contact-form > p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 25px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field {
  margin-bottom: 18px;
}
.form-field label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 7px;
}
.form-field label span {
  font-size: 0.75rem;
  color: var(--muted);
}
.form-note {
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 14px 0 0;
}
.form-note a {
  text-decoration: underline;
}
.form-feedback {
  font-size: 0.875rem;
  margin-top: 17px;
  color: var(--amber);
}
.email-copy {
  border: 1px solid var(--line);
  padding: 15px;
  margin-top: 20px;
}
.email-copy textarea {
  margin: 10px 0;
  min-height: 200px;
}
.map-shell {
  position: relative;
  border: 1px solid var(--line);
  background: var(--deep);
  min-height: 420px;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
}
.map-shell:before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, #213b4566, transparent 65%);
  z-index: -1;
}
.map-prompt {
  max-width: 540px;
  text-align: center;
  padding: 45px 25px;
}
.map-prompt h3 {
  font-size: 2.4rem;
  margin: 14px 0;
}
.map-prompt p {
  color: var(--muted);
  margin-bottom: 22px;
}
.map-shell iframe {
  border: 0;
  width: 100%;
  height: 460px;
  display: block;
}
.service-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding-top: 22px;
  color: var(--muted);
  font-size: 0.875rem;
}
.policy {
  max-width: 820px;
  padding-bottom: 90px;
}
.policy .policy-note {
  border: 1px solid var(--line);
  padding: 25px;
  margin-bottom: 35px;
}
.policy h2 {
  scroll-margin-top: 120px;
}
.site-footer {
  background: var(--deep);
  padding: 60px 0 30px;
  border-top: 1px solid var(--line);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}
.footer-title {
  font: 2.4rem var(--serif);
  letter-spacing: -0.025em;
}
.footer-brand p {
  color: var(--muted);
  max-width: 350px;
  font-size: 0.875rem;
  margin: 18px 0;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 0.875rem;
}
.footer-links .eyebrow {
  margin-bottom: 9px;
}
.footer-links a:hover {
  color: var(--amber);
}
.voice-directory {
  padding: 28px 0;
  margin-top: 35px;
  border-top: 1px solid var(--faint);
  border-bottom: 1px solid var(--faint);
}
.voice-directory .voices {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 19px;
  margin-top: 14px;
}
.voice-directory a {
  font-size: 0.75rem;
  color: var(--muted);
  min-height: 28px;
  padding: 3px 0;
}
.voice-directory a:hover {
  color: var(--amber);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.75rem;
}
.footer-legal {
  display: flex;
  gap: 21px;
  flex-wrap: wrap;
}
.footer-legal button {
  padding: 0;
  color: var(--muted);
  font-size: 0.75rem;
}
.footer-legal a:hover,
.footer-legal button:hover {
  color: var(--amber);
}
.footer-secret {
  margin-top: 28px;
  font: 0.6875rem var(--mono);
  color: #91a0aa;
  letter-spacing: 0.06em;
}
.footer-secret button {
  font: inherit;
  color: inherit;
  padding: 0;
}
.footer-secret button:hover {
  color: var(--amber);
}
.consent-panel {
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 70;
  width: min(410px, calc(100% - 44px));
  background: #1a252b;
  border: 1px solid #55636d;
  padding: 23px;
  box-shadow: 0 10px 50px #0006;
}
.consent-panel h2 {
  font: 1.2rem var(--serif);
  margin-bottom: 9px;
}
.consent-panel p {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #c4cdd2;
}
.consent-panel a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.consent-panel .actions {
  gap: 10px;
  margin-top: 16px;
}
.consent-panel .button {
  flex: 1;
  font-size: 0.8125rem;
  padding: 10px 13px;
  min-height: 44px;
}
.transmission {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 55;
  width: min(395px, calc(100% - 40px));
  border: 1px solid #7f7052;
  background: #10191ff5;
  padding: 24px 28px;
  box-shadow: 0 20px 80px #0009;
  animation: signal-enter 0.5s ease-out;
}
.transmission .transmission-close {
  position: absolute;
  right: 7px;
  top: 7px;
  width: 32px;
  height: 32px;
  font-size: 1.3rem;
  color: var(--muted);
}
.transmission blockquote {
  font: 1.35rem/1.45 var(--serif);
  margin: 17px 0;
}
.transmission .transmission-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.transmission .transmission-footer a,
.transmission .transmission-footer button {
  font: 0.6875rem var(--mono);
  color: var(--muted);
  padding: 5px 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.transmission .transmission-footer a {
  color: var(--amber);
}
@keyframes signal-enter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
dialog.lightbox {
  border: 1px solid var(--line);
  background: #0a1014;
  color: var(--ink);
  padding: 0;
  width: min(1400px, calc(100vw - 40px));
  max-width: none;
  max-height: calc(100svh - 40px);
  overflow: auto;
}
dialog::backdrop {
  background: #02070af2;
}
.lightbox-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  min-height: 70vh;
}
.lightbox-media {
  display: grid;
  place-items: center;
  background: #060b0e;
  position: relative;
  min-height: 300px;
}
.lightbox-media img {
  width: 100%;
  height: 76svh;
  object-fit: contain;
  max-height: 850px;
}
.lightbox-details {
  padding: 70px 30px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lightbox-details h2 {
  font-size: 2rem;
  line-height: 1.15;
  margin: 15px 0 20px;
}
.lightbox-details p {
  font-size: 0.875rem;
  color: var(--muted);
}
.lightbox-details .lb-caption {
  font: 1.1rem/1.55 var(--serif);
  color: #d2bf9e;
  margin-bottom: 22px;
}
.lightbox-close {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 3;
  width: 44px;
  height: 44px;
  font-size: 1.4rem;
  background: #101a20;
  border: 1px solid var(--line);
}
.lightbox-controls {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.lightbox-controls button {
  width: 48px;
  height: 44px;
  border: 1px solid #596771;
  display: grid;
  place-items: center;
}
.lightbox-controls span {
  font: 0.75rem var(--mono);
  color: var(--muted);
  align-self: center;
  margin-left: auto;
}
.lightbox .text-link {
  margin-top: 25px;
  font-size: 0.8125rem;
}
.not-found {
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.not-found h1 {
  font-size: 5rem;
  line-height: 1.1;
  margin: 20px 0;
}
.not-found p {
  margin: 20px 0;
  color: var(--muted);
}
.photo-caption {
  flex: 1;
  min-width: 0;
}
.photo-collection {
  font: 0.625rem/1.6 var(--mono);
  color: var(--amber);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 5px;
}
/* Named chapter photography: full compositions and original sequence. */
.photo-grid.full-frame-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px 32px;
  align-items: start;
}
.full-frame-grid .photo-card img {
  aspect-ratio: auto;
  height: auto;
}
.photo-card .frame-number {
  font: 0.6875rem var(--mono);
  color: var(--amber);
  min-width: 22px;
  align-self: baseline;
  padding-top: 6px;
}
.photo-card figcaption h3 {
  flex: 1;
}
.photo-card figcaption .meta {
  max-width: 100px;
  text-align: right;
}
.duet-photo.uncropped-photo img,
.about-opening .uncropped-photo img {
  aspect-ratio: auto;
  height: auto;
}
.chapter-card.chapter-type {
  border: 1px solid var(--faint);
  background: radial-gradient(ellipse at 90% 5%, #293234 0%, #0d1418 75%);
}
.chapter-type:before {
  content: attr(data-numeral);
  position: absolute;
  right: 2%;
  top: -15%;
  font: clamp(15rem, 38vw, 34rem) / 1 var(--serif);
  color: #e7bf8009;
  z-index: -1;
  pointer-events: none;
}
.chapter-card.chapter-type:before {
  font-size: 13rem;
  right: -10%;
  top: 0;
  color: #e7bf800d;
}
.chapter-hero.chapter-type {
  min-height: 480px;
  background: radial-gradient(ellipse at 75% 30%, #253237, #090e11 72%);
}
.chapter-sound {
  padding-top: 50px;
  padding-bottom: 65px;
}
.chapter-sound .text-link {
  margin-top: 15px;
}
@media (max-width: 700px) {
  .photo-grid.full-frame-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .uncropped-photo img {
    aspect-ratio: auto;
  }
  .chapter-hero.chapter-type {
    min-height: 440px;
  }
  .photo-card .frame-number {
    padding-top: 5px;
  }
}
@media (min-width: 1700px) {
  .hero {
    min-height: 900px;
  }
}
@media (max-width: 1180px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .main-nav {
    gap: 19px;
  }
  .brand {
    min-width: 170px;
  }
  .brand strong {
    font-size: 0.82rem;
  }
  .brand span {
    font-size: 0.63rem;
  }
  .header-inner {
    gap: 18px;
  }
  .header-contact {
    padding: 9px 12px;
  }
  .chapter-card {
    padding: 20px;
    min-height: 315px;
  }
  .chapter-card h3 {
    font-size: 1.45rem;
  }
  .duet {
    gap: 50px;
  }
  .cast-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-grid {
    gap: 45px;
  }
  .archive-grid {
    columns: 3;
  }
  .artist-section {
    grid-template-columns: 180px 1fr;
    gap: 25px;
  }
  .album-link {
    padding: 16px;
  }
  .order-panel {
    gap: 40px;
  }
  .chapter-story {
    gap: 40px;
  }
}
@media (max-width: 1100px) {
  .menu-toggle {
    display: block;
  }
  .header-contact {
    display: none;
  }
  .header-inner {
    height: 76px;
  }
  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    background: #101a20;
    padding: 20px 32px 30px;
    border-bottom: 1px solid var(--line);
    max-height: calc(100svh - 76px);
    overflow-y: auto;
    gap: 0;
  }
  .main-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav > a,
  .nav-chapters > summary {
    min-height: 50px;
  }
  .nav-chapters .chapter-menu {
    position: static;
    width: 100%;
    padding: 0;
    border: 0;
    border-left: 1px solid var(--amber);
    margin: 10px 0 15px;
    box-shadow: none;
    background: transparent;
  }
  .chapter-menu a {
    padding: 12px 18px;
  }
  .hero {
    min-height: 730px;
  }
  .hero h1 {
    font-size: 6.5rem;
  }
  .chapter-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .chapter-card:nth-last-child(-n + 2) {
    min-height: 260px;
  }
  .chapter-card h3 {
    font-size: 1.8rem;
  }
  .section {
    padding: 75px 0;
  }
  .interlude {
    gap: 40px;
    grid-template-columns: 1fr 2fr;
  }
  .duet {
    gap: 35px;
  }
  .about-opening {
    gap: 40px;
  }
  .cast-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .music-opening {
    gap: 40px;
  }
  .artist-section {
    display: block;
  }
  .artist-section header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
  }
  .contact-grid {
    gap: 30px;
  }
  .contact-form {
    padding: 23px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .filter-bar {
    grid-template-columns: 1fr 220px;
  }
  .filter-count {
    grid-column: 1/-1;
    padding: 0;
  }
  .service-grid {
    gap: 16px;
  }
  .service-card h2 {
    font-size: 1.5rem;
    padding: 20px 18px 12px;
  }
  .service-card p {
    padding: 0 18px;
  }
  .service-card .text-link {
    margin: 18px;
  }
  .order-panel {
    grid-template-columns: 1fr;
  }
  .order-panel .body-copy {
    max-width: 660px;
  }
  .lightbox-inner {
    grid-template-columns: 1fr 270px;
  }
  .lightbox-details {
    padding: 65px 25px 30px;
  }
  .footer-top {
    gap: 35px;
  }
}
@media (max-width: 700px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .hero {
    min-height: 690px;
    min-height: calc(100svh - 76px);
    align-items: end;
  }
  .hero-inner {
    padding-top: 150px;
    padding-bottom: 105px;
  }
  .hero-photo {
    object-position: 63% 50%;
    filter: brightness(0.7);
  }
  .hero:after {
    background: linear-gradient(0deg, #101518 0%, #0a1219b5 32%, #0a121933 78%);
  }
  .hero h1 {
    font-size: clamp(4.5rem, 17vw, 7rem);
    margin: 22px 0;
  }
  .hero p.hero-copy {
    font-size: 0.95rem;
    max-width: 300px;
    margin: 22px 0;
  }
  .hero .eyebrow {
    max-width: 260px;
    line-height: 1.9;
    font-size: 0.6875rem;
  }
  .hero .button {
    font-size: 0.8125rem;
    padding: 12px 17px;
    gap: 14px;
  }
  .hero .actions {
    gap: 12px;
  }
  .hero-side {
    display: none;
  }
  .hero-bottom {
    bottom: 23px;
    font-size: 0.6875rem;
  }
  .hero-caption {
    display: none;
  }
  .top-rule {
    font-size: 0.6875rem;
  }
  .top-rule span:last-child {
    display: none;
  }
  .section {
    padding: 60px 0;
  }
  .section-head {
    display: block;
    margin-bottom: 30px;
  }
  .section-head h2 {
    font-size: 2.7rem;
  }
  .section-head .intro,
  .section-head .text-link {
    margin-top: 20px;
  }
  .chapter-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .chapter-card,
  .chapter-card:nth-last-child(-n + 2) {
    min-height: 280px;
    padding: 20px;
  }
  .chapter-card h3 {
    font-size: 1.7rem;
  }
  .chapter-card:last-child {
    grid-column: 1/-1;
    min-height: 235px;
  }
  .chapter-card:last-child img {
    object-position: 50% 43%;
  }
  .chapter-card .roman {
    font-size: 2rem;
  }
  .interlude {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 45px 0;
  }
  .interlude .signal-symbol {
    display: none;
  }
  .interlude blockquote {
    font-size: 1.7rem;
  }
  .photo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px 14px;
  }
  .photo-card figcaption {
    align-items: start;
    padding: 12px 0;
  }
  .photo-card h3 {
    font-size: 1rem;
  }
  .photo-card figcaption .meta {
    display: none;
  }
  .photo-grid.editorial-grid .photo-card:nth-child(3n + 2) {
    margin-top: 0;
  }
  .photo-grid.editorial-grid .photo-card:nth-child(even) {
    margin-top: 35px;
  }
  .duet,
  .about-opening {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .duet h2 {
    font-size: 3rem;
  }
  .duet-photo {
    margin-right: 15px;
  }
  .duet-photo img {
    aspect-ratio: 5/4;
  }
  .duet-photo:after {
    inset: 15px -15px -15px 15px;
  }
  .full-panel {
    min-height: 530px;
    padding: 65px 0;
  }
  .full-panel > img {
    object-position: 62% 50%;
    filter: brightness(0.4);
  }
  .full-panel:after {
    background: linear-gradient(90deg, #080f13b0, #080f1333);
  }
  .full-panel h2 {
    font-size: 3.4rem;
  }
  .full-panel p:not(.eyebrow) {
    font-size: 0.95rem;
  }
  .cta-band {
    grid-template-columns: 1fr;
    padding: 50px 0;
    gap: 28px;
  }
  .cta-band h2 {
    font-size: 2.8rem;
  }
  .cta-band .button {
    justify-self: start;
  }
  .page-intro {
    padding: 55px 0 40px;
  }
  .page-intro h1 {
    font-size: 3.7rem;
  }
  .page-intro .lead {
    font-size: 1rem;
  }
  .about-opening .page-intro {
    padding: 50px 0 0;
  }
  .about-opening .portrait img {
    aspect-ratio: auto;
  }
  .principles {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 45px 0;
  }
  .principles article {
    max-width: 500px;
  }
  .chapter-hero {
    min-height: 620px;
  }
  .chapter-hero h1 {
    font-size: 3.8rem;
  }
  .chapter-hero .wrap {
    padding-bottom: 40px;
  }
  .chapter-hero .chapter-deck {
    font-size: 1rem;
  }
  .chapter-story {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 45px 0;
  }
  .chapter-story aside {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .chapter-story .chapter-label {
    font-size: 3.5rem;
  }
  .chapter-story .eyebrow {
    margin: 0;
  }
  .chapter-next h2 {
    font-size: 1.9rem;
  }
  .chapter-next {
    padding: 35px 0;
  }
  .chapter-next .button {
    padding: 12px;
    gap: 0;
    font-size: 0;
  }
  .chapter-next .button svg {
    width: 24px;
    height: 24px;
  }
  .archive-grid {
    columns: 2;
    column-gap: 14px;
  }
  .archive-grid .photo-card {
    margin-bottom: 20px;
  }
  .filter-bar {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px 0;
  }
  .filter-count {
    grid-column: auto;
    font-size: 0.75rem;
  }
  .music-opening {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 50px 0 35px;
  }
  .music-opening h1 {
    font-size: 3.8rem;
  }
  .music-opening > img {
    aspect-ratio: 2/1;
  }
  .music-opening .stat-line {
    margin-bottom: 0;
  }
  .album-list {
    grid-template-columns: 1fr;
  }
  .album-link {
    min-height: 95px;
  }
  .artist-section header {
    align-items: baseline;
  }
  .artist-section h2 {
    font-size: 1.8rem;
  }
  .cast-grid {
    gap: 35px 20px;
  }
  .character h2,
  .character h3 {
    font-size: 1.7rem;
  }
  .character img {
    margin: 15px 0;
  }
  .character p {
    font-size: 0.875rem;
  }
  .character blockquote {
    font-size: 1.05rem;
    padding-left: 12px;
  }
  .character .eyebrow {
    font-size: 0.625rem;
    letter-spacing: 0.09em;
  }
  .satellite-grid {
    grid-template-columns: 1fr;
  }
  .seats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .seat {
    padding: 16px 12px;
  }
  .seat strong {
    font-size: 1.03rem;
  }
  .order-panel h2 {
    font-size: 2.9rem;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .service-card img {
    aspect-ratio: 16/9;
  }
  .service-card h2 {
    font-size: 2rem;
  }
  .service-card h2,
  .service-card p {
    padding-left: 25px;
    padding-right: 25px;
  }
  .service-card .text-link {
    margin-left: 25px;
  }
  .process {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq summary {
    font-size: 1.23rem;
    line-height: 1.4;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .contact-links a {
    font-size: 1.4rem;
  }
  .contact-form {
    padding: 23px;
  }
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .map-shell {
    min-height: 350px;
  }
  .map-shell iframe {
    height: 380px;
  }
  .map-prompt h3 {
    font-size: 2rem;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-title {
    font-size: 2.5rem;
  }
  .site-footer {
    padding: 45px 0 25px;
  }
  .footer-bottom {
    font-size: 0.6875rem;
    gap: 18px;
  }
  .footer-legal {
    gap: 12px 18px;
  }
  .footer-legal button {
    font-size: 0.6875rem;
  }
  .consent-panel {
    bottom: 15px;
    left: 15px;
    width: calc(100% - 30px);
    padding: 20px;
  }
  .transmission {
    right: 15px;
    bottom: 15px;
    width: calc(100% - 30px);
    padding: 23px;
  }
  .lightbox-inner {
    display: block;
    min-height: 0;
  }
  .lightbox-media img {
    height: 55svh;
    min-height: 240px;
  }
  .lightbox-details {
    padding: 25px;
  }
  .lightbox-details h2 {
    font-size: 1.7rem;
    margin: 10px 0;
  }
  .lightbox-details .lb-caption {
    margin-bottom: 12px;
  }
  .lightbox-details .text-link {
    margin-top: 12px;
  }
  .lightbox-controls {
    margin-top: 18px;
  }
  dialog.lightbox {
    width: calc(100vw - 24px);
    max-height: calc(100svh - 24px);
  }
  .prose {
    font-size: 1rem;
  }
  .prose h2 {
    font-size: 1.8rem;
  }
  .policy .policy-note {
    padding: 20px;
  }
  .world-note {
    padding: 20px;
    font-size: 0.875rem;
  }
}
@media (max-width: 380px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 4.6rem;
  }
  .actions .button {
    padding: 12px 14px;
  }
  .chapter-card {
    padding: 16px;
  }
  .chapter-card h3 {
    font-size: 1.45rem;
  }
  .cast-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-links a {
    font-size: 1.2rem;
  }
  .seats {
    grid-template-columns: 1fr 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .transmission {
    animation: none;
  }
  .photo-card a:hover img,
  .chapter-card:hover img {
    transform: none;
  }
}
@media print {
  .site-header,
  .site-footer,
  .consent-panel,
  .transmission,
  .filter-bar,
  .actions,
  .lightbox,
  .map-shell {
    display: none !important;
  }
  body {
    background: white;
    color: black;
  }
  .wrap {
    width: 100%;
  }
  a {
    color: black;
  }
  .hero,
  .chapter-hero {
    min-height: 0;
    padding: 30px 0;
  }
  .hero-photo,
  .chapter-hero > img,
  .hero:after,
  .chapter-hero:after {
    display: none;
  }
  .hero h1,
  .chapter-hero h1 {
    color: black;
    font-size: 3rem;
  }
  .section {
    padding: 30px 0;
  }
  .prose,
  .muted,
  .eyebrow {
    color: #333;
  }
  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .photo-card {
    break-inside: avoid;
  }
  .archive-grid {
    columns: 3;
  }
}

/* AURELIAN: The margins are part of the page.
   CRIMINAL CODE: Finally, somewhere to write back. */
.photo-card figcaption:has(.photo-story) {
  flex-wrap: wrap;
  align-items: baseline;
}
.photo-card .photo-story {
  flex-basis: 100%;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 10px 0 8px;
}
.footer-brand .brand-motto {
  font: italic 1.35rem var(--serif);
  color: var(--amber);
  margin: 22px 0;
}

/* Supplied character portraits retain their original colour and full framing. */
.character img.supplied-character-art {
  filter: none;
  object-fit: contain;
}

/* CORD: Start with ground that holds.
   AURELIAN: Leave the horizon open.
   CRIMINAL CODE: The future is not a deadline. */
.catalyst-vision {
  position: relative;
  isolation: isolate;
  min-height: 700px;
  min-height: calc(100svh - 88px);
  background: #0b1115;
  overflow: hidden;
}
.catalyst-vision figure {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: -2;
}
.catalyst-vision figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 65%;
}
.catalyst-vision figure:after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, #08101695, transparent 43%, #08101622 70%, #081016e6);
}
.catalyst-title {
  padding-top: 65px;
  position: relative;
}
.catalyst-title h1 {
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.045em;
  margin: 14px 0;
}
.catalyst-vision figcaption {
  position: absolute;
  right: 32px;
  bottom: 24px;
  z-index: 2;
  color: #c8ced1;
  font: 0.7rem var(--mono);
  letter-spacing: 0.09em;
}
.catalyst-status {
  position: absolute;
  bottom: 65px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.catalyst-status p {
  font: italic clamp(1.4rem, 2.5vw, 2.1rem) var(--serif);
  color: #ede7dd;
}
.catalyst-status span {
  font: 0.75rem var(--mono);
  color: var(--amber);
  letter-spacing: 0.15em;
}
.catalyst-after {
  padding-top: 42px;
  padding-bottom: 70px;
  display: grid;
  grid-template-columns: minmax(0, 720px) auto;
  gap: 60px;
  align-items: start;
}
.catalyst-note {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.catalyst-note summary {
  padding: 20px 0;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.9rem;
}
.catalyst-note .prose {
  padding: 8px 0 20px;
}
.catalyst-note .catalyst-intention {
  color: var(--amber);
  font-style: italic;
  margin-bottom: 0;
}
.catalyst-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-end;
  padding-top: 20px;
}
.catalyst-next {
  margin: 35px 0 0;
}
.catalyst-silent-teaser {
  display: block;
  position: relative;
  overflow: hidden;
  background: #0b1115;
}
.catalyst-silent-teaser img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  object-position: 50% 67%;
  transition: filter 0.25s;
}
.catalyst-silent-teaser:hover img {
  filter: brightness(1.1);
}
.teaser-arrow {
  position: absolute;
  right: 35px;
  bottom: 30px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid #d5c5a5;
  background: #0b111599;
  color: #f5eee2;
  border-radius: 50%;
}
.teaser-arrow svg {
  width: 23px;
  height: 23px;
}
@media (max-width: 700px) {
  .catalyst-vision {
    min-height: calc(100svh - 76px);
  }
  .catalyst-title {
    padding-top: 45px;
  }
  .catalyst-title h1 {
    font-size: clamp(3.6rem, 15vw, 6rem);
  }
  .catalyst-title .eyebrow {
    font-size: 0.65rem;
  }
  .catalyst-vision figure img {
    object-position: 49% 65%;
  }
  .catalyst-vision figcaption {
    right: 20px;
    bottom: 20px;
  }
  .catalyst-status {
    bottom: 60px;
  }
  .catalyst-after {
    display: block;
    padding-top: 25px;
    padding-bottom: 45px;
  }
  .catalyst-links {
    justify-content: flex-start;
    padding-top: 25px;
  }
  .catalyst-silent-teaser img {
    aspect-ratio: 1/1;
  }
  .teaser-arrow {
    right: 20px;
    bottom: 20px;
  }
}
@media print {
  .catalyst-vision {
    min-height: 0;
    padding: 20px 0;
  }
  .catalyst-vision figure {
    position: static;
  }
  .catalyst-vision figure img {
    height: auto;
  }
  .catalyst-title,
  .catalyst-status {
    position: static;
    color: #111;
    padding: 15px 0;
  }
  .catalyst-status p {
    color: #111;
  }
  .catalyst-vision figure:after {
    display: none;
  }
  .catalyst-after {
    display: block;
  }
}
/* CORD: Some things live between the frames.
   AURELIAN: Let the light hold what the words leave unsaid.
   CRIMINAL CODE: The margins are classified. The door is open. */
.chapter-reading-head {
  padding-top: 34px;
  padding-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.chapter-reading-head .eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}
.chapter-reading-head .text-link {
  font-size: 0.875rem;
  flex-shrink: 0;
}
.chapter-sequence {
  padding-bottom: 100px;
}
.chapter-movement {
  padding-top: clamp(52px, 7vw, 100px);
}
.chapter-movement + .chapter-movement {
  margin-top: clamp(52px, 7vw, 100px);
  border-top: 1px solid var(--line);
}
.story-copy {
  text-align: left;
  margin: 0 0 42px;
  max-width: 940px;
}
.story-index {
  font: 0.8rem/1.5 var(--mono);
  letter-spacing: 0.14em;
  color: var(--amber);
  margin-bottom: 20px;
}
.story-copy h2 {
  max-width: 22ch;
  font-size: clamp(2.2rem, 4.5vw, 4.6rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-wrap: balance;
  margin: 0 0 24px;
  overflow-wrap: break-word;
}
.story-copy > p:last-child {
  max-width: 60ch;
  font-size: 1.125rem;
  line-height: 1.85;
  color: #bfc8cd;
  margin: 0;
}
.story-copy strong {
  font-weight: 600;
  color: var(--ink);
}
.chapter-sequence .reading-feature {
  grid-column: 1 / -1;
}
.chapter-sequence .photo-story {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 64ch;
}
.chapter-sequence .reading-feature .photo-story {
  flex-basis: 100%;
  max-width: none;
  padding-right: max(0px, calc(100% - 66ch));
}
.chapter-sequence .photo-card h3 {
  font-size: 1.2rem;
}
.chapter-sequence .frame-number {
  font-size: 0.8rem;
  min-width: 28px;
}
@media (max-width: 900px) {
  .chapter-reading-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .chapter-sequence {
    padding-bottom: 70px;
  }
}
@media (max-width: 700px) {
  .chapter-reading-head {
    padding-top: 25px;
    padding-bottom: 24px;
  }
  .chapter-reading-head .eyebrow {
    font-size: 0.75rem;
  }
  .story-copy {
    margin-bottom: 30px;
  }
  .story-copy h2 {
    font-size: clamp(2rem, 8.8vw, 3.4rem);
    margin-bottom: 20px;
  }
  .story-copy > p:last-child {
    font-size: 1rem;
    line-height: 1.85;
  }
  .chapter-movement {
    padding-top: 42px;
  }
  .chapter-movement + .chapter-movement {
    margin-top: 42px;
  }
  .chapter-sequence .reading-feature {
    grid-column: auto;
  }
  .chapter-sequence .reading-feature .photo-story {
    padding-right: 0;
  }
}
@media print {
  .chapter-reading-head {
    display: none;
  }
  .chapter-sequence {
    padding-bottom: 20px;
  }
  .chapter-movement,
  .chapter-movement + .chapter-movement {
    padding-top: 25px;
    margin-top: 0;
  }
  .story-copy {
    break-inside: avoid;
  }
  .story-copy h2,
  .story-copy strong,
  .story-copy > p:last-child {
    color: #111;
  }
  .story-copy h2 {
    font-size: 26pt;
  }
}
/* HOME / The flame-crown portrait anchors the story; mobile shows the full frame. */
.hero-crown .hero-photo {
  left: auto;
  right: 0;
  width: 74%;
  object-position: 55% 24%;
  filter: brightness(0.9);
}
.hero-crown:after {
  background:
    linear-gradient(90deg, #0a1117 5%, #0a1117ee 28%, #0a111777 46%, transparent 64%),
    linear-gradient(0deg, #101518, transparent 24%);
}
.hero-crown h1 {
  font-size: clamp(4.5rem, 7.7vw, 8rem);
  max-width: 630px;
}
.hero-crown .hero-copy {
  max-width: 350px;
}

/* PHOTOGRAPHY OFFERS / A clear brief, visible scope, then a direct enquiry. */
.offer-opening {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
  padding-top: 65px;
  padding-bottom: 70px;
}
.offer-price {
  font: clamp(3.5rem, 6vw, 5.5rem) / 1.15 var(--serif);
  color: var(--amber);
  margin: 24px 0 18px;
}
.offer-price span {
  display: inline-block;
  font: 0.875rem/1.5 var(--mono);
  color: var(--muted);
}
.offer-intro h1 {
  font-size: clamp(2.8rem, 4.6vw, 5rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  max-width: 14ch;
  margin: 0 0 26px;
}
.offer-intro .lead {
  font-size: 1.125rem;
  color: #c6cdd0;
  max-width: 53ch;
  margin-bottom: 30px;
}
.offer-intro .button {
  max-width: 100%;
}
.offer-reassurance {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 16px 0 20px;
}
.offer-portrait {
  align-self: center;
}
.offer-portrait img {
  width: 100%;
  height: auto;
}
.offer-portrait figcaption {
  font: 0.8rem/1.6 var(--mono);
  color: var(--muted);
  margin-top: 14px;
}
.offer-details {
  padding-top: 45px;
  border-top: 1px solid var(--line);
}
.offer-details h2,
.offer-enquiry h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.13;
  letter-spacing: -0.025em;
  margin: 18px 0 30px;
}
.offer-inclusions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.offer-inclusions article {
  border-top: 2px solid var(--amber);
  padding-top: 25px;
}
.offer-inclusions h3 {
  font-size: 1.65rem;
  line-height: 1.2;
  margin-bottom: 16px;
}
.offer-inclusions p,
.offer-scope p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
}
.offer-scope {
  padding: 30px 34px;
  border: 1px solid var(--line);
  margin-top: 38px;
  background: #131c21;
}
.offer-scope h3 {
  font-size: 1.6rem;
  line-height: 1.3;
  margin-bottom: 12px;
}
.offer-scope p {
  max-width: 90ch;
}
.photography-offer .photo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.offer-work-note {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 28px;
  max-width: 80ch;
}
.offer-enquiry {
  padding: 55px 0 75px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  border-top: 1px solid var(--line);
}
.offer-enquiry-copy > p {
  max-width: 48ch;
  color: var(--muted);
}
.offer-enquiry-copy .eyebrow {
  color: var(--amber);
}
.offer-direct {
  margin: 26px 0;
  line-height: 2;
}
.offer-direct a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 5px;
  overflow-wrap: anywhere;
}
.offer-enquiry .contact-form h3 {
  font: 2rem/1.2 var(--serif);
  margin-bottom: 16px;
}
.offer-enquiry .contact-form > p {
  font-size: 1rem;
}
.offer-related {
  padding: 30px 0 65px;
  border-top: 1px solid var(--line);
}
.offer-related > div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 35px;
  margin-top: 15px;
}
@media (max-width: 1000px) {
  .offer-opening {
    gap: 35px;
  }
  .offer-enquiry {
    gap: 40px;
  }
  .offer-inclusions {
    gap: 22px;
  }
}
@media (max-width: 700px) {
  .hero-crown {
    display: block;
    min-height: 0;
  }
  .hero-crown .hero-photo {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: none;
    z-index: 0;
  }
  .hero-crown:after {
    display: none;
  }
  .hero-crown .hero-inner {
    padding-top: 28px;
    padding-bottom: 100px;
  }
  .hero-crown h1 {
    font-size: clamp(3.5rem, 14vw, 5.5rem);
    margin-top: 18px;
  }
  .hero-crown .hero-copy {
    max-width: 100%;
  }
  .hero-crown .hero-side {
    display: none;
  }
  .offer-opening {
    grid-template-columns: 1fr;
    padding-top: 35px;
    padding-bottom: 40px;
    gap: 35px;
  }
  .offer-intro h1 {
    font-size: clamp(2.5rem, 10vw, 4rem);
    max-width: 16ch;
  }
  .offer-intro .lead {
    font-size: 1rem;
  }
  .offer-portrait {
    max-width: 480px;
  }
  .offer-inclusions {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .offer-scope {
    padding: 24px;
  }
  .photography-offer .photo-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .offer-enquiry {
    grid-template-columns: 1fr;
    padding-top: 38px;
    padding-bottom: 45px;
    gap: 35px;
  }
  .offer-related > div {
    display: grid;
    justify-items: start;
  }
}
