:root {
  color-scheme: light dark;
  --ink: #050505;
  --coal: #11100e;
  --paper: #f7f2ea;
  --paper-warm: #eee5da;
  --wine: #6d3132;
  --brass: #b9936e;
  --gold: #d8c3aa;
  --gold-dark: #8a654d;
  --ivory: #f7f2ea;
  --mist: #e4ddd3;
  --line: rgba(247, 242, 234, 0.24);
  --line-dark: rgba(5, 5, 5, 0.16);
  --soft: rgba(247, 242, 234, 0.72);
  --soft-dark: rgba(5, 5, 5, 0.66);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --display: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Raleway", "Pontano Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  line-height: 1.5;
  letter-spacing: 0;
}

body::selection {
  background: var(--gold);
  color: var(--ink);
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--ivory);
  color: var(--ink);
  padding: 0.7rem 1rem;
  border-radius: 0;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.9);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-grid;
  gap: 0.1rem;
  justify-self: start;
  min-width: 7rem;
}

.brand span {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1;
  color: var(--ivory);
}

.brand small,
.eyebrow,
.format-card p,
.contact-panel p,
.setlist small,
.site-footer {
  color: var(--soft);
}

.brand small,
.eyebrow {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow {
  color: var(--gold);
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  font-size: 0.93rem;
}

.site-nav a,
.icon-link {
  opacity: 0.84;
  transition: opacity 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.icon-link:hover,
.contact-panel a:hover {
  color: var(--gold);
  opacity: 1;
}

.header-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  justify-self: end;
  gap: 0.75rem;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.4rem;
  font-size: 0.92rem;
}

.icon-link svg,
.button svg,
.format-card svg,
.check-list svg,
.contact-panel svg,
.lightbox__close svg {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 185vh;
  overflow: clip;
  background: #000;
  --spotlight-progress: 0;
  --spotlight-text: 0;
  --spotlight-panel: 0;
  --spotlight-prelude: 1;
  --spotlight-scale: 1.035;
  --spotlight-text-y: 1.6rem;
  --spotlight-panel-y: 1.4rem;
  --spotlight-prelude-y: 0;
}

.hero__stage {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  padding: 7.2rem 2rem 1.2rem;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 58%, rgba(232, 193, 123, 0.14), transparent 29rem),
    #000;
}

.hero__media,
.hero__beam,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  opacity: var(--spotlight-progress);
  transform: scale(var(--spotlight-scale));
  transform-origin: center;
  transition: opacity 90ms linear;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  filter: saturate(0.92) contrast(1.08);
  opacity: 0.96;
}

.hero__beam {
  z-index: 1;
  opacity: var(--spotlight-progress);
  background:
    radial-gradient(ellipse at 50% 56%, rgba(216, 195, 170, 0.18), transparent 24rem),
    linear-gradient(90deg, transparent 39%, rgba(247, 242, 234, 0.08), rgba(247, 242, 234, 0.5) 50%, rgba(247, 242, 234, 0.08), transparent 61%);
  filter: blur(18px);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 3, 4, 0.92), rgba(3, 3, 4, 0.18) 28%, rgba(3, 3, 4, 0.18) 72%, rgba(3, 3, 4, 0.92)),
    linear-gradient(0deg, rgba(3, 3, 4, 0.92), transparent 28%, rgba(3, 3, 4, 0.22) 70%, rgba(3, 3, 4, 0.7)),
    radial-gradient(circle at 50% 50%, transparent, rgba(3, 3, 4, 0.68) 72%);
}

.hero__prelude {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  color: var(--ivory);
  font-family: var(--display);
  font-size: 6rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  opacity: var(--spotlight-prelude);
  text-shadow: 0 0 22px rgba(247, 242, 234, 0.18);
  transform: translateY(var(--spotlight-prelude-y));
  pointer-events: none;
}

.hero__stage::before,
.hero__stage::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 17rem;
  height: 17rem;
  pointer-events: none;
  opacity: 0.62;
}

.hero__stage::before {
  left: 1.1rem;
  bottom: 1.1rem;
  border-left: 1px solid rgba(247, 242, 234, 0.5);
  border-bottom: 1px solid rgba(247, 242, 234, 0.5);
  opacity: var(--spotlight-panel);
}

