:root {
  color-scheme: light;
  --ink: #0b0c0e;
  --charcoal: #191a1e;
  --graphite: #292b31;
  --paper: #f6f4ef;
  --white: #ffffff;
  --mist: #e7e9ea;
  --gold: #e2b52f;
  --gold-light: #f3ca4f;
  --red: #c7222a;
  --blue: #22517e;
  --teal: #2c6662;
  --line: rgba(11, 12, 14, 0.15);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
  --max: 1220px;
  --display: "Bodoni MT", Didot, Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  letter-spacing: 0;
}

body.lightbox-open,
body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link:focus {
  z-index: 100;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--white);
  color: var(--ink);
}

.scroll-progress {
  position: fixed;
  z-index: 60;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 9, 11, 0.92);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
  color: var(--white);
  backdrop-filter: blur(18px) saturate(1.15);
  isolation: isolate;
  transition:
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(8, 9, 11, 0.98);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
}

.brand-lockup,
.footer-brand div {
  display: grid;
  line-height: 1.15;
}

.brand-lockup strong,
.footer-brand strong {
  font-size: 0.95rem;
}

.brand-lockup small,
.footer-brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  position: relative;
  padding: 10px 9px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.76rem;
  font-weight: 750;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 9px;
  bottom: 5px;
  left: 9px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.site-nav .nav-cta {
  margin-left: 8px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.site-nav .nav-cta::after {
  display: none;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.lead {
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.42;
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 108px 24px;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 52px;
}

.section-heading h2,
.manifesto-title h2,
.image-led-copy h2,
.book-stage-copy h2,
.visual-break-copy blockquote,
.event-copy h2,
.origin-story-copy h2,
.studio-feature-copy h2,
.sylvia-copy h2,
.contact-info h2 {
  margin-bottom: 20px;
  font-size: 3.4rem;
}

.section-heading > p:last-child,
.manifesto-copy,
.image-led-copy > p,
.book-stage-copy > p,
.event-copy > p,
.origin-story-copy > p,
.studio-feature-copy > p,
.sylvia-copy > p,
.contact-info > p {
  color: rgba(11, 12, 14, 0.72);
}

.section-heading-row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
}

.button-row,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 3px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);
  color: #161205;
  box-shadow: 0 14px 34px rgba(226, 181, 47, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-light);
  box-shadow: 0 18px 38px rgba(226, 181, 47, 0.26);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--red);
  border-color: var(--red);
}

.button-light {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.button-light:hover,
.button-light:focus-visible {
  border-color: var(--red);
  color: var(--red);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(5px);
}

/* Home */

.home-hero {
  position: relative;
  display: grid;
  min-height: 88svh;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-media {
  position: absolute;
  top: 32px;
  left: -6%;
  width: 112%;
  height: 120%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.1) contrast(1.07) brightness(1.06);
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.03);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 6, 8, 0.98) 0%,
      rgba(5, 6, 8, 0.88) 38%,
      rgba(5, 6, 8, 0.36) 56%,
      rgba(5, 6, 8, 0.06) 76%,
      rgba(5, 6, 8, 0.02) 100%
    ),
    linear-gradient(0deg, rgba(5, 6, 8, 0.78), rgba(5, 6, 8, 0.12) 42%, rgba(5, 6, 8, 0.02) 70%);
}

.hero-rule {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 610px);
  width: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 132px 24px 116px;
}

.home-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: 6.25rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.42);
}

.hero-deck {
  max-width: 640px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.7);
}

.hero-signature {
  position: absolute;
  right: max(22px, calc((100vw - var(--max)) / 2));
  bottom: 52px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  bottom: 42px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 7px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.62rem;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 25px;
  background: var(--gold);
  animation: scroll-cue 1.8s ease-in-out infinite;
}

@keyframes scroll-cue {
  0%,
  100% { transform: scaleY(0.45); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: bottom; }
}

.signal-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(calc(100% - 48px), var(--max));
  margin: -26px auto 0;
  background: var(--white);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.1);
}

.signal-item {
  min-height: 132px;
  padding: 25px 28px;
  border-right: 1px solid var(--line);
}

.signal-item:last-child {
  border-right: 0;
}

.signal-number,
.signal-word {
  display: block;
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 700;
}

.signal-number {
  color: var(--red);
}

.signal-item p {
  margin: 7px 0 0;
  color: rgba(11, 12, 14, 0.64);
  font-size: 0.83rem;
}

