:root {
  color-scheme: dark;
  --paper: #ece8df;
  --ink: #0b0b0a;
  --black: #050505;
  --soft-black: #11110f;
  --muted: #9a968d;
  --line: rgba(236, 232, 223, 0.22);
  --line-dark: rgba(11, 11, 10, 0.18);
  --rust: #b8412f;
  --cold: #9aa7b4;
  --max: 1280px;
  --tone: 0;
  --tone-pct: 0%;
  --tone-inv-pct: 100%;
  --media-gray: 1;
  --media-saturation: 0.94;
  --media-contrast: 1.06;
  --image-break-gray: 1;
  --image-break-saturation: 0.94;
  --image-break-contrast: 1.06;
  --mark-opacity: 0.26;
  --accent-live: color-mix(in srgb, var(--rust) var(--tone-pct), var(--paper) var(--tone-inv-pct));
  --muted-live: color-mix(in srgb, var(--cold) var(--tone-pct), var(--muted) var(--tone-inv-pct));
  --line-live: color-mix(in srgb, rgba(184, 65, 47, 0.45) var(--tone-pct), rgba(236, 232, 223, 0.2) var(--tone-inv-pct));
  --surface-live: color-mix(in srgb, rgba(184, 65, 47, 0.16) var(--tone-pct), rgba(5, 5, 5, 0) var(--tone-inv-pct));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--paper);
  font-family:
    Arial,
    Helvetica,
    sans-serif;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

iframe {
  display: block;
  width: 100%;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 12px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 22px clamp(18px, 3vw, 44px);
  color: var(--paper);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  width: clamp(88px, 10vw, 132px);
}

.brand img {
  width: 100%;
  filter:
    grayscale(var(--media-gray))
    saturate(var(--media-saturation))
    drop-shadow(0 2px 12px rgba(0, 0, 0, 0.36));
}

.nav {
  position: absolute;
  left: 50%;
  width: max-content;
  max-width: calc(100vw - 280px);
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 34px);
  overflow-x: auto;
  scrollbar-width: none;
  text-shadow:
    0 1px 1px rgba(0, 0, 0, 0.95),
    0 3px 10px rgba(0, 0, 0, 0.92),
    0 0 24px rgba(0, 0, 0, 0.82);
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav a,
.social-link {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav a {
  flex: 0 0 auto;
}

.nav a:hover,
.nav a:focus-visible,
.contact-email a:hover,
.contact-email a:focus-visible,
.social-link:hover,
.social-link:focus-visible {
  color: var(--accent-live);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(84px, 10vw, 132px) clamp(18px, 4vw, 58px) 34px;
  overflow: hidden;
  background: var(--soft-black);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.05) 42%, rgba(5, 5, 5, 0.52)),
    linear-gradient(0deg, #050505 0%, rgba(5, 5, 5, 0.02) 36%);
  content: "";
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-image img {
  width: 100%;
  height: 100%;
  filter:
    grayscale(var(--media-gray))
    saturate(var(--media-saturation))
    contrast(var(--media-contrast));
  object-fit: cover;
  object-position: center top;
}

.hero-mark {
  position: absolute;
  right: clamp(22px, 4vw, 72px);
  bottom: clamp(64px, 8vh, 110px);
  width: clamp(190px, 30vw, 430px);
  filter: grayscale(var(--media-gray)) saturate(var(--media-saturation));
  opacity: var(--mark-opacity);
}

.section {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: clamp(16px, 3vw, 42px);
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(76px, 11vw, 142px) clamp(18px, 4vw, 58px);
  border-bottom: 1px solid var(--line-live);
}

.section-head,
.spotify-frame,
.video-list,
.dates,
.bio-copy,
.contact-panel {
  grid-column: 2;
}

.section-head p {
  margin: 0 0 12px;
  color: var(--muted-live);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 6.2rem);
  font-weight: 400;
  line-height: 0.86;
  text-transform: uppercase;
}

.spotify-frame {
  align-self: start;
  width: min(100%, 820px);
  margin-top: clamp(18px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid var(--line-live);
  background: #121212;
  filter: grayscale(calc(var(--media-gray) * 0.7)) saturate(var(--media-saturation));
}

.image-break {
  min-height: clamp(360px, 62vw, 760px);
  overflow: hidden;
  background: var(--paper);
}

.image-break img {
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 62vw, 760px);
  filter:
    grayscale(var(--image-break-gray))
    saturate(var(--image-break-saturation))
    contrast(var(--image-break-contrast));
  object-fit: cover;
  object-position: 50% 44%;
  will-change: filter;
}

.video-list {
  display: grid;
  gap: 30px;
  width: min(100%, 980px);
  margin-top: clamp(18px, 3vw, 34px);
}

.video-item {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-live);
  background: #10100f;
  aspect-ratio: 16 / 9;
}

.video-poster {
  position: absolute;
  inset: 0;
  display: block;
  height: 100%;
  overflow: hidden;
  color: var(--paper);
  text-decoration: none;
}

.video-poster::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.1) 58%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.34), rgba(5, 5, 5, 0));
  content: "";
}