.hero__stage::after {
  right: 1.1rem;
  top: 1.1rem;
  border-right: 1px solid rgba(247, 242, 234, 0.42);
  border-top: 1px solid rgba(247, 242, 234, 0.42);
  opacity: var(--spotlight-panel);
}

.hero__content {
  position: relative;
  z-index: 2;
  align-self: center;
  justify-self: center;
  display: grid;
  justify-items: center;
  gap: 0.7rem;
  max-width: min(92vw, 62rem);
  text-align: center;
  opacity: var(--spotlight-text);
  transform: translateY(var(--spotlight-text-y));
  pointer-events: none;
}

.hero h1,
.section-heading h2,
.production__content h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 300;
  line-height: 0.98;
}

.hero h1 {
  margin-top: 0;
  font-size: 8.5rem;
  line-height: 0.92;
  color: var(--ivory);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.62);
}

.hero__content .eyebrow {
  margin: 0;
}

.hero__kicker {
  margin: 0;
  color: var(--soft);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.86);
}

.hero__signature {
  margin: 0;
  color: var(--gold);
  font-family: var(--display);
  font-size: 4.2rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.82);
}

.hero__lead {
  max-width: 38rem;
  margin: 0.25rem auto 0;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.88);
}

.hero__bottom {
  position: relative;
  z-index: 2;
  justify-self: center;
  align-self: end;
  display: grid;
  justify-items: center;
  gap: 1rem;
  width: min(100%, 48rem);
  padding-bottom: 1rem;
  text-align: center;
  opacity: var(--spotlight-panel);
  transform: translateY(var(--spotlight-panel-y));
  pointer-events: none;
}

.hero.is-lit .hero__bottom {
  pointer-events: auto;
}

.hero__quote {
  width: min(100%, 34rem);
  margin: 0;
  color: var(--soft);
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 300;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.88);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.05rem;
  padding: 0.8rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  border-color: var(--ivory);
  color: var(--ivory);
}

.button--ghost {
  border-color: rgba(247, 242, 234, 0.42);
  color: var(--ivory);
}

.button--primary:hover {
  background: var(--ivory);
  color: var(--ink);
}

.button--ghost:hover {
  border-color: var(--ivory);
  background: rgba(247, 242, 234, 0.08);
}

.hero__panel {
  position: relative;
  z-index: 2;
  justify-self: center;
  width: min(100%, 62rem);
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.46);
  backdrop-filter: blur(14px);
  opacity: var(--spotlight-panel);
  transform: translateY(var(--spotlight-panel-y));
}

.hero__panel dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
}

.hero__panel div {
  min-height: 7rem;
  padding: 1rem;
  border-left: 1px solid var(--line);
}

.hero__panel div:first-child {
  border-left: 0;
}

.hero__panel dt {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.hero__panel dd {
  margin: 0.45rem 0 0;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.2;
}

.section-pad {
  padding: 6rem 2rem;
}

.section-heading {
  max-width: 62rem;
}

.section-heading h2,
.production__content h2 {
  margin-top: 0.5rem;
  font-size: 3.25rem;
  color: var(--ivory);
  text-shadow: none;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.62fr);
  gap: 2rem;
  align-items: end;
  max-width: none;
}

.section-heading--split > p {
  margin: 0;
  color: var(--soft);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
  gap: 4rem;
  align-items: start;
}

.intro__copy {
  display: grid;
  gap: 1.2rem;
  color: var(--mist);
  font-size: 1.05rem;
}

.intro__copy p {
  margin: 0;
}

.bio-drawer {
  display: block;
  width: min(100%, 72rem);
  margin: 0 auto 3rem;
  border: 1px solid var(--line);
  background: rgba(247, 242, 234, 0.055);
  color: var(--paper);
}

.bio-drawer > summary {
  list-style: none;
}

.bio-drawer > summary::-webkit-details-marker {
  display: none;
}

.bio-banner {
  display: grid;
  grid-template-columns: minmax(8rem, 0.34fr) minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  min-height: 5.2rem;
  padding: 1rem 1.2rem;
  cursor: pointer;
}

.bio-banner__label,
.bio-banner__action {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.bio-banner strong {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 300;
  line-height: 1.05;
}

.bio-banner__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  color: var(--paper);
}