.story-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 82px;
  align-items: center;
}

.story-intro-copy {
  max-width: 570px;
}

.story-intro-copy h2 {
  margin-bottom: 24px;
  font-size: 3.7rem;
}

.story-intro-copy > p:not(.eyebrow) {
  color: rgba(11, 12, 14, 0.72);
}

.editorial-image {
  position: relative;
  width: min(100%, 620px);
  justify-self: end;
  margin: 0;
}

.editorial-image::before {
  content: "";
  position: absolute;
  top: -22px;
  right: -22px;
  width: 42%;
  height: 38%;
  border-top: 3px solid var(--red);
  border-right: 3px solid var(--red);
}

.editorial-image img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 14%;
  box-shadow: var(--shadow);
}

.editorial-image figcaption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 14px 0 0 34px;
  color: rgba(11, 12, 14, 0.6);
  font-size: 0.75rem;
}

.editorial-image figcaption span {
  color: var(--ink);
  font-weight: 850;
}

.book-stage {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(380px, 1.18fr);
  gap: 88px;
  align-items: center;
  padding: 102px max(24px, calc((100vw - var(--max)) / 2));
  overflow: hidden;
  background:
    repeating-linear-gradient(90deg, transparent 0 70px, rgba(255, 255, 255, 0.035) 70px 71px),
    var(--charcoal);
  color: var(--white);
}

.book-stage-art {
  position: relative;
  display: grid;
  min-height: 550px;
  place-items: center;
}

.book-stage-art::before {
  content: "";
  position: absolute;
  inset: 18% 7% 9% 16%;
  border: 2px solid rgba(226, 181, 47, 0.64);
  transform: rotate(4deg);
}

.book-stage-art img {
  position: relative;
  width: min(80%, 360px);
  box-shadow: 28px 30px 0 rgba(34, 81, 126, 0.62), var(--shadow);
  transform: rotate(-3deg);
  transition: transform 300ms ease;
}

.book-stage-art:hover img {
  transform: rotate(-1deg) translateY(-5px);
}

.book-stage-copy {
  max-width: 680px;
}

.book-stage-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: 4.15rem;
}

.book-stage-copy h2 i {
  color: var(--gold);
  font-weight: 400;
}

.book-subtitle {
  margin: 14px 0 26px;
  color: var(--gold) !important;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.book-stage-copy > p {
  color: rgba(255, 255, 255, 0.72);
}

.chapter-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.chapter-rail span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line-light);
  background: var(--ink);
  color: var(--white);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 40px;
  padding: 17px 0;
  animation: ticker 32s linear infinite;
}

.ticker span {
  font-family: var(--display);
  font-size: 1.25rem;
  white-space: nowrap;
}

.ticker span:nth-child(3n + 1) { color: var(--gold); }
.ticker span:nth-child(3n + 2) { color: var(--white); }
.ticker span:nth-child(3n) { color: #8db9e5; }

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.legacy-preview {
  padding-bottom: 116px;
}

.credit-lines {
  border-top: 1px solid var(--ink);
}

.credit-line {
  display: grid;
  grid-template-columns: 54px minmax(280px, 1fr) minmax(170px, 0.45fr);
  gap: 28px;
  align-items: center;
  min-height: 126px;
  border-bottom: 1px solid var(--line);
  transition: padding 180ms ease, background-color 180ms ease;
}

.credit-line:hover {
  padding-inline: 16px;
  background: var(--white);
}

.credit-line > span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 850;
}

.credit-line small {
  color: rgba(11, 12, 14, 0.56);
  font-size: 0.72rem;
  font-weight: 750;
  text-transform: uppercase;
}

.credit-line h3 {
  margin: 3px 0 0;
  font-size: 2rem;
}

.credit-line > p {
  margin: 0;
  color: rgba(11, 12, 14, 0.62);
  text-align: right;
}

.visual-break {
  position: relative;
  display: grid;
  min-height: 72svh;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.visual-break > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.68;
}

.visual-break::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 6, 8, 0.98), rgba(5, 6, 8, 0.7) 45%, rgba(5, 6, 8, 0.06));
}

.visual-break-copy {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 86px 24px;
}

.visual-break-copy blockquote {
  max-width: 680px;
  margin: 0;
  color: var(--white);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 320px;
  gap: 16px;
}