.video-poster img {
  width: 100%;
  height: 100%;
  filter:
    grayscale(var(--media-gray))
    saturate(var(--media-saturation))
    contrast(var(--media-contrast));
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.video-copy {
  position: absolute;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  display: grid;
  gap: 7px;
  text-transform: uppercase;
}

.video-copy strong {
  font-size: clamp(1.45rem, 3.4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.92;
}

.video-copy small {
  color: var(--accent-live);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.video-poster:hover img,
.video-poster:focus-visible img {
  filter:
    grayscale(calc(var(--media-gray) * 0.45))
    saturate(calc(var(--media-saturation) + 0.24))
    contrast(1.1);
  transform: scale(1.035);
}

.dates {
  align-self: start;
  width: min(100%, 900px);
  margin-top: clamp(18px, 3vw, 34px);
  border-top: 1px solid var(--line-live);
}

.dates a {
  display: grid;
  grid-template-columns: 0.62fr minmax(0, 1fr) auto;
  gap: 18px;
  min-height: 72px;
  align-items: center;
  border-bottom: 1px solid var(--line-live);
  color: var(--paper);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.22;
  text-decoration: none;
  text-transform: uppercase;
}

.dates a span:last-child {
  justify-self: end;
  color: var(--accent-live);
}

.bio-copy p {
  max-width: 740px;
  margin: clamp(18px, 3vw, 34px) 0 0;
  color: var(--paper);
  font-size: clamp(1.28rem, 2.4vw, 2.15rem);
  line-height: 1.18;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(420px, 58vw, 760px);
  background: var(--paper);
}

.gallery figure {
  min-height: clamp(420px, 58vw, 760px);
  margin: 0;
  overflow: hidden;
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: clamp(420px, 58vw, 760px);
  filter:
    grayscale(var(--media-gray))
    saturate(var(--media-saturation))
    contrast(var(--media-contrast));
  object-fit: cover;
}

.gallery figure:first-child img {
  object-position: 45% 48%;
}

.gallery figure:last-child img {
  object-position: 52% 42%;
}

.contact-panel {
  display: grid;
  gap: clamp(18px, 3vw, 30px);
  align-self: start;
  width: min(100%, 760px);
  margin-top: clamp(18px, 3vw, 34px);
}

.contact-email {
  margin: 0;
  padding: 22px 0;
  border-top: 1px solid var(--line-live);
  border-bottom: 1px solid var(--line-live);
  color: var(--paper);
  font-size: clamp(1.08rem, 2vw, 1.7rem);
  font-weight: 400;
  line-height: 1.2;
}

.contact-email a {
  color: inherit;
  text-decoration: none;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-live);
  background: var(--surface-live);
  color: var(--paper);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: var(--accent-live);
  transform: translateY(-2px);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 34px clamp(18px, 4vw, 58px);
  background: var(--paper);
  color: var(--ink);
}

.site-footer img {
  width: clamp(86px, 10vw, 128px);
  filter:
    invert(1)
    grayscale(var(--media-gray))
    saturate(var(--media-saturation));
}

@media (max-width: 940px) {
  .site-header {
    align-items: center;
  }

  .nav {
    max-width: calc(100vw - 220px);
    padding-bottom: 6px;
  }

  .section {
    grid-template-columns: 58px 1fr;
  }

  .section-head,
  .spotify-frame,
  .video-list,
  .dates,
  .bio-copy,
  .contact-panel {
    grid-column: 2;
  }

  .hero-mark {
    right: clamp(18px, 4vw, 40px);
    width: clamp(180px, 34vw, 320px);
  }
}

@media (max-width: 640px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    justify-items: stretch;
    padding: calc(12px + env(safe-area-inset-top)) 14px 10px;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.68) 72%, rgba(5, 5, 5, 0));
  }

  .brand {
    justify-self: start;
    width: 78px;
  }

  .nav {
    position: static;
    justify-self: stretch;
    width: 100%;
    max-width: none;
    justify-content: space-between;
    gap: clamp(8px, 2.9vw, 14px);
    padding-bottom: 0;
    transform: none;
  }

  .nav a {
    font-size: clamp(0.58rem, 2.7vw, 0.68rem);
  }

  .hero {
    min-height: 0;
    padding: calc(94px + env(safe-area-inset-top)) 0 0;
  }

  .hero::after {
    z-index: 1;
    background: linear-gradient(0deg, #050505 0%, rgba(5, 5, 5, 0.66) 10%, rgba(5, 5, 5, 0.06) 42%, rgba(5, 5, 5, 0) 72%);
    pointer-events: none;
  }

  .hero-image {
    position: relative;
    inset: auto;
    z-index: 0;
  }

  .hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
  }

  .hero-mark {
    z-index: 2;
    right: 14px;
    bottom: 18px;
    width: min(190px, 52vw);
    max-width: none;
  }

  .section {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 64px 16px;
  }

  .section-head,
  .spotify-frame,
  .video-list,
  .dates,
  .bio-copy,
  .contact-panel {
    grid-column: 1;
  }

  .section h1 {
    font-size: clamp(2.5rem, 16vw, 4.6rem);
  }

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

  .image-break {
    min-height: 0;
    padding: 0;
  }

  .image-break img {
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center center;
  }

  .dates a {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 17px 0;
  }

  .dates a span:last-child {
    justify-self: start;
  }

  .gallery {
    display: block;
    min-height: 0;
  }

  .gallery figure {
    min-height: 0;
  }

  .gallery img {
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center center;
  }

  .site-footer {
    display: grid;
    justify-items: center;
  }
}