.bio-drawer[open] .bio-banner {
  border-bottom: 1px solid var(--line);
}

.bio-drawer[open] .bio-banner__action {
  background: var(--paper);
  color: var(--ink);
}

.bio-drawer[open] .bio-banner__action::before {
  content: "Cerrar";
}

.bio-drawer[open] .bio-banner__action {
  font-size: 0;
}

.bio-drawer[open] .bio-banner__action::before {
  font-size: 0.72rem;
}

.bio-drawer > .section-heading {
  display: none;
}

.bio-drawer[open] [data-reveal] {
  opacity: 1;
  transform: none;
}

.bio-drawer .section-heading h2 {
  color: var(--ink);
}

.bio-drawer .section-heading--split > p,
.bio-copy p,
.timeline-detail p,
.news-card small,
.bio-web__status {
  color: var(--soft-dark);
}

.bio-drawer .eyebrow {
  color: var(--gold-dark);
}

.bio-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin: 0;
  border: 1px solid var(--line-dark);
  border-width: 0 0 1px;
  background: var(--line-dark);
}

.bio-copy,
.timeline-panel {
  background: var(--paper-warm);
}

.bio-copy {
  display: grid;
  gap: 1.15rem;
  padding: 2rem;
}

.bio-copy p {
  max-width: 58rem;
  margin: 0;
}

.bio-copy .bio-lead {
  color: var(--ink);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.08;
}

.timeline-panel {
  display: grid;
  align-content: start;
  gap: 1px;
  background: #050505;
  overflow: hidden;
}

.timeline-detail {
  background: var(--paper-warm);
}

.timeline-panel__head {
  order: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  padding: 1.3rem;
  background: #050505;
}

.timeline-panel__head span,
.timeline-button span,
.timeline-detail span {
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.timeline-panel__head strong {
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
}

.timeline-list {
  order: 3;
  position: relative;
  display: flex;
  gap: 0;
  align-items: center;
  min-height: 12rem;
  overflow-x: auto;
  padding: 1.4rem 1.2rem 1.1rem;
  background: #000;
  scroll-snap-type: x proximity;
}

.timeline-button {
  position: relative;
  display: grid;
  place-items: center;
  flex: 1 0 9rem;
  min-height: 8.4rem;
  padding: 0 0.35rem;
  border: 0;
  background: transparent;
  color: var(--paper);
  text-align: center;
  cursor: pointer;
  scroll-snap-align: start;
  overflow: visible;
  transition: transform 160ms ease;
}

.timeline-button span {
  position: absolute;
  left: 50%;
  top: 0.15rem;
  z-index: 1;
  padding: 0.2rem 0.45rem;
  border: 1px solid rgba(247, 242, 234, 0.22);
  background: rgba(0, 0, 0, 0.82);
  color: var(--paper);
  opacity: 0;
  transform: translate(-50%, 0.3rem);
  transition: opacity 160ms ease, transform 160ms ease;
}

.timeline-button strong {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.timeline-button.is-active,
.timeline-button:hover {
  transform: translateY(-1px);
}

.timeline-button.is-active span,
.timeline-button:hover span {
  opacity: 1;
  transform: translate(-50%, -0.25rem);
}

.timeline-button__wave {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 0.22rem;
  height: 7.5rem;
  width: 100%;
  transform-origin: center bottom;
  transition: transform 180ms ease, filter 180ms ease;
}

.timeline-button__wave i {
  flex: 1 1 0;
  max-width: 0.58rem;
  min-width: 0.18rem;
  height: 0.58rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.36);
  opacity: 0.9;
  transition: height 170ms ease, opacity 170ms ease, transform 170ms ease;
}

.timeline-button.is-active .timeline-button__wave,
.timeline-button:hover .timeline-button__wave,
.timeline-button:focus-visible .timeline-button__wave {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.34));
  transform: skewX(-2deg) scaleX(1.02);
}

.timeline-button.is-active .timeline-button__wave i,
.timeline-button:hover .timeline-button__wave i,
.timeline-button:focus-visible .timeline-button__wave i {
  height: var(--level);
  opacity: 1;
  animation: waveform-move 680ms ease-in-out infinite alternate;
  animation-delay: var(--delay);
}

