:root {
  color-scheme: dark;
  --black: #070604;
  --near-black: #0d0a08;
  --charcoal: #17100d;
  --wine: #43131e;
  --wine-2: #612232;
  --gold: #d4a753;
  --gold-soft: #f0cf83;
  --ivory: #f8eedb;
  --muted: #c8b99b;
  --teal: #3c8f87;
  --copper: #b76545;
  --line: rgba(248, 238, 219, 0.16);
  --shadow: rgba(0, 0, 0, 0.42);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ivory);
  background:
    linear-gradient(180deg, rgba(67, 19, 30, 0.3), rgba(7, 6, 4, 0) 420px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 38px),
    var(--black);
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(212, 167, 83, 0.12) 29%, transparent 43%),
    linear-gradient(245deg, transparent 0 22%, rgba(60, 143, 135, 0.1) 34%, transparent 48%),
    linear-gradient(180deg, rgba(7, 6, 4, 0.14), var(--black) 78%);
}

a {
  color: inherit;
}

img,
iframe {
  display: block;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--black);
  background: var(--gold-soft);
  border-radius: 6px;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px max(18px, calc((100vw - var(--max)) / 2));
  background: rgba(7, 6, 4, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ivory);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-soft), var(--copper));
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 600;
}

.brand small {
  color: var(--muted);
  font-size: 0.75rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border: 1px solid rgba(212, 167, 83, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(212, 167, 83, 0.12), rgba(60, 143, 135, 0.12)),
    rgba(7, 6, 4, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(248, 238, 219, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.28);
}

.site-nav a {
  min-height: 34px;
  padding: 7px 14px;
  color: var(--muted);
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--black);
  background: var(--gold-soft);
  transform: translateY(-1px);
  outline: none;
}

.site-nav a.header-subscribe {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.site-nav a.header-subscribe:hover,
.site-nav a.header-subscribe:focus-visible {
  color: var(--black);
  filter: brightness(1.03);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  align-items: center;
  gap: 38px;
  min-height: 80vh;
  padding: 40px max(18px, calc((100vw - var(--max)) / 2)) 56px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.curtain {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(67, 19, 30, 0.74), rgba(67, 19, 30, 0.12) 19%, transparent 43%, rgba(67, 19, 30, 0.18) 82%, rgba(67, 19, 30, 0.65)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 2px, rgba(0, 0, 0, 0) 2px 25px);
  opacity: 0.7;
}

.hero-copy {
  max-width: 560px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: 4.2rem;
  line-height: 0.96;
  font-weight: 600;
}

h2 {
  margin-bottom: 14px;
  font-size: 2.35rem;
  line-height: 1.08;
  font-weight: 600;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.28rem;
  line-height: 1.2;
  font-weight: 600;
}

.hero-line {
  max-width: 520px;
  margin-bottom: 28px;
  color: #eadcc2;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 17px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  color: var(--black);
  background: var(--gold-soft);
}

.button-secondary {
  color: var(--ivory);
  border-color: var(--line);
  background: rgba(248, 238, 219, 0.07);
}

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

.stage-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(240, 207, 131, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(248, 238, 219, 0.08), rgba(248, 238, 219, 0.03)),
    rgba(13, 10, 8, 0.82);
  box-shadow: 0 28px 80px var(--shadow);
}

.stage-shell::before {
  display: block;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, var(--wine), var(--gold), var(--teal), var(--wine));
}

.stage-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
}

.stage-topline span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.stage-topline strong {
  text-align: right;
}

.player-frame {
  aspect-ratio: 16 / 9;
  background: #000;
}

.player-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

#stage-note {
  min-height: 68px;
  margin: 0;
  padding: 16px;
  color: var(--muted);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
  padding: 64px max(18px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(90deg, rgba(23, 16, 13, 0.98), rgba(67, 19, 30, 0.72), rgba(18, 47, 45, 0.52));
  border-bottom: 1px solid var(--line);
}

.intro-portrait {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.intro-portrait img {
  width: 100%;
  max-height: 520px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  border: 1px solid rgba(240, 207, 131, 0.34);
  box-shadow: 0 26px 64px var(--shadow);
}

.intro-portrait figcaption {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.intro-band h2 {
  max-width: 680px;
  margin-bottom: 16px;
}

.intro-band p:last-child {
  margin-bottom: 0;
  color: #dfd0b3;
}

.feature-band {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: clamp(380px, 62vh, 600px);
  overflow: hidden;
  border-block: 1px solid var(--line);
}

.feature-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 14%;
}

.feature-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  padding: 48px max(18px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(7, 6, 4, 0.82) 0%, rgba(7, 6, 4, 0.45) 30%, rgba(7, 6, 4, 0) 62%),
    linear-gradient(0deg, rgba(7, 6, 4, 0.55), rgba(7, 6, 4, 0) 40%);
}

.feature-copy {
  max-width: 560px;
}

