:root {
  --ink: #0b0d0d;
  --ink-soft: #151818;
  --paper: #f0ede5;
  --paper-bright: #faf7ef;
  --acid: #dfff52;
  --coral: #ff705e;
  --blue: #8fcaff;
  --muted: #77766f;
  --line-dark: rgba(11, 13, 13, .16);
  --line-light: rgba(255, 255, 255, .15);
  --radius: 1.6rem;
  --radius-sm: .9rem;
  --shadow: 0 28px 100px rgba(0, 0, 0, .2);
  --content: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

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

a { color: inherit; }
button { font: inherit; }

.skip-link {
  position: fixed;
  top: .7rem;
  left: .7rem;
  z-index: 1000;
  padding: .7rem 1rem;
  color: var(--ink);
  background: var(--acid);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.shell {
  width: min(var(--content), calc(100% - 2.4rem));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 100;
  color: #fff;
}

.site-header.solid {
  position: relative;
  background: var(--ink);
}

.nav {
  display: flex;
  min-height: 7rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  width: 142px;
  height: auto;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,.22));
}

.brand-mark {
  display: grid;
  width: 2.2rem;
  aspect-ratio: 1;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 900;
}

.brand-copy {
  display: grid;
  gap: .05rem;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .15em;
  line-height: 1.15;
  text-transform: uppercase;
}

.brand-copy span:last-child { opacity: .55; }

.nav-links {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  min-height: 2.65rem;
  padding: 0 .95rem;
  align-items: center;
  border-radius: 999px;
  color: inherit;
  text-decoration: none;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: #050505 !important;
  background-color: #fff !important;
  background-image: none !important;
}

.menu-toggle {
  display: none;
  width: 2.9rem;
  aspect-ratio: 1;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 50%;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 1rem;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle span { margin: 4px 0; }
.nav-open .menu-toggle::before { transform: translateY(5px) rotate(45deg); }
.nav-open .menu-toggle span { opacity: 0; }
.nav-open .menu-toggle::after { transform: translateY(-5px) rotate(-45deg); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 1.1rem;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.7rem;
  height: 2px;
  background: currentColor;
  content: "";
}

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

.display {
  margin-bottom: 1.5rem;
  font-size: clamp(4.4rem, 11vw, 10rem);
  font-weight: 880;
  letter-spacing: -.08em;
  line-height: .79;
}

.display .outline {
  color: transparent;
  -webkit-text-stroke: 1.3px currentColor;
}

.section-title {
  margin-bottom: 0;
  font-size: clamp(3.2rem, 7.5vw, 7.2rem);
  font-weight: 850;
  letter-spacing: -.075em;
  line-height: .84;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  padding: 0 1.3rem;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ink);
  background: var(--acid);
  text-decoration: none;
  font-size: .77rem;
  font-weight: 850;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(223,255,82,.2);
}

.button:focus-visible,
.filter-button:focus-visible,
.lyric-toggle:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.button.ghost {
  color: #fff;
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.03);
}

.button.ghost:hover { background: rgba(255,255,255,.1); box-shadow: none; }

.home-hero {
  position: relative;
  min-height: max(780px, 100svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.home-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,7,7,.96) 0%, rgba(5,7,7,.78) 34%, rgba(5,7,7,.12) 67%, rgba(5,7,7,.28) 100%),
    linear-gradient(0deg, rgba(5,7,7,.82) 0%, transparent 40%),
    url("assets/wayne-hero.jpg") 65% center / cover no-repeat;
  content: "";
}

.home-hero::after,
.page-hero::after {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 78px 78px;
  content: "";
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 830px;
  padding: 10rem 0 5.5rem;
}

.hero-content .eyebrow { color: var(--acid); }

.hero-copy {
  max-width: 550px;
  margin-bottom: 2rem;
  color: rgba(255,255,255,.68);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

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

.hero-logo-stage {
  position: absolute;
  z-index: 3;
  top: clamp(14rem, 29vh, 18rem);
  left: 50%;
  width: min(50vw, 700px);
  aspect-ratio: 1603 / 935;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-logo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 22px rgba(0,0,0,.5));
  animation: logo-brush-reveal 3.8s cubic-bezier(.22,1,.36,1) .4s both;
}

.hero-logo-stage::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255,218,170,.95) 50%, transparent 62%) 180% 0 / 260% 100% no-repeat;
  content: "";
  opacity: 0;
  -webkit-mask: url("assets/wayne-signature-white.png") center / contain no-repeat;
  mask: url("assets/wayne-signature-white.png") center / contain no-repeat;
  animation: logo-light-sweep 3.8s ease-in-out 4.45s both;
}

@keyframes logo-brush-reveal {
  0% { clip-path: inset(0 100% 0 0); opacity: 0; transform: scale(.96); }
  12% { opacity: 1; }
  100% { clip-path: inset(0 0 0 0); opacity: 1; transform: scale(1); }
}

@keyframes logo-light-sweep {
  0% { opacity: 0; background-position: 180% 0; }
  18% { opacity: .95; }
  82% { opacity: .95; }
  100% { opacity: 0; background-position: -80% 0; }
}

.hero-note {
  position: absolute;
  z-index: 3;
  right: max(1.2rem, calc((100vw - var(--content)) / 2));
  bottom: 3.3rem;
  display: grid;
  max-width: 250px;
  grid-template-columns: auto 1fr;
  gap: .75rem;
  align-items: center;
  padding: .8rem 1rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 1rem;
  background: rgba(9,11,11,.62);
  backdrop-filter: blur(18px);
}

.hero-note-mark {
  display: grid;
  width: 2.6rem;
  aspect-ratio: 1;
  place-items: center;
  color: var(--ink);
  background: var(--coral);
  border-radius: 50%;
  font-weight: 900;
}