@keyframes waveform-move {
  0% {
    transform: scaleY(0.72) translateY(0.1rem);
  }

  100% {
    transform: scaleY(1.18) translateY(-0.08rem);
  }
}

.timeline-detail {
  order: 2;
  display: grid;
  gap: 0.7rem;
  min-height: 8rem;
  padding: 1.3rem;
  background: #000;
  color: var(--paper);
}

.timeline-detail h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 300;
  line-height: 1.05;
}

.timeline-detail span {
  color: var(--gold);
}

.timeline-detail p {
  max-width: 78rem;
  margin: 0;
  color: var(--soft);
}

.timeline-detail a {
  justify-self: start;
  min-height: 2.4rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
}

.timeline-detail a[hidden] {
  display: none;
}

.bio-web {
  display: grid;
  gap: 1.2rem;
  margin-top: 1rem;
  padding: 1.3rem;
  border: 1px solid var(--line-dark);
  background: var(--paper);
}

.bio-web__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.bio-web__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.bio-web__head h3 {
  margin: 0.35rem 0 0;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}

.bio-web__search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--line-dark);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.bio-web__search:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.news-card {
  display: grid;
  align-content: start;
  gap: 0.7rem;
  min-height: 12.5rem;
  padding: 1rem;
  background: var(--paper);
  transition: background 160ms ease;
}

.news-card:hover {
  background: #fffaf2;
}

.news-card__meta {
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.news-card strong {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.04;
}

.news-card small {
  font-size: 0.86rem;
}

.bio-web__status {
  margin: 0;
  font-size: 0.82rem;
}

.single-feature {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
  padding: 1.3rem;
  border: 1px solid var(--line-dark);
  background: var(--ink);
  color: var(--paper);
  transition: background 160ms ease, color 160ms ease;
}

.single-feature:hover {
  background: #191715;
}

.single-feature__meta {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.single-feature strong {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
}

.single-feature small {
  color: var(--soft);
  font-size: 0.95rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.experience {
  background:
    radial-gradient(circle at 50% 18%, rgba(216, 195, 170, 0.1), transparent 24rem),
    linear-gradient(180deg, #000, #080706 48%, #000);
}

.experience__intro {
  width: min(100%, 66rem);
  margin: 0 auto 3rem;
  text-align: center;
}

.experience__intro h2 {
  margin: 0.55rem 0 0;
  color: var(--ivory);
  font-family: var(--display);
  font-size: 3.7rem;
  font-weight: 300;
  line-height: 0.98;
}

.story {
  display: grid;
  grid-template-columns: minmax(22rem, 0.9fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: start;
}

.story__stage {
  position: sticky;
  top: 6rem;
  display: grid;
  align-content: end;
  min-height: calc(100vh - 8rem);
  overflow: hidden;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 36%, rgba(247, 242, 234, 0.14), transparent 16rem),
    #020203;
  box-shadow: var(--shadow);
}

.story__halo {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 50% 43%, rgba(216, 195, 170, 0.22), transparent 17rem),
    linear-gradient(90deg, transparent 41%, rgba(247, 242, 234, 0.16), transparent 59%);
  filter: blur(24px);
  opacity: 0.7;
  pointer-events: none;
}

.story__image {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 520ms ease, transform 900ms ease;
}

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

.story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.78;
}

.story__stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.92), transparent 42%, rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at 50% 46%, transparent, rgba(0, 0, 0, 0.72) 74%);
  pointer-events: none;
}

.story__caption {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.6rem;
  padding: 1rem;
}

.story__caption span,
.story__step span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 300;
}

.story__caption h3 {
  max-width: 28rem;
  margin: 0;
  color: var(--ivory);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}

.story__caption p {
  max-width: 30rem;
  margin: 0;
  color: var(--soft);
}

.story__dots {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.55rem;
  padding: 0 1rem 1rem;
}

.story__dots button {
  width: 2rem;
  height: 0.28rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(246, 234, 215, 0.28);
  cursor: pointer;
  transition: background 200ms ease, width 200ms ease;
}

.story__dots button.is-active {
  width: 3.3rem;
  background: var(--gold);
}

.story__steps {
  display: grid;
  gap: 1.5rem;
}