.gallery-tile,
.gallery-piece {
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 4px;
  background: var(--charcoal);
  cursor: pointer;
}

.gallery-tile img,
.gallery-piece img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, opacity 320ms ease;
}

.gallery-tile:nth-child(3) img {
  object-position: center 38%;
}

.gallery-tile:hover img,
.gallery-tile:focus-visible img,
.gallery-piece:hover img,
.gallery-piece:focus-visible img {
  transform: scale(1.045);
  opacity: 0.78;
}

.gallery-tile span,
.gallery-piece > span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 44px 17px 15px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent);
  color: var(--white);
  text-align: left;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.event-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(390px, 1.22fr);
  gap: 76px;
  align-items: center;
  padding: 96px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--blue);
  color: var(--white);
}

.event-poster img {
  width: min(100%, 460px);
  box-shadow: var(--shadow);
}

.event-copy {
  max-width: 640px;
}

.event-copy h2 {
  color: var(--white);
}

.event-copy > p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-callout,
.page-next {
  padding: 96px 24px;
  background:
    linear-gradient(90deg, rgba(6, 7, 9, 0.96), rgba(6, 7, 9, 0.74)),
    url("../img/melvin-portrait-bw.jpg") center / cover;
  color: var(--white);
}

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

.contact-callout h2,
.page-next h2 {
  max-width: 850px;
  margin-bottom: 30px;
  font-size: 3.45rem;
}

/* Interior heroes */

.page-hero {
  position: relative;
  display: grid;
  min-height: 68svh;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.96), rgba(5, 6, 8, 0.66) 48%, rgba(5, 6, 8, 0.14)),
    linear-gradient(0deg, rgba(5, 6, 8, 0.72), transparent 44%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 150px 24px 86px;
}

.page-hero-content h1 {
  max-width: 900px;
  margin: 0;
  font-size: 5rem;
}

.page-hero-content > p:not(.eyebrow) {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.page-index {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 32px;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.page-photo-caption {
  position: absolute;
  bottom: 32px;
  left: max(24px, calc((100vw - var(--max)) / 2));
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.page-hero-about > img {
  top: 72px;
  bottom: auto;
  height: calc(100% - 72px);
  object-position: 68% 5%;
}

.page-hero-about {
  min-height: 72svh;
}

.page-hero-book > img {
  object-position: center 43%;
}

.page-hero-book .page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.96), rgba(5, 6, 8, 0.75) 46%, rgba(5, 6, 8, 0.2)),
    linear-gradient(0deg, rgba(5, 6, 8, 0.72), transparent 48%);
}

.page-hero-legacy > img {
  object-position: center 40%;
}

.page-hero-gallery > img,
.page-hero-contact > img {
  top: 72px;
  bottom: auto;
  height: calc(100% - 72px);
  object-position: center 5%;
  transform: scale(1.08);
}

.page-hero-gallery,
.page-hero-contact {
  min-height: 72svh;
}

.page-hero-events > img {
  object-position: center 42%;
}

.page-hero-events .page-hero-content {
  padding-left: min(52%, 660px);
}

/* About */

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(380px, 1.15fr);
  gap: 86px;
  align-items: start;
}

.manifesto-title {
  position: sticky;
  top: 100px;
}

.manifesto-copy p {
  margin-bottom: 22px;
}

.image-led-band {
  display: grid;
  grid-template-columns: minmax(380px, 1.15fr) minmax(320px, 0.85fr);
  align-items: stretch;
  background: var(--mist);
}

.image-led-media {
  min-height: 680px;
  margin: 0;
}

.image-led-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.image-led-copy {
  align-self: center;
  padding: 80px max(34px, calc((100vw - var(--max)) / 2));
  padding-left: 70px;
}

.timeline-section {
  padding-bottom: 124px;
}

.life-timeline {
  border-top: 1px solid var(--ink);
}

.timeline-entry {
  position: relative;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 50px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-entry::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 154px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--red);
  border-radius: 50%;
  background: var(--paper);
}

.timeline-year {
  color: var(--red);
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
}

.timeline-entry > div:last-child {
  max-width: 760px;
}

.timeline-entry h3 {
  margin-bottom: 9px;
  font-size: 1.9rem;
}

.timeline-entry p {
  margin: 0;
  color: rgba(11, 12, 14, 0.68);
}