.hero-note small,
.hero-note strong { display: block; }
.hero-note small { margin-bottom: .15rem; color: rgba(255,255,255,.48); font-size: .6rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-note strong { font-size: .78rem; }

.ticker {
  overflow: hidden;
  color: var(--ink);
  background: var(--acid);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 24s linear infinite;
}

.ticker span {
  display: inline-flex;
  padding: .85rem 1.2rem;
  align-items: center;
  gap: 1.6rem;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.ticker span::after { content: "✦"; }

.section { padding: clamp(5.5rem, 10vw, 9rem) 0; }

.section-head {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2.8rem, 6vw, 5rem);
}

.section-head > p {
  max-width: 510px;
  margin: 0 0 .4rem auto;
  color: var(--muted);
  line-height: 1.7;
}

.latest {
  color: #fff;
  background: var(--ink);
}

.latest-card {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 2rem;
  background: var(--ink-soft);
  box-shadow: var(--shadow);
}

.latest-art {
  position: relative;
  display: grid;
  min-height: 470px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 43%, rgba(223,255,82,.9) 0 4%, transparent 4.5%),
    repeating-radial-gradient(circle at 48% 43%, rgba(255,255,255,.12) 0 1px, transparent 2px 24px),
    linear-gradient(145deg, #263f56, #090b0d 62%, #63312c);
}

.latest-art::after {
  position: absolute;
  inset: 1.2rem;
  display: grid;
  place-items: end start;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 1.2rem;
  color: rgba(255,255,255,.65);
  content: "WAYNE CUMMING · 2025";
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .15em;
}

.latest-disc {
  position: relative;
  width: min(68%, 320px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, #191a1a 0 2px, #080909 3px 7px);
  box-shadow: 0 28px 80px rgba(0,0,0,.45);
}

.latest-art.has-cover,
.release-art.has-cover {
  padding: 0;
  background: #050505;
  filter: none !important;
}

.latest-art.has-cover {
  width: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1;
  align-self: center;
}

.latest-art.has-cover::before,
.latest-art.has-cover::after,
.release-art.has-cover::before,
.release-art.has-cover::after {
  display: none;
}

.latest-cover,
.release-art.has-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none !important;
}

.latest-cover { object-fit: contain; }

.latest-disc::after {
  position: absolute;
  inset: 34%;
  display: grid;
  place-items: center;
  padding: .7rem;
  border-radius: 50%;
  color: var(--ink);
  background: var(--acid);
  content: "NEW\A SINGLE";
  white-space: pre;
  text-align: center;
  font-size: clamp(.5rem, 1vw, .65rem);
  font-weight: 900;
  line-height: 1.1;
}

.latest-copy {
  display: flex;
  padding: clamp(2rem, 6vw, 5rem);
  flex-direction: column;
  justify-content: center;
}

.latest-copy .eyebrow { color: var(--acid); }
.latest-copy h2 { margin-bottom: 1.2rem; font-size: clamp(3.2rem, 7vw, 6.6rem); letter-spacing: -.075em; line-height: .85; }
.latest-copy > p { max-width: 520px; margin-bottom: 2rem; color: rgba(255,255,255,.6); line-height: 1.7; }
.latest-copy .collaboration-credit { margin-bottom: .8rem; color: #fff; font-size: .72rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.collaboration { padding-bottom: 0; }

.platform-mini {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.1rem;
}

.platform-mini a {
  padding: .65rem .85rem;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: .68rem;
  font-weight: 800;
}

.platform-mini a:hover { color: #fff; border-color: rgba(255,255,255,.5); }

.songbook { background: var(--paper); }

.song-list { border-top: 1px solid var(--line-dark); }
.song-item { border-bottom: 1px solid var(--line-dark); }

.song-row {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.5rem 0;
}

.song-number { color: var(--muted); font-size: .68rem; font-weight: 850; letter-spacing: .1em; }
.song-row h3 { margin-bottom: .25rem; font-size: clamp(1.55rem, 3.5vw, 2.45rem); letter-spacing: -.05em; }
.song-row p { margin-bottom: 0; color: var(--muted); font-size: .78rem; }

.lyric-toggle {
  min-height: 2.8rem;
  padding: 0 1rem;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease;
}

.lyric-toggle:hover,
.lyric-toggle[aria-expanded="true"] { color: #fff; background: var(--ink); }

.lyric-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s cubic-bezier(.22,1,.36,1);
}

.lyric-panel[aria-hidden="false"] { grid-template-rows: 1fr; }
.lyric-inner { overflow: hidden; }

.lyric-content {
  display: grid;
  grid-template-columns: 3rem minmax(220px, .7fr) minmax(300px, 1.3fr);
  gap: 1.2rem;
  padding: .3rem 0 2.5rem;
}

.lyric-note { max-width: 330px; color: var(--muted); font-size: .86rem; line-height: 1.65; }
.lyric-text { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.25rem, 2.6vw, 1.75rem); font-style: italic; line-height: 1.55; }
.lyric-text p { margin-bottom: 0; }

.photo-story {
  color: #fff;
  background: #142128;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  grid-template-rows: repeat(2, 310px);
  gap: .9rem;
}

.photo-grid figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.photo-grid figure:first-child { grid-row: 1 / 3; }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; }
.photo-grid figure:first-child img { object-position: center 25%; }
.photo-grid figure:nth-child(2) img { object-position: center 28%; }

.photo-grid figcaption {
  position: absolute;
  inset: auto .8rem .8rem;
  padding: .55rem .7rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: .7rem;
  color: rgba(255,255,255,.75);
  background: rgba(8,10,10,.55);
  backdrop-filter: blur(12px);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.split-cta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.split-cta article {
  min-height: 350px;
  padding: clamp(2.2rem, 6vw, 5rem);
}

.split-cta article:first-child { color: var(--ink); background: var(--acid); }
.split-cta article:last-child { color: #fff; background: var(--coral); }
.split-cta h2 { max-width: 520px; margin-bottom: 1rem; font-size: clamp(2.7rem, 5.5vw, 5.5rem); letter-spacing: -.07em; line-height: .87; }
.split-cta p { max-width: 500px; margin-bottom: 2rem; line-height: 1.65; opacity: .75; }
.split-cta .button { color: #fff; background: var(--ink); }

.page-hero {
  position: relative;
  display: grid;
  min-height: 690px;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.page-hero.about-visual::before,
.page-hero.music-visual::before {
  position: absolute;
  inset: 0;
  content: "";
}

.page-hero.about-visual::before {
  background:
    linear-gradient(90deg, rgba(6,8,8,.94) 0%, rgba(6,8,8,.7) 45%, rgba(6,8,8,.18) 78%),
    linear-gradient(0deg, rgba(6,8,8,.8), transparent 45%),
    url("assets/wayne-about-hero.jpg") 64% 32% / cover no-repeat;
}

.page-hero.music-visual::before {
  background:
    linear-gradient(90deg, rgba(6,8,8,.96) 0%, rgba(6,8,8,.66) 43%, rgba(6,8,8,.18) 76%),
    linear-gradient(0deg, rgba(6,8,8,.8), transparent 45%),
    url("assets/wayne-music.jpg") 58% 42% / cover no-repeat;
}

.page-hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  padding: 11rem 0 5rem;
}

.page-hero .eyebrow { color: var(--acid); }
.page-hero .display { font-size: clamp(4.7rem, 12vw, 11rem); }
.page-hero-copy { max-width: 590px; margin-bottom: 0; color: rgba(255,255,255,.68); font-size: clamp(1rem, 2vw, 1.2rem); line-height: 1.7; }

.story-intro {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.story-portrait {
  position: sticky;
  top: 2rem;
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: var(--shadow);
}

.story-portrait img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 24%; }

.story-copy .eyebrow { color: #526b0c; }
.story-copy h2 { margin-bottom: 2rem; font-size: clamp(3rem, 7vw, 6.5rem); letter-spacing: -.075em; line-height: .87; }
.story-copy > p { max-width: 690px; color: #5d5b55; font-size: clamp(1rem, 1.7vw, 1.12rem); line-height: 1.8; }
.story-copy .lead { color: var(--ink); font-size: clamp(1.25rem, 2.4vw, 1.65rem); line-height: 1.55; }

.story-signature {
  display: block;
  width: min(260px, 74%);
  margin: 2.8rem 0 0;
}

.quote-block {
  margin: 2.7rem 0;
  padding: 2rem 0 2rem 2rem;
  border-left: 4px solid var(--acid);
}

.quote-block blockquote { margin: 0 0 1rem; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.45rem, 3vw, 2.15rem); font-style: italic; line-height: 1.45; }
.quote-block cite { color: var(--muted); font-size: .7rem; font-style: normal; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.facts {
  color: #fff;
  background: var(--ink);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .8rem;
}

.fact {
  min-height: 190px;
  padding: 1.35rem;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
}

.fact span { display: block; margin-bottom: 2.5rem; color: var(--acid); font-size: .64rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.fact strong { display: block; margin-bottom: .45rem; font-size: clamp(1.45rem, 2.7vw, 2.2rem); letter-spacing: -.045em; }
.fact p { margin-bottom: 0; color: rgba(255,255,255,.5); font-size: .78rem; line-height: 1.5; }

.visual-bio {
  color: #fff;
  background: #142128;
}

.visual-bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}

.visual-bio figure { position: relative; min-height: 560px; margin: 0; overflow: hidden; border-radius: var(--radius); }
.visual-bio img { width: 100%; height: 100%; object-fit: cover; }
.visual-bio figure:first-child img { object-position: center 18%; }
.visual-bio figure:last-child img { object-position: center 25%; }

.visual-bio-caption {
  display: grid;
  min-height: 260px;
  margin-top: .9rem;
  padding: clamp(2rem, 5vw, 4rem);
  grid-template-columns: .7fr 1.3fr;
  gap: 2rem;
  align-items: end;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--acid);
}

.visual-bio-caption h2 { margin-bottom: 0; font-size: clamp(3rem, 6vw, 5.7rem); letter-spacing: -.07em; line-height: .86; }
.visual-bio-caption p { max-width: 520px; margin: 0 0 .35rem auto; line-height: 1.7; opacity: .72; }

.platforms {
  padding: 1rem 0;
  color: #fff;
  background: var(--ink);
  border-bottom: 1px solid var(--line-light);
}

.platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  align-items: center;
}

.platform-label { margin-right: .45rem; color: rgba(255,255,255,.42); font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.platform-link {
  display: inline-flex;
  min-height: 2.65rem;
  padding: 0 .95rem;
  align-items: center;
  gap: .5rem;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-size: .7rem;
  font-weight: 800;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.platform-link::before { width: .48rem; aspect-ratio: 1; border-radius: 50%; background: var(--platform, var(--acid)); content: ""; }
.platform-link:hover { color: #fff; border-color: rgba(255,255,255,.52); background: rgba(255,255,255,.06); }

.catalogue { background: var(--paper); }

.catalogue-head { margin-bottom: 2rem; }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2.2rem;
}

.filter-button {
  min-height: 2.8rem;
  padding: 0 1rem;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.filter-button:hover,
.filter-button[aria-pressed="true"] { color: #fff; background: var(--ink); }

.release-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.release-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--paper-bright);
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.release-card:hover { transform: translateY(-5px); box-shadow: 0 22px 55px rgba(11,13,13,.12); }
.release-card[hidden] { display: none; }

.release-art {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  padding: 1.4rem;
  place-items: end start;
  overflow: hidden;
  color: #fff;
  background: var(--art, linear-gradient(145deg, #35516b, #101214));
}

.release-art::before {
  position: absolute;
  width: 68%;
  aspect-ratio: 1;
  top: -22%;
  right: -20%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 2.5rem rgba(255,255,255,.025), 0 0 0 5rem rgba(255,255,255,.015);
  content: "";
}

.release-art::after {
  position: absolute;
  inset: .8rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: calc(var(--radius) - .45rem);
  content: "";
}

.release-art strong {
  position: relative;
  z-index: 2;
  max-width: 90%;
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  letter-spacing: -.07em;
  line-height: .86;
}

.release-info { display: flex; min-height: 150px; padding: 1.15rem; flex-direction: column; }
.release-meta { margin-bottom: .65rem; color: var(--muted); font-size: .64rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.release-info h3 { margin-bottom: .4rem; font-size: 1.25rem; letter-spacing: -.035em; }
.release-info p { margin-bottom: 1rem; color: var(--muted); font-size: .78rem; line-height: 1.5; }
.release-link { margin-top: auto; align-self: flex-start; text-underline-offset: .22em; font-size: .7rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }

.preview-button {
  min-height: 2.55rem;
  margin: 0 0 1rem;
  padding: 0 .9rem;
  align-self: flex-start;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  color: #fff;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.preview-button:hover,
.preview-button:focus-visible { color: #050505; border-color: #fff; background: #fff; }

.home-preview-button { margin-bottom: 1.25rem; }

.music-note {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 2rem;
  color: #fff;
  background: var(--ink);
}

.music-note h2 { margin-bottom: 0; font-size: clamp(2.8rem, 6vw, 5.6rem); letter-spacing: -.07em; line-height: .87; }
.music-note-copy p { max-width: 540px; color: rgba(255,255,255,.58); line-height: 1.7; }

.site-footer {
  color: #fff;
  background: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 2rem;
  padding: 4rem 0;
  align-items: end;
}

.footer-main h2 { max-width: 700px; margin-bottom: 0; font-size: clamp(3.1rem, 7vw, 6.4rem); letter-spacing: -.075em; line-height: .85; }
.footer-links { display: flex; flex-direction: column; align-items: flex-end; gap: .55rem; }
.footer-links a { color: rgba(255,255,255,.66); text-decoration: none; font-size: .78rem; font-weight: 800; }
.footer-links a:hover { color: var(--acid); }

.footer-bottom {
  display: flex;
  padding: 1.5rem 0;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line-light);
  color: rgba(255,255,255,.38);
  font-size: .65rem;
}

.social-panel {
  padding: 2rem;
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  background: #000;
  text-align: center;
}

.social-panel > p {
  margin: 0 0 1.25rem;
  color: rgba(255,255,255,.52);
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: center;
}

.social-links a {
  display: inline-grid;
  width: 4.2rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  color: #fff;
  background: #000;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: #fff;
  background: rgba(255,255,255,.1);
  transform: translateY(-3px);
}

.social-links svg {
  width: 1.4rem;
  height: 1.4rem;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links .social-fill { fill: currentColor; stroke: none; }
.social-links span { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}

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

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

@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; }
  .section-head > p { margin-left: 0; }
  .latest-card { grid-template-columns: 1fr; }
  .latest-art { min-height: 420px; }
  .story-intro { grid-template-columns: .78fr 1.22fr; gap: 2.5rem; }
  .fact-grid { grid-template-columns: repeat(2, 1fr); }
  .release-grid { grid-template-columns: repeat(2, 1fr); }
  .visual-bio figure { min-height: 460px; }
}

@media (max-width: 680px) {
  .shell { width: min(var(--content), calc(100% - 1.35rem)); }

  .menu-toggle { display: grid; }
  .brand-logo { width: 112px; }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    padding: 7rem 1.2rem 2rem;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    background: rgba(11,13,13,.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
  }

  .nav-open .nav-links { opacity: 1; pointer-events: auto; }
  .nav-links a { min-height: 4rem; justify-content: center; font-size: .95rem; }

  .home-hero { min-height: 820px; }
  .home-hero::before { background: linear-gradient(0deg, rgba(5,7,7,.98) 0%, rgba(5,7,7,.74) 52%, rgba(5,7,7,.12) 100%), url("assets/wayne-hero.jpg") 67% 22% / auto 66% no-repeat, var(--ink); }
  .hero-content { padding: 30rem 0 3.3rem; }
  .display { font-size: clamp(4rem, 21vw, 7rem); }
  .hero-note { display: none; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }

  .section { padding: 4.8rem 0; }
  .latest-card { border-radius: 1.3rem; }
  .latest-art { min-height: 340px; }
  .latest-copy { padding: 2rem 1.4rem 2.5rem; }
  .song-row { grid-template-columns: 2rem minmax(0, 1fr) auto; gap: .65rem; }
  .lyric-content { grid-template-columns: 1fr; padding-left: 2.65rem; }
  .lyric-content .song-number { display: none; }

  .photo-grid { grid-template-columns: 1fr; grid-template-rows: 500px 300px 300px; }
  .photo-grid figure:first-child { grid-row: auto; }
  .split-cta { grid-template-columns: 1fr; }

  .page-hero { min-height: 750px; }
  .page-hero.about-visual::before { background: linear-gradient(0deg, rgba(6,8,8,.98) 0%, rgba(6,8,8,.7) 53%, rgba(6,8,8,.1) 100%), url("assets/wayne-about-hero.jpg") 62% 22% / auto 69% no-repeat, var(--ink); }
  .page-hero.music-visual::before { background: linear-gradient(0deg, rgba(6,8,8,.98) 0%, rgba(6,8,8,.7) 50%, rgba(6,8,8,.1) 100%), url("assets/wayne-music.jpg") 48% 20% / auto 64% no-repeat, var(--ink); }
  .page-hero-content { padding: 29rem 0 3.5rem; }
  .page-hero .display { font-size: clamp(4.1rem, 20vw, 7rem); }

  .story-intro { grid-template-columns: 1fr; }
  .story-portrait { position: relative; top: 0; width: min(85vw, 420px); }
  .quote-block { padding-left: 1.2rem; }
  .fact-grid { grid-template-columns: 1fr; }
  .visual-bio-grid { grid-template-columns: 1fr; }
  .visual-bio figure { min-height: 500px; }
  .visual-bio-caption { grid-template-columns: 1fr; }
  .visual-bio-caption p { margin-left: 0; }

  .platform-row { align-items: stretch; }
  .platform-label { width: 100%; margin-bottom: .3rem; }
  .release-grid { grid-template-columns: 1fr; }
  .release-card { max-width: 470px; }
  .release-art strong { font-size: clamp(2.6rem, 12vw, 4.2rem); }
  .music-note { grid-template-columns: 1fr; }

  .footer-main { grid-template-columns: 1fr; }
  .footer-links { align-items: flex-start; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Monochrome artist theme — inspired by Wayne's existing photographic site. */
body {
  color: #fff;
  background: #050505;
}

.home-hero::before {
  background:
    linear-gradient(0deg, rgba(4,4,4,.86) 0%, rgba(4,4,4,.18) 38%, rgba(4,4,4,.04) 72%),
    url("assets/wayne-warm-hero.jpg") 50% 36% / cover no-repeat;
}

.home-hero::after,
.page-hero::after { display: none; }

.home-hero .hero-content {
  max-width: 620px;
  padding-bottom: 3.4rem;
}

.home-hero .display {
  margin-bottom: 1.2rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 800;
  letter-spacing: .2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-note { display: none; }

.button {
  color: #050505;
  background: #fff;
}

.button:hover { box-shadow: 0 12px 35px rgba(255,255,255,.14); }
.home-hero .button.ghost { color: #fff; border-color: rgba(255,255,255,.48); }

.ticker {
  color: rgba(255,255,255,.72);
  background: #050505;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.latest,
.songbook,
.photo-story,
.catalogue {
  color: #fff;
  background: #050505;
}

.latest-card {
  border-radius: 0;
  background: #0a0a0a;
}

.latest-art {
  background:
    radial-gradient(circle at 48% 43%, rgba(255,255,255,.92) 0 4%, transparent 4.5%),
    repeating-radial-gradient(circle at 48% 43%, rgba(255,255,255,.1) 0 1px, transparent 2px 24px),
    linear-gradient(145deg, #402c2c, #080808 62%, #1d1d1d);
  filter: saturate(.45);
}

.latest-disc::after,
.platform-link::before { background: #fff; }
.latest-copy .eyebrow,
.home-hero .hero-content .eyebrow,
.page-hero .eyebrow { color: #fff; }

.section-head > p,
.song-row p,
.lyric-note,
.catalogue .section-head > p { color: rgba(255,255,255,.55); }

.song-list,
.song-item { border-color: rgba(255,255,255,.18); }
.song-number { color: rgba(255,255,255,.46); }

.lyric-toggle,
.filter-button {
  color: #fff;
  border-color: rgba(255,255,255,.28);
}

.lyric-toggle:hover,
.lyric-toggle[aria-expanded="true"],
.filter-button:hover,
.filter-button[aria-pressed="true"] {
  color: #050505;
  background: #fff;
}

.photo-story { border-top: 1px solid rgba(255,255,255,.12); }
.photo-grid figure { border-radius: 0; }

.split-cta {
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.split-cta article:first-child,
.split-cta article:last-child {
  color: #fff;
  background: #050505;
}

.split-cta article + article { border-left: 1px solid rgba(255,255,255,.14); }
.split-cta article p { color: rgba(255,255,255,.58); opacity: 1; }
.split-cta .button { color: #050505; background: #fff; }

.page-hero.about-visual::before {
  background:
    linear-gradient(0deg, rgba(5,5,5,.86), transparent 48%),
    linear-gradient(90deg, rgba(5,5,5,.62), transparent 60%),
    url("assets/wayne-about-hero.jpg") 64% 32% / cover no-repeat;
}

.page-hero.music-visual::before {
  background:
    linear-gradient(0deg, rgba(5,5,5,.86), transparent 48%),
    linear-gradient(90deg, rgba(5,5,5,.62), transparent 60%),
    url("assets/wayne-music.jpg") 58% 42% / cover no-repeat;
}

.page-hero.video-visual::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5,5,5,.88), transparent 48%),
    linear-gradient(90deg, rgba(5,5,5,.6), transparent 58%),
    url("assets/wayne-close.jpg") 50% 46% / cover no-repeat;
  content: "";
}

.page-hero.contact-visual::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5,5,5,.9), transparent 50%),
    linear-gradient(90deg, rgba(5,5,5,.68), transparent 62%);
  content: "";
  z-index: 1;
}

.contact-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.page-hero .display {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.3rem, 11vw, 10rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -.055em;
}

.page-hero.contact-visual .display { font-size: clamp(3.3rem, 9vw, 8.5rem); }

.facts,
.visual-bio,
.platforms,
.site-footer { background: #050505; }

.story-section {
  color: #050505;
  background: #f2efea;
}

.story-section .story-copy .eyebrow { color: #050505; }
.story-section .quote-block { border-left-color: #050505; }
.story-section .button { color: #fff; background: #050505; }

.visual-bio-caption {
  color: #050505;
  background: #f2efea;
  border-radius: 0;
}

.release-card {
  color: #fff;
  border-color: rgba(255,255,255,.16);
  border-radius: 0;
  background: #0c0c0c;
}

.release-card:hover { box-shadow: 0 22px 55px rgba(0,0,0,.5); }
.release-art { filter: saturate(.32) contrast(1.06); }
.release-info p,
.release-meta { color: rgba(255,255,255,.48); }

.music-note {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 0;
  background: #0a0a0a;
}

.video-section {
  color: #fff;
  background: #050505;
}

.video-grid {
  display: grid;
  gap: clamp(3.5rem, 8vw, 7rem);
}

.video-card {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(220px, .55fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.video-card:nth-child(even) .video-frame,
.video-card:nth-child(even) .video-copy { order: initial; }

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: #000;
  box-shadow: 0 28px 80px rgba(0,0,0,.36);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-index {
  display: block;
  margin-bottom: 1.4rem;
  color: rgba(255,255,255,.38);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.video-copy h2 {
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -.05em;
  line-height: .95;
}

.video-copy p {
  max-width: 390px;
  margin-bottom: 1.7rem;
  color: rgba(255,255,255,.52);
  line-height: 1.7;
}

.video-copy a {
  color: #fff;
  text-underline-offset: .3em;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.live-sessions { border-top: 1px solid rgba(255,255,255,.16); color: #fff; background: #0a0a0a; }
.live-session-grid { display: grid; gap: clamp(4rem, 9vw, 8rem); }
.live-session-card { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.live-session-card:nth-child(even) { grid-template-columns: minmax(280px, .65fr) minmax(0, 1.35fr); }
.live-session-card:nth-child(even) .self-hosted-video { order: 2; }
.self-hosted-video { display: grid; overflow: hidden; border: 1px solid rgba(255,255,255,.16); background: #000; box-shadow: 0 28px 80px rgba(0,0,0,.42); place-items: center; }
.self-hosted-video video { display: block; width: 100%; height: 100%; object-fit: contain; background: #000; }
.landscape-video { aspect-ratio: 16 / 9; }
.portrait-video { width: min(100%, 520px); aspect-ratio: 9 / 16; justify-self: center; }
.live-session-copy h3 { margin: 0 0 1.2rem; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.4rem, 5vw, 4.8rem); font-style: italic; font-weight: 500; letter-spacing: -.055em; line-height: .92; }
.live-session-copy p { max-width: 530px; color: rgba(255,255,255,.56); line-height: 1.75; }
.session-event-photo { width: min(100%, 390px); margin: 2rem 0 0; }
.session-event-photo img { display: block; width: 100%; aspect-ratio: 4 / 5; border: 1px solid rgba(255,255,255,.16); object-fit: cover; object-position: center 18%; }
.session-event-photo figcaption { margin-top: .75rem; color: rgba(255,255,255,.46); font-size: .76rem; letter-spacing: .06em; line-height: 1.55; text-transform: uppercase; }

.page-hero.live-visual::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,.96) 0%, rgba(5,5,5,.62) 45%, rgba(5,5,5,.18) 100%),
    url("assets/live-shows-hero.jpg") 66% 38% / cover no-repeat;
  content: "";
}

.live-section {
  color: #fff;
  background: #050505;
}

.live-show {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
}

.live-poster img {
  display: block;
  width: 100%;
  max-width: 560px;
  box-shadow: 0 30px 90px rgba(0,0,0,.58);
}

.live-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 1.8rem 0 2.2rem;
  color: rgba(255,255,255,.66);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.8;
}

.live-copy strong { color: #fff; }
.live-copy .button.light { color: #050505; background: #fff; }

.live-video { margin-top: clamp(5rem, 10vw, 10rem); }
.live-video .eyebrow { margin-bottom: 1.5rem; }
.live-video .video-frame { max-width: 1180px; margin: 0 auto; }

.contact-section {
  color: #fff;
  background: #050505;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(330px, .8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-intro { min-width: 0; }

.contact-intro h2 {
  max-width: 100%;
  margin-bottom: 1.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 4vw, 4rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: .88;
  overflow-wrap: normal;
}

.no-break { white-space: nowrap; }

.contact-intro p { max-width: 420px; color: rgba(255,255,255,.52); line-height: 1.7; }
.contact-intro a { color: #fff; text-underline-offset: .3em; }

.contact-form {
  display: grid;
  gap: 1.75rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(255,255,255,.17);
  background: #090909;
}
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.4rem; align-items: end; }
.form-field { display: grid; min-width: 0; gap: .7rem; }
.form-field label { font-size: .67rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 0;
  color: #fff;
  background: #0c0c0c;
  font: inherit;
}

.form-field input { min-height: 4.25rem; padding: 0 1.2rem; }
.form-field textarea { min-height: 240px; padding: 1.2rem; resize: vertical; line-height: 1.6; }
.form-field input:focus,
.form-field textarea:focus { outline: 2px solid #fff; outline-offset: 3px; border-color: #fff; }
.contact-submit { justify-self: start; border: 0; cursor: pointer; }
.form-note { margin: -.5rem 0 0; color: rgba(255,255,255,.42); font-size: .7rem; }
.form-note.is-success { color: #bdecae; }
.form-note.is-error { color: #ff9b91; }

.success-hero { min-height: 100vh; }
.success-actions { margin-top: 2rem; }
.success-actions .button.ghost { color: #fff; border-color: rgba(255,255,255,.42); background: transparent; }

.page-hero.press-visual::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5,5,5,.9), transparent 52%),
    linear-gradient(90deg, rgba(5,5,5,.78), rgba(5,5,5,.12) 68%),
    url("assets/press-kit-hero.jpg") 50% 48% / cover no-repeat;
  content: "";
}

.press-stats,
.press-credits,
.press-video,
.press-contact { color: #fff; background: #050505; }

.press-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.press-stat-grid article { display: grid; gap: .8rem; padding: 2.2rem clamp(1rem, 2.4vw, 2rem); }
.press-stat-grid article + article { border-left: 1px solid rgba(255,255,255,.16); }
.press-stat-grid strong { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.6rem, 5vw, 5.3rem); font-style: italic; font-weight: 500; line-height: .9; }
.press-stat-grid span { color: rgba(255,255,255,.54); font-size: .68rem; font-weight: 800; letter-spacing: .1em; line-height: 1.5; text-transform: uppercase; }

.press-bio { color: #050505; background: #f2efea; }
.press-bio-grid { display: grid; grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.press-bio-intro { position: sticky; top: 2rem; }
.press-bio-intro h2,
.press-contact h2 { margin-bottom: 1.7rem; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.6rem, 7vw, 7rem); font-style: italic; font-weight: 500; letter-spacing: -.065em; line-height: .86; }
.press-lead { max-width: 470px; margin-bottom: 2rem; font-size: clamp(1.15rem, 2vw, 1.45rem); line-height: 1.55; }
.press-bio-copy p { margin-bottom: 1.55rem; color: rgba(5,5,5,.72); font-size: clamp(1rem, 1.35vw, 1.16rem); line-height: 1.8; }

.press-credit-grid,
.press-release-grid,
.download-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: clamp(3rem, 7vw, 6rem); border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.press-credit-grid article { min-height: 270px; padding: clamp(1.5rem, 4vw, 3rem); border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.press-credit-grid span,
.press-release-grid span,
.download-grid span { color: rgba(255,255,255,.42); font-size: .65rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.press-credit-grid h3 { margin: 3.5rem 0 1rem; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 4vw, 3.5rem); font-style: italic; font-weight: 500; letter-spacing: -.05em; }
.press-credit-grid p { max-width: 440px; color: rgba(255,255,255,.56); line-height: 1.7; }
.press-credit-grid a { color: #fff; font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; text-underline-offset: .3em; }

.press-featured,
.press-downloads { color: #fff; background: #0a0a0a; }
.press-release-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.press-release-grid article { border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); background: #050505; }
.press-release-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.press-release-grid article > div { padding: 1.5rem; }
.press-release-grid h3 { margin: .75rem 0 .4rem; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.8rem, 3vw, 3rem); font-style: italic; font-weight: 500; letter-spacing: -.04em; }
.press-release-grid p { color: rgba(255,255,255,.52); }
.press-release-grid a { color: #fff; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; text-underline-offset: .3em; }
.press-video .video-frame { max-width: 1180px; margin: 1.5rem auto 0; }

.download-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.download-grid a { display: grid; min-height: 220px; padding: clamp(1.4rem, 3vw, 2.4rem); align-content: space-between; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); color: #fff; text-decoration: none; transition: color .2s ease, background .2s ease; }
.download-grid a:hover,
.download-grid a:focus-visible { color: #050505; background: #fff; }
.download-grid a:hover span,
.download-grid a:hover small,
.download-grid a:focus-visible span,
.download-grid a:focus-visible small { color: rgba(5,5,5,.58); }
.download-grid strong { align-self: end; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.7rem, 3vw, 2.7rem); font-style: italic; font-weight: 500; letter-spacing: -.04em; }
.download-grid small { color: rgba(255,255,255,.48); }

.press-contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr); gap: clamp(3rem, 8vw, 8rem); align-items: end; }
.press-contact-details { display: grid; gap: 1rem; }
.press-contact-details > a:not(.button) { color: #fff; font-size: clamp(1.15rem, 2vw, 1.55rem); text-decoration: none; }
.press-contact-details p { max-width: 520px; color: rgba(255,255,255,.55); line-height: 1.7; }
.press-contact-details .button { justify-self: start; }

/* Merch */
.merch-visual { overflow: hidden; background: #050505; }
.merch-visual::before { background: radial-gradient(circle at 74% 48%, rgba(255,255,255,.12), transparent 34%), linear-gradient(90deg, #050505 0 42%, rgba(5,5,5,.45) 68%, #050505 100%); }
.merch-hero-image { position: absolute; inset: 7% 1% 2% auto; z-index: 0; width: min(62vw, 1120px); height: 88%; object-fit: contain; object-position: right center; }
.merch-visual .page-hero-content { position: relative; z-index: 2; }
.merch-intro { border-bottom: 1px solid rgba(255,255,255,.16); }
.merch-intro-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(300px, .8fr); gap: clamp(3rem, 9vw, 9rem); align-items: end; }
.merch-intro h2 { margin: .8rem 0 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.4rem, 7vw, 7rem); font-style: italic; font-weight: 500; letter-spacing: -.065em; line-height: .84; }
.merch-order-note { display: grid; gap: 1rem; color: rgba(255,255,255,.62); line-height: 1.75; }
.merch-order-note strong { color: #fff; }
.merch-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.merch-card { display: grid; grid-template-rows: auto 1fr; min-width: 0; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); background: #080808; }
.merch-card-wide { grid-column: 1 / -1; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); grid-template-rows: none; }
.merch-image { display: grid; min-height: 460px; padding: clamp(1rem, 3vw, 2rem); place-items: center; overflow: hidden; }
.merch-image-dark { background: radial-gradient(circle, #272727, #090909 68%); }
.merch-image-light { background: radial-gradient(circle, #fff, #d7d7d7 74%); }
.merch-image img { display: block; width: 100%; height: 420px; object-fit: contain; filter: none; }
.merch-card-wide .merch-image img { height: min(52vw, 650px); }
.merch-card-copy { display: grid; padding: clamp(1.5rem, 3vw, 2.4rem); align-content: start; gap: 1rem; }
.merch-badge { justify-self: start; padding: .48rem .72rem; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; color: rgba(255,255,255,.68); font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.merch-title-row { display: flex; gap: 1.25rem; align-items: start; justify-content: space-between; }
.merch-title-row h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 3.8vw, 3.6rem); font-style: italic; font-weight: 500; letter-spacing: -.055em; line-height: .94; }
.merch-title-row strong { flex: 0 0 auto; font-size: 1.15rem; }
.merch-card-copy > p { max-width: 620px; color: rgba(255,255,255,.58); line-height: 1.65; }
.merch-meta { display: flex; flex-wrap: wrap; gap: .55rem; }
.merch-meta span { padding: .48rem .7rem; background: rgba(255,255,255,.09); color: rgba(255,255,255,.76); font-size: .7rem; font-weight: 700; letter-spacing: .04em; }
.merch-order { justify-self: start; margin-top: .35rem; }

@media (max-width: 1100px) {
  .menu-toggle { display: grid; }
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    padding: 7rem 1.2rem 2rem;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    background: rgba(11,13,13,.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
  }
  .nav-open .nav-links { opacity: 1; pointer-events: auto; }
  .nav-links a { min-height: 3.65rem; justify-content: center; font-size: .88rem; }
}

@media (max-width: 900px) {
  .live-session-card,
  .live-session-card:nth-child(even) { grid-template-columns: 1fr; }
  .live-session-card:nth-child(even) .self-hosted-video { order: initial; }
  .merch-card-wide { grid-template-columns: 1fr; }
  .press-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .press-stat-grid article:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.16); }
  .press-stat-grid article:nth-child(4) { border-top: 1px solid rgba(255,255,255,.16); }
  .press-bio-grid { grid-template-columns: 1fr; }
  .press-bio-intro { position: static; }
  .press-release-grid,
  .download-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .press-contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .portrait-video { width: min(100%, 390px); }
  .merch-visual { min-height: 780px; }
  .merch-visual::before { background: linear-gradient(0deg, #050505 0 24%, rgba(5,5,5,.15) 58%, #050505 100%); }
  .merch-hero-image { inset: 3.5rem -18% auto auto; width: 135%; height: 53%; object-position: center top; }
  .merch-visual .page-hero-content { padding-top: 31rem; }
  .merch-intro-grid,
  .merch-grid { grid-template-columns: 1fr; }
  .merch-card-wide { grid-column: auto; }
  .merch-image { min-height: 340px; }
  .merch-image img,
  .merch-card-wide .merch-image img { height: 320px; }
  .merch-title-row { align-items: end; }
  .about-page { overflow-x: hidden; }
  .about-page main,
  .about-page section,
  .about-page .shell,
  .about-page .story-intro,
  .about-page .story-copy,
  .about-page .quote-block,
  .about-page .fact,
  .about-page .visual-bio-caption,
  .about-page .footer-main,
  .about-page .footer-links {
    min-width: 0;
    max-width: 100%;
  }

  .about-page .story-copy h2 {
    max-width: 100%;
    font-size: clamp(2.45rem, 12vw, 3.5rem);
    letter-spacing: -.055em;
    line-height: .95;
  }

  .about-page .visual-bio-caption h2,
  .about-page .footer-main h2 {
    max-width: 100%;
    font-size: clamp(2.5rem, 13vw, 4rem);
    line-height: .95;
  }

  .about-page h1,
  .about-page h2,
  .about-page h3,
  .about-page p,
  .about-page blockquote,
  .about-page cite,
  .about-page strong,
  .about-page a {
    overflow-wrap: break-word;
    word-break: normal;
  }

  .about-page .button {
    max-width: 100%;
    height: auto;
    min-height: 3.3rem;
    white-space: normal;
    text-align: center;
  }

  .home-hero::before {
    background:
      linear-gradient(0deg, rgba(4,4,4,.94) 0%, rgba(4,4,4,.14) 52%, rgba(4,4,4,.02) 100%),
      url("assets/wayne-warm-hero.jpg") 52% top / auto 70% no-repeat,
      #050505;
  }

  .home-hero .hero-content { padding: 34rem 0 3rem; }
  .home-hero .display { font-size: .9rem; }
  .hero-logo-stage {
    top: 12rem;
    left: 50%;
    width: min(80vw, 480px);
    transform: translateX(-50%);
  }
  .split-cta article + article { border-left: 0; border-top: 1px solid rgba(255,255,255,.14); }
  .page-hero.video-visual::before {
    background:
      linear-gradient(0deg, rgba(5,5,5,.94), transparent 55%),
      url("assets/wayne-close.jpg") 50% top / auto 62% no-repeat,
      #050505;
  }
  .page-hero.live-visual::before {
    background:
      linear-gradient(0deg, rgba(5,5,5,.96) 0%, rgba(5,5,5,.18) 62%, rgba(5,5,5,.08) 100%),
      url("assets/live-shows-hero.jpg") 50% top / cover no-repeat;
  }
  .live-show { grid-template-columns: 1fr; }
  .live-poster img { margin: 0 auto; }
  .page-hero.contact-visual::before {
    background:
      linear-gradient(0deg, rgba(5,5,5,.94), transparent 55%);
  }
  .contact-hero-image {
    inset: 0;
    width: 100%;
    object-fit: contain;
    object-position: center top;
  }
  .video-card { grid-template-columns: 1fr; }
  .video-card:nth-child(even) .video-frame,
  .video-card:nth-child(even) .video-copy { order: initial; }
  .contact-grid,
  .form-row { grid-template-columns: 1fr; }
  .page-hero.press-visual::before {
    background:
      linear-gradient(0deg, rgba(5,5,5,.94), transparent 55%),
      url("assets/press-kit-hero.jpg") 52% top / cover no-repeat,
      #050505;
  }
  .press-stat-grid,
  .press-credit-grid,
  .press-release-grid,
  .download-grid { grid-template-columns: 1fr; }
  .press-stat-grid article + article { border-left: 0; border-top: 1px solid rgba(255,255,255,.16); }
  .press-credit-grid article { min-height: 230px; }
  .press-contact h2 { font-size: clamp(3.3rem, 16vw, 5rem); overflow-wrap: break-word; }
  .press-contact-details > a:not(.button) { overflow-wrap: anywhere; }
  .page-hero.about-visual .display {
    max-width: 100%;
    font-size: clamp(3.15rem, 16vw, 5.4rem);
    overflow-wrap: anywhere;
  }
  .story-copy,
  .visual-bio-caption { min-width: 0; }
  .story-copy h2,
  .visual-bio-caption h2,
  .story-copy p,
  .visual-bio-caption p {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}