.story__step {
  display: grid;
  align-content: center;
  min-height: 64vh;
  padding: 2rem;
  border-left: 1px solid rgba(247, 242, 234, 0.18);
  opacity: 0.34;
  transform: translateY(20px);
  transition: opacity 320ms ease, transform 320ms ease, border-color 320ms ease;
}

.story__step.is-active {
  border-color: var(--ivory);
  opacity: 1;
  transform: translateY(0);
}

.story__step h3 {
  max-width: 36rem;
  margin: 0.7rem 0 0;
  color: var(--ivory);
  font-family: var(--display);
  font-size: 3.1rem;
  font-weight: 300;
  line-height: 1;
}

.story__step p {
  max-width: 34rem;
  margin: 1rem 0 0;
  color: var(--soft);
  font-size: 1.08rem;
}

.gallery-band {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr;
  gap: 1px;
  background: var(--line);
}

.gallery-card {
  position: relative;
  min-height: 24rem;
  padding: 0;
  border: 0;
  background: var(--coal);
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 360ms ease, opacity 180ms ease;
}

.gallery-card:hover img {
  opacity: 1;
  transform: scale(1.035);
}

.gallery-card span {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  padding: 0.44rem 0.7rem;
  background: rgba(5, 5, 5, 0.74);
  border: 1px solid var(--line);
  border-radius: 0;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.formats {
  background: var(--paper);
  color: var(--ink);
}

.formats .section-heading h2,
.booking .section-heading h2 {
  color: var(--ink);
}

.formats .section-heading--split > p,
.booking .section-heading--split > p,
.formats .format-card p,
.booking .booking-form label,
.booking .contact-panel p {
  color: var(--soft-dark);
}

.formats .eyebrow,
.booking .eyebrow {
  color: var(--gold-dark);
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.3rem;
}

.format-card {
  min-height: 15rem;
  padding: 1.3rem;
  border: 1px solid var(--line-dark);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.28);
}

.format-card svg {
  color: var(--gold-dark);
  width: 1.5rem;
  height: 1.5rem;
}

.format-card h3 {
  margin: 2.8rem 0 0.65rem;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 300;
}

.format-card p {
  margin: 0;
}

.repertoire {
  background:
    radial-gradient(circle at 22% 0%, rgba(247, 242, 234, 0.08), transparent 25rem),
    #070706;
  color: var(--ivory);
}

.repertoire .eyebrow,
.repertoire .setlist small {
  color: var(--soft);
}

.repertoire .eyebrow {
  color: var(--gold);
}

.setlist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2.5rem;
  background: var(--line);
  border: 1px solid var(--line);
}

.setlist ol {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: item;
  background: var(--line);
}

.setlist ol[start="5"] {
  counter-reset: item 4;
}

.setlist li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 5rem;
  padding: 1rem;
  background: rgba(247, 242, 234, 0.055);
  counter-increment: item;
}

.setlist li::before {
  content: counter(item, decimal-leading-zero);
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 300;
}

.setlist span {
  display: block;
  font-weight: 700;
}

.setlist small {
  display: block;
  margin-top: 0.15rem;
}

.production {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(13, 12, 11, 0.9)),
    #080b0b;
}

.production__image {
  min-height: 33rem;
  overflow: hidden;
}

.production__image img {
  width: 100%;
  height: 100%;
  min-height: 33rem;
  object-fit: cover;
  border-radius: 0;
  box-shadow: var(--shadow);
}

.production__content {
  max-width: 44rem;
}

.check-list {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: var(--mist);
}

.check-list svg {
  margin-top: 0.2rem;
  color: var(--gold);
}