.sylvia-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 560px;
  background: var(--charcoal);
  color: var(--white);
  scroll-margin-top: 80px;
}

.sylvia-image {
  min-height: 560px;
}

.sylvia-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08);
}

.sylvia-copy {
  align-self: center;
  max-width: 680px;
  padding: 82px max(36px, calc((100vw - var(--max)) / 2));
  padding-left: 72px;
}

.sylvia-copy h2 {
  color: var(--white);
}

.sylvia-copy > p {
  color: rgba(255, 255, 255, 0.74);
}

.dedication-line {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--gold) !important;
  font-family: var(--display);
  font-size: 1.18rem;
}

.credential-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.credential-block {
  min-height: 310px;
  padding: 34px 26px;
  border-right: 1px solid var(--line);
}

.credential-block:last-child {
  border-right: 0;
}

.credential-block > span,
.range-item > span {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.credential-block h3 {
  margin: 74px 0 14px;
  font-size: 1.9rem;
}

.credential-block p {
  color: rgba(11, 12, 14, 0.66);
}

/* Book */

.book-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(400px, 1.22fr);
  gap: 86px;
  align-items: center;
}

.book-detail-art {
  position: relative;
}

.book-detail-art > img {
  width: min(100%, 410px);
  box-shadow: 24px 28px 0 var(--blue), var(--shadow);
}

.book-meta {
  width: min(100%, 410px);
  margin: 48px 0 0;
}

.book-meta > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.book-meta dt {
  color: rgba(11, 12, 14, 0.56);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.book-meta dd {
  margin: 0;
  font-weight: 700;
}

.book-detail-copy h2 {
  margin-bottom: 22px;
  font-size: 3.8rem;
}

.book-detail-copy > p {
  color: rgba(11, 12, 14, 0.72);
}

.origin-story {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(320px, 0.8fr);
  gap: 80px;
  align-items: center;
  padding: 100px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--blue);
  color: var(--white);
}

.origin-story-copy > p {
  color: rgba(255, 255, 255, 0.76);
}

.origin-story-quote {
  position: relative;
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.origin-story-quote > span {
  position: absolute;
  top: -32px;
  left: 26px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 7rem;
  line-height: 1;
}

.origin-story-quote blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: 1.75rem;
  line-height: 1.35;
}

.chapter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.chapter-card {
  min-height: 320px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color 200ms ease, transform 200ms ease;
}

.chapter-card:nth-child(2n) {
  border-right: 0;
}

.chapter-card:hover {
  background: var(--white);
  transform: translateY(-4px);
}

.chapter-card > span {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.chapter-card h3 {
  max-width: 430px;
  margin: 74px 0 14px;
  font-size: 2rem;
}

.chapter-card p {
  max-width: 480px;
  color: rgba(11, 12, 14, 0.66);
}

.book-dedication {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  background: var(--charcoal);
  color: var(--white);
}

.book-dedication-image {
  min-height: 560px;
}

.book-dedication-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-dedication-copy {
  align-self: center;
  max-width: 650px;
  padding: 82px max(34px, calc((100vw - var(--max)) / 2));
  padding-left: 72px;
}

.book-dedication-copy h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 3.5rem;
}

.book-dedication-copy > p {
  color: rgba(255, 255, 255, 0.74);
}

.action-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.action-panel {
  position: relative;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.action-panel:hover,
.action-panel:focus-visible {
  border-color: var(--red);
  transform: translateY(-5px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.1);
}

.action-panel > span {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 850;
}

.action-panel h3 {
  margin: 58px 0 10px;
  font-size: 1.8rem;
}

.action-panel p {
  color: rgba(11, 12, 14, 0.62);
}

.action-panel b {
  position: absolute;
  right: 24px;
  bottom: 22px;
}

/* Legacy */

.discography-band {
  padding: 100px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: var(--white);
}

.discography-heading {
  max-width: 650px;
  margin-bottom: 54px;
}

.discography-heading h2 {
  margin-bottom: 14px;
  font-size: 3.55rem;
}

.discography-heading > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.discography-list {
  border-top: 1px solid rgba(255, 255, 255, 0.44);
}

.discography-row {
  display: grid;
  grid-template-columns: 55px minmax(280px, 1fr) minmax(230px, 0.68fr);
  gap: 28px;
  align-items: center;
  min-height: 132px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: background-color 180ms ease, padding 180ms ease;
}

.discography-row:hover {
  padding-inline: 15px;
  background: rgba(255, 255, 255, 0.05);
}

.track-number {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 850;
}

.discography-row h3 {
  margin: 0 0 4px;
  color: var(--white);
  font-size: 2rem;
}

.discography-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.82rem;
}