.feature-quote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.6vw, 3.45rem);
  line-height: 1.04;
  font-weight: 600;
  color: var(--ivory);
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.55);
}

.feature-zoom {
  flex: none;
  align-self: flex-end;
  min-height: 40px;
  padding: 9px 16px;
  color: var(--ivory);
  border: 1px solid rgba(248, 238, 219, 0.42);
  border-radius: 6px;
  background: rgba(7, 6, 4, 0.42);
  backdrop-filter: blur(6px);
  font: inherit;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.feature-zoom:hover,
.feature-zoom:focus-visible {
  color: var(--black);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-1px);
  outline: none;
}

.zoomable {
  cursor: zoom-in;
}

.section {
  padding: 74px max(18px, calc((100vw - var(--max)) / 2));
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading p:last-child {
  color: var(--muted);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-button {
  min-height: 40px;
  padding: 8px 14px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(248, 238, 219, 0.04);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.active {
  color: var(--black);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  outline: none;
}

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

.video-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(23, 16, 13, 0.78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.thumb-button {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  color: inherit;
  border: 0;
  background: #050403;
  cursor: pointer;
}

.thumb-button img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0.86;
  transition: transform 180ms ease, opacity 180ms ease;
}

.thumb-button::after {
  position: absolute;
  left: 14px;
  bottom: 12px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--black);
  background: var(--gold-soft);
  border-radius: 50%;
  content: "Play";
  font-size: 0.68rem;
  font-weight: 900;
}

.thumb-button:hover img,
.thumb-button:focus-visible img {
  opacity: 1;
  transform: scale(1.03);
}

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

.card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  color: #f4dfad;
  border: 1px solid rgba(212, 167, 83, 0.36);
  border-radius: 6px;
  background: rgba(212, 167, 83, 0.08);
  font-size: 0.73rem;
  font-weight: 800;
}

.pill.alt {
  color: #9fe0d9;
  border-color: rgba(60, 143, 135, 0.5);
  background: rgba(60, 143, 135, 0.12);
}

.video-card h3 {
  margin-bottom: 0;
}

.video-card p {
  color: var(--muted);
}

.card-link {
  margin-top: auto;
  color: var(--gold-soft);
  font-weight: 800;
  text-decoration: none;
}

.card-link:hover,
.card-link:focus-visible {
  text-decoration: underline;
  outline: none;
}

.bio-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 34px;
  align-items: stretch;
  padding: 74px max(18px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(7, 6, 4, 0.2), rgba(67, 19, 30, 0.44)),
    var(--near-black);
  border-block: 1px solid var(--line);
}

.bio-media {
  align-self: center;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #050403;
  box-shadow: 0 26px 64px var(--shadow);
}

.bio-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  opacity: 1;
}

.bio-copy {
  align-self: center;
  max-width: 720px;
}

.bio-copy p {
  color: #dfd0b3;
  font-size: 1.04rem;
}

.composer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.composer-note {
  min-height: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 238, 219, 0.045);
}

.composer-note span {
  display: block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.composer-note p {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px max(18px, calc((100vw - var(--max)) / 2));
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #050403;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong,
.site-footer a {
  color: var(--ivory);
}

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

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold-soft);
  outline: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(4, 3, 2, 0.92);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 220ms ease;
}

.lightbox[hidden] {
  display: none;
}

.lightbox.is-open {
  opacity: 1;
}

.lightbox-image {
  max-width: min(1200px, 96vw);
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(240, 207, 131, 0.34);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
  transform: scale(0.97);
  transition: transform 220ms ease;
}

.lightbox.is-open .lightbox-image {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: clamp(12px, 2.4vw, 26px);
  right: clamp(12px, 2.4vw, 26px);
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--ivory);
  border: 1px solid rgba(248, 238, 219, 0.4);
  border-radius: 50%;
  background: rgba(7, 6, 4, 0.55);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  color: var(--black);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: rotate(90deg);
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  .lightbox,
  .lightbox-image,
  .lightbox-close {
    transition: none;
  }
}

@media (max-width: 980px) {
  .hero,
  .intro-band,
  .bio-section {
    grid-template-columns: 1fr;
  }

  .intro-portrait {
    max-width: 380px;
  }

  .feature-image {
    object-position: 64% 14%;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2rem;
  }

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

  .bio-media {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .header-actions {
    width: 100%;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 6px;
    padding: 5px;
  }

  .site-nav a {
    flex: 1;
    justify-content: center;
    text-align: center;
    padding-inline: 8px;
    font-size: 0.74rem;
  }

  .hero {
    gap: 28px;
    padding-bottom: 46px;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 1.74rem;
  }

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

  .stage-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .stage-topline strong {
    text-align: left;
  }

  .intro-band,
  .section,
  .bio-section {
    padding-block: 48px;
  }

  .feature-band {
    min-height: 440px;
  }

  .feature-overlay {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-block: 38px;
  }

  .feature-zoom {
    align-self: flex-start;
  }

  .video-grid,
  .composer-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