.booking {
  background: var(--paper-warm);
  color: var(--ink);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 21rem;
  gap: 1rem;
  margin-top: 2.5rem;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.booking-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.95rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.booking-form__wide {
  grid-column: 1 / -1;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 0.85rem 0;
  outline: 0;
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: var(--ink);
  box-shadow: none;
}

.booking-form textarea {
  min-height: 9rem;
  resize: vertical;
}

.booking-form button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.booking-form__status {
  grid-column: 1 / -1;
  min-height: 1.35rem;
  margin: -0.25rem 0 0;
  color: var(--soft-dark);
  font-size: 0.88rem;
}

.booking-form__status.is-success {
  color: #236247;
}

.booking-form__status.is-error {
  color: #7d302a;
}

.contact-panel {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  min-height: 16rem;
  padding: 1.3rem;
  border: 1px solid var(--line-dark);
  border-radius: 0;
  background: transparent;
}

.contact-panel p {
  margin: 0 0 1rem;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.contact-panel a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.8rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: start;
  padding: 2rem;
  border-top: 1px solid var(--line);
  background: #050505;
  font-size: 0.85rem;
}

.site-footer p {
  max-width: 72rem;
  margin: 0;
}

.lightbox {
  width: min(92vw, 72rem);
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(13, 11, 10, 0.76);
  cursor: pointer;
}

.booking .button--primary {
  border-color: var(--ink);
  color: var(--ink);
}

.booking .button--primary:hover {
  background: var(--ink);
  color: var(--paper);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero h1 {
    font-size: 6.2rem;
  }

  .hero__kicker {
    font-size: 0.95rem;
  }

  .hero__signature {
    font-size: 3.65rem;
  }

  .section-heading h2,
  .production__content h2 {
    font-size: 2.55rem;
  }

  .intro,
  .bio-layout,
  .section-heading--split,
  .story,
  .production,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .news-list {
    grid-template-columns: 1fr;
  }

  .bio-web__head {
    display: grid;
  }

  .bio-web__actions {
    justify-content: flex-start;
  }

  .bio-banner {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .bio-banner__action {
    justify-self: start;
  }

  .experience__intro {
    text-align: left;
  }

  .experience__intro h2 {
    font-size: 2.75rem;
  }

  .story {
    gap: 2rem;
  }

  .story__stage {
    top: 5rem;
    min-height: 34rem;
  }

  .story__step {
    min-height: auto;
    padding: 2rem 1rem 2rem 1.4rem;
  }

  .story__step h3 {
    font-size: 2.35rem;
  }

  .format-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-band {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-card--wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 0.85rem 1rem;
  }

  .icon-link span {
    display: none;
  }

  .hero {
    min-height: 185vh;
    min-height: 185svh;
  }

  .hero__stage {
    min-height: 100vh;
    min-height: 100svh;
    padding: 6.6rem 1rem 1rem;
  }

  .hero__media img {
    object-fit: cover;
  }

  .hero__content {
    max-width: 100%;
    gap: 0.52rem;
  }

  .hero h1 {
    font-size: 3.9rem;
    line-height: 0.98;
  }

  .hero__kicker {
    font-size: 0.82rem;
  }

  .hero__signature {
    font-size: 2.8rem;
  }

  .hero__lead {
    font-size: 0.95rem;
  }

  .hero__bottom {
    gap: 0.75rem;
    padding-bottom: 0.8rem;
  }

  .hero__quote {
    font-size: 0.95rem;
  }

  .hero__panel {
    justify-self: stretch;
  }

  .hero__panel dl,
  .setlist,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .hero__panel div {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .hero__panel div:first-child {
    border-top: 0;
  }

  .section-pad {
    padding: 4rem 1rem;
  }

  [data-reveal] {
    transform: translateY(18px);
  }

  .experience__intro h2 {
    font-size: 2.2rem;
  }

  .story__stage {
    position: sticky;
    top: 4.8rem;
    min-height: 25rem;
  }

  .story__caption h3 {
    font-size: 1.55rem;
  }

  .story__step {
    min-height: auto;
  }

  .story__step h3 {
    font-size: 1.9rem;
  }

  .story__step p {
    font-size: 1rem;
  }

  .section-heading h2,
  .production__content h2 {
    font-size: 2.15rem;
  }

  .bio-copy {
    padding: 1.4rem;
  }

  .bio-copy .bio-lead {
    font-size: 1.58rem;
  }

  .bio-drawer {
    margin-bottom: 2rem;
  }

  .bio-web__head h3 {
    font-size: 1.6rem;
  }

  .single-feature strong {
    font-size: 1.75rem;
  }

  .timeline-list {
    padding: 0.75rem;
  }

  .timeline-button {
    flex-basis: 7.6rem;
    min-height: 10.5rem;
  }

  .timeline-button__wave {
    height: 5rem;
  }

  .gallery-band,
  .format-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card {
    min-height: 18rem;
  }

  .production__image,
  .production__image img {
    min-height: 24rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 1.4rem 1rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero {
    min-height: 100vh;
  }
}