.discography-row > div:last-child {
  display: grid;
}

.discography-row strong {
  font-size: 0.9rem;
}

.discography-row small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.52);
  text-transform: uppercase;
}

.creative-range-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.range-item {
  min-height: 300px;
  padding: 34px;
  background: var(--paper);
  transition: background-color 180ms ease;
}

.range-item:hover {
  background: var(--white);
}

.range-item h3 {
  margin: 72px 0 14px;
  font-size: 2rem;
}

.range-item p {
  color: rgba(11, 12, 14, 0.66);
}

.studio-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  background: var(--mist);
}

.studio-feature-copy {
  align-self: center;
  max-width: 650px;
  padding: 82px max(34px, calc((100vw - var(--max)) / 2));
  padding-right: 72px;
}

.studio-feature-media {
  display: grid;
  min-height: 560px;
  grid-template-rows: 1fr auto;
  align-items: center;
  margin: 0;
  padding-top: 36px;
  overflow: hidden;
  background: #111317;
}

.studio-feature-media img {
  width: auto;
  max-width: 100%;
  max-height: 520px;
  justify-self: center;
  object-fit: contain;
}

.studio-feature-media figcaption {
  width: 100%;
  padding: 10px 14px;
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
}

.legacy-sylvia .sylvia-image img {
  object-position: center;
}

.affiliation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.affiliation-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 24px;
  min-height: 120px;
  align-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.affiliation-item:nth-child(2n) {
  border-right: 0;
}

.affiliation-item span {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 850;
}

.affiliation-item strong {
  font-family: var(--display);
  font-size: 1.45rem;
}

/* Gallery */

.gallery-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 38px;
  margin-bottom: 42px;
}

.gallery-toolbar h2 {
  margin: 0;
  font-size: 3.35rem;
}

.filter-control {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--line);
  background: var(--white);
}

.filter-control button {
  min-height: 40px;
  padding: 8px 13px;
  border: 0;
  border-radius: 2px;
  background: transparent;
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-control button:hover,
.filter-control button:focus-visible,
.filter-control button.is-active {
  background: var(--ink);
  color: var(--white);
}

.gallery-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 260px;
  grid-auto-flow: dense;
  gap: 12px;
}

.gallery-piece {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-piece-wide {
  grid-column: span 2;
}

.gallery-piece-tall {
  grid-row: span 2;
}

.gallery-piece.is-filtered {
  display: none;
}

.gallery-piece > span {
  display: grid;
  text-transform: none;
}

.gallery-piece > span b {
  color: var(--gold);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.gallery-piece.media-focus-right img {
  object-position: 68% 28%;
}

.gallery-piece.media-focus-top img {
  object-position: center 18%;
}

.gallery-piece.media-contain img {
  object-fit: contain;
}

.gallery-piece.media-archive {
  background: #111317;
}

.gallery-piece.media-book {
  background: #e8e5de;
}

.media-inquiry {
  padding: 100px 24px;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.96), rgba(5, 6, 8, 0.72)),
    url("../img/melvin-studio.jpg") center / cover;
  color: var(--white);
}

.media-inquiry-copy {
  width: min(100%, var(--max));
  margin: 0 auto;
  max-width: 720px;
}

.media-inquiry h2 {
  margin-bottom: 20px;
  font-size: 3.5rem;
}

.media-inquiry-copy > p {
  color: rgba(255, 255, 255, 0.76);
}

/* Events */

.event-status {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(380px, 1.2fr);
  gap: 76px;
  padding-block: 64px;
  border-bottom: 1px solid var(--line);
}

.event-status-label {
  display: grid;
}

.event-status-label span {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.event-status-label strong {
  margin-top: 8px;
  font-family: var(--display);
  font-size: 1.75rem;
}

.event-status-copy p {
  color: rgba(11, 12, 14, 0.68);
}

.featured-appearance {
  display: grid;
  grid-template-columns: minmax(330px, 0.88fr) minmax(390px, 1.12fr);
  gap: 84px;
  align-items: center;
  padding: 100px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--charcoal);
  color: var(--white);
}

.featured-appearance-art {
  margin: 0;
}

.featured-appearance-art img {
  width: min(100%, 520px);
  box-shadow: var(--shadow);
}

.featured-appearance-copy h2 {
  margin-bottom: 28px;
  font-size: 3.5rem;
}

.featured-appearance-copy > p {
  color: rgba(255, 255, 255, 0.72);
}

.event-details {
  margin: 0 0 28px;
}

.event-details > div {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.event-details dt {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.event-details dd {
  margin: 0;
}

.appearance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.appearance-item {
  min-height: 280px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.appearance-item:nth-child(2n) {
  border-right: 0;
}

.appearance-item > span {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 850;
}

.appearance-item h3 {
  margin: 70px 0 12px;
  font-size: 1.95rem;
}

.appearance-item p {
  color: rgba(11, 12, 14, 0.66);
}

.event-quote-band {
  padding: 100px 24px;
  background: var(--blue);
  color: var(--white);
}

.event-quote-inner {
  width: min(100%, 980px);
  margin: 0 auto;
}

.event-quote-inner blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: 2.8rem;
  line-height: 1.2;
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 38px;
  background: var(--line);
  border: 1px solid var(--line);
}

.booking-step {
  min-height: 190px;
  padding: 24px;
  background: var(--paper);
}

.booking-step span {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 850;
}

.booking-step p {
  margin: 60px 0 0;
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1.25;
}

/* Contact */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
  gap: 82px;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 100px;
}

.contact-email {
  display: grid;
  margin-top: 30px;
  padding: 22px 0;
  border-block: 1px solid var(--ink);
  text-decoration: none;
}

.contact-email small {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-email strong {
  margin-top: 7px;
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: 1.45rem;
}

.contact-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.contact-topics span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 0.7rem;
  font-weight: 750;
}

.inquiry-form {
  display: grid;
  gap: 18px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.08);
}

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

.inquiry-form label {
  display: grid;
  gap: 7px;
}

.inquiry-form label > span {
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.inquiry-form label small {
  color: rgba(11, 12, 14, 0.48);
  font-weight: 600;
  text-transform: none;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid rgba(11, 12, 14, 0.25);
  border-radius: 2px;
  background: #fbfbfa;
  color: var(--ink);
}

.inquiry-form textarea {
  min-height: 170px;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--blue);
  outline: 2px solid rgba(34, 81, 126, 0.2);
}

.inquiry-form .button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.form-note,
.form-status {
  margin: 0;
  color: rgba(11, 12, 14, 0.56);
  font-size: 0.72rem;
}

.form-status:not(:empty) {
  padding: 10px 12px;
  border-left: 3px solid var(--teal);
  background: rgba(44, 102, 98, 0.08);
  color: var(--teal);
}

.contact-options {
  padding: 86px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--charcoal);
  color: var(--white);
}

.contact-options-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.contact-option {
  min-height: 310px;
  padding: 30px;
  background: var(--charcoal);
}

.contact-option > span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 850;
}

.contact-option h3 {
  margin: 72px 0 12px;
  color: var(--white);
  font-size: 1.85rem;
}

.contact-option p {
  color: rgba(255, 255, 255, 0.62);
}

.contact-option a {
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-closing {
  position: relative;
  display: grid;
  min-height: 620px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.contact-closing > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-closing::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 6, 8, 0.96), rgba(5, 6, 8, 0.64), rgba(5, 6, 8, 0.05));
}

.contact-closing-copy {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 80px 24px;
}

.contact-closing h2 {
  max-width: 700px;
  margin: 0;
  font-size: 3.7rem;
}

/* Footer and lightbox */

.site-footer {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(240px, 1fr);
  gap: 34px;
  align-items: center;
  padding: 32px max(24px, calc((100vw - var(--max)) / 2));
  background: #07080a;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.74rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.site-footer > p {
  margin: 0;
  text-align: right;
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  place-items: center;
  padding: 36px;
  background: rgba(0, 0, 0, 0.93);
}

.lightbox.is-open {
  display: grid;
}

.lightbox figure {
  display: grid;
  max-width: min(1100px, calc(100vw - 190px));
  max-height: 88vh;
  justify-items: center;
  margin: 0;
}

.lightbox figure img {
  max-height: 80vh;
  width: auto;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.lightbox figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.75rem;
}

.icon-button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.icon-button:hover,
.icon-button:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
}

.lightbox-previous {
  grid-column: 1;
}

.lightbox figure {
  grid-column: 2;
}

.lightbox-next {
  grid-column: 3;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 1060px) {
  .site-nav a {
    padding-inline: 6px;
    font-size: 0.69rem;
  }

  .site-nav .nav-cta {
    margin-left: 3px;
    padding-inline: 10px;
  }

  .home-hero h1 {
    font-size: 5rem;
  }

  .section-heading h2,
  .manifesto-title h2,
  .image-led-copy h2,
  .event-copy h2,
  .origin-story-copy h2,
  .studio-feature-copy h2,
  .sylvia-copy h2,
  .contact-info h2 {
    font-size: 3rem;
  }

  .story-intro,
  .book-stage,
  .event-feature,
  .book-detail,
  .featured-appearance,
  .contact-layout {
    gap: 52px;
  }

  .gallery-mosaic {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .gallery-tile:last-child {
    grid-column: span 2;
  }

  .gallery-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .site-header {
    min-height: 72px;
    padding-inline: 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    z-index: 2;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    height: calc(100vh - 72px);
    height: calc(100dvh - 72px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgba(8, 9, 11, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 16px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-family: var(--display);
    font-size: 1.45rem;
    text-transform: none;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .nav-cta {
    margin: 14px 0 0;
    padding: 14px;
    text-align: center;
  }

  .home-hero {
    min-height: 84svh;
  }

  .hero-media {
    object-position: 60% top;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(5, 6, 8, 0.99), rgba(5, 6, 8, 0.78) 58%, rgba(5, 6, 8, 0.12)),
      linear-gradient(90deg, rgba(5, 6, 8, 0.64), rgba(5, 6, 8, 0.08));
  }

  .hero-content {
    align-self: end;
    padding: 124px 20px 76px;
  }

  .home-hero h1 {
    font-size: 4.2rem;
  }

  .hero-signature {
    display: none;
  }

  .signal-strip {
    width: 100%;
    margin-top: 0;
  }

  .story-intro,
  .book-stage,
  .event-feature,
  .manifesto-grid,
  .image-led-band,
  .sylvia-feature,
  .book-detail,
  .origin-story,
  .book-dedication,
  .studio-feature,
  .featured-appearance,
  .event-status,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .manifesto-title,
  .contact-info {
    position: static;
  }

  .image-led-media,
  .sylvia-image,
  .book-dedication-image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .studio-feature-media {
    min-height: 0;
    padding-top: 24px;
  }

  .studio-feature-media img {
    width: 100%;
    max-height: none;
  }

  .image-led-copy,
  .sylvia-copy,
  .book-dedication-copy,
  .studio-feature-copy {
    max-width: none;
    padding: 70px 24px;
  }

  .book-stage-art {
    min-height: 480px;
  }

  .book-stage-copy h2 {
    font-size: 3.6rem;
  }

  .event-poster img,
  .featured-appearance-art img {
    margin-inline: auto;
  }

  .credential-columns,
  .action-panels,
  .contact-options-inner {
    grid-template-columns: 1fr;
  }

  .credential-block {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .page-hero {
    min-height: 60svh;
  }

  .page-hero-content h1 {
    font-size: 4rem;
  }

  .page-hero-events .page-hero-content {
    padding-left: 24px;
  }

  .page-hero-events .page-hero-overlay {
    background:
      linear-gradient(0deg, rgba(5, 6, 8, 0.96), rgba(5, 6, 8, 0.72) 55%, rgba(5, 6, 8, 0.25)),
      linear-gradient(90deg, rgba(5, 6, 8, 0.5), transparent);
  }

  .credit-line,
  .discography-row {
    grid-template-columns: 45px 1fr;
  }

  .credit-line > p,
  .discography-row > div:last-child {
    grid-column: 2;
    text-align: left;
  }

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

  .gallery-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .site-footer > p {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .brand-lockup small {
    display: none;
  }

  .hero-media {
    top: 72px;
    left: 0;
    width: 100%;
    height: 58%;
    object-position: 72% 12%;
    filter: saturate(1.08) contrast(1.05) brightness(1.08);
    transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.02);
  }

  .hero-overlay {
    background:
      linear-gradient(
        0deg,
        rgba(5, 6, 8, 1) 0%,
        rgba(5, 6, 8, 0.96) 38%,
        rgba(5, 6, 8, 0.58) 58%,
        rgba(5, 6, 8, 0.06) 82%,
        rgba(5, 6, 8, 0.01) 100%
      ),
      linear-gradient(90deg, rgba(5, 6, 8, 0.5), rgba(5, 6, 8, 0.12) 62%, rgba(5, 6, 8, 0.01));
  }

  .section {
    padding: 76px 18px;
  }

  .section-heading h2,
  .manifesto-title h2,
  .image-led-copy h2,
  .book-stage-copy h2,
  .event-copy h2,
  .origin-story-copy h2,
  .studio-feature-copy h2,
  .sylvia-copy h2,
  .contact-info h2,
  .media-inquiry h2,
  .featured-appearance-copy h2,
  .contact-closing h2,
  .contact-callout h2,
  .page-next h2 {
    font-size: 2.45rem;
  }

  .home-hero {
    min-height: 82svh;
  }

  .home-hero h1 {
    font-size: 3.35rem;
  }

  .hero-deck {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions,
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .button-row .button {
    width: 100%;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-scroll {
    display: none;
  }

  .signal-strip {
    grid-template-columns: 1fr;
  }

  .signal-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .story-intro {
    gap: 48px;
  }

  .story-intro-copy h2 {
    font-size: 2.7rem;
  }

  .editorial-image figcaption {
    grid-template-columns: 1fr;
    gap: 3px;
    padding-left: 0;
  }

  .editorial-image {
    width: min(100%, 520px);
    justify-self: center;
  }

  .editorial-image::before {
    top: -10px;
    right: -10px;
    width: 42%;
    height: auto;
    aspect-ratio: 1;
  }

  .book-stage,
  .event-feature,
  .origin-story,
  .featured-appearance {
    padding: 74px 18px;
  }

  .book-stage-art {
    min-height: 400px;
  }

  .book-stage-art img {
    width: min(76%, 330px);
    box-shadow: 16px 18px 0 rgba(34, 81, 126, 0.62), var(--shadow);
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-tile:last-child {
    grid-column: span 1;
  }

  .gallery-tile {
    aspect-ratio: 4 / 3;
  }

  .event-poster img {
    width: 100%;
  }

  .page-hero {
    min-height: 58svh;
  }

  .page-hero-content {
    padding: 120px 18px 70px;
  }

  .page-hero-content h1 {
    font-size: 3.2rem;
  }

  .page-index {
    display: none;
  }

  .page-photo-caption {
    right: 18px;
    bottom: 18px;
    left: 18px;
    font-size: 0.62rem;
  }

  .page-hero-about > img {
    object-position: 62% center;
  }

  .manifesto-grid {
    gap: 34px;
  }

  .timeline-entry {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-left: 24px;
  }

  .timeline-entry::before {
    top: 50px;
    left: 0;
  }

  .chapter-grid,
  .creative-range-grid,
  .affiliation-grid,
  .appearance-grid,
  .booking-steps {
    grid-template-columns: 1fr;
  }

  .chapter-card,
  .range-item,
  .appearance-item,
  .affiliation-item {
    border-right: 0;
  }

  .book-detail-art > img {
    width: calc(100% - 24px);
    box-shadow: 14px 16px 0 var(--blue), var(--shadow);
  }

  .origin-story-quote {
    padding: 38px 24px;
  }

  .origin-story-quote blockquote {
    font-size: 1.45rem;
  }

  .gallery-wall {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-piece,
  .gallery-piece-wide,
  .gallery-piece-tall {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 4 / 3;
  }

  .gallery-piece.media-portrait {
    aspect-ratio: 4 / 5;
  }

  .gallery-piece.media-poster {
    aspect-ratio: 1;
  }

  .gallery-piece.media-book {
    aspect-ratio: 2 / 3;
  }

  .filter-control {
    width: 100%;
  }

  .filter-control button {
    flex: 1 1 45%;
  }

  .event-quote-inner blockquote {
    font-size: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .inquiry-form {
    padding: 24px 18px;
  }

  .contact-closing {
    min-height: 520px;
  }

  .lightbox {
    grid-template-columns: 45px minmax(0, 1fr) 45px;
    padding: 18px;
  }

  .lightbox figure {
    max-width: calc(100vw - 118px);
  }

  .lightbox .icon-button {
    width: 40px;
    height: 40px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
