:root {
  --page: #f7f6f5;
  --panel: #eeeceb;
  --ink: #0a0a0a;
  --blue: #011dfa;
  --accent: #f54420;
  --muted: #2b2b2b;
  --shadow: 0 10px 34px rgba(0, 0, 0, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--page);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

html.menu-open,
body.menu-open {
  background: var(--panel);
}

body.menu-open .page-shell {
  background: var(--panel);
}

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

.text-link {
  text-decoration: underline;
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.12em;
  transition:
    color 160ms ease,
    filter 180ms ease,
    transform 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--accent);
  filter: blur(0.45px);
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  pointer-events: none;
  background: rgba(247, 246, 245, 0.56);
  opacity: 0;
  transition: opacity 180ms ease;
}

.page-transition img {
  width: min(76vw, 920px);
  height: auto;
  opacity: 0;
  transform: translateY(-4vh) scale(0.9);
  transition:
    opacity 240ms ease,
    transform 320ms ease;
}

.page-transition.is-active {
  opacity: 1;
}

.page-transition.is-active img {
  opacity: 0.88;
  transform: translateY(-4vh) scale(1);
}

.page-shell {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0;
  background: var(--panel);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 32px;
  border-top: 1px solid rgba(10, 10, 10, 0.12);
  font-size: 18px;
  line-height: 1;
}

.site-footer span {
  font-weight: 600;
}

.site-footer small {
  font: inherit;
  font-size: 14px;
  line-height: 1.25;
  text-align: center;
}

.site-footer a {
  transition: color 160ms ease;
}

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

.site-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 34px 32px 0;
}

.brand {
  position: relative;
  display: grid;
  gap: 3px;
  width: 260px;
  min-height: 92px;
  padding: 16px 0 0;
  font-weight: 600;
  line-height: 1.08;
  transition:
    color 160ms ease,
    filter 180ms ease,
    transform 180ms ease;
}

.brand::before {
  position: absolute;
  inset: 0 auto auto -4px;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: url("assets/brand-mark.png") center 58% / 118% auto no-repeat;
  content: "";
  opacity: 0.58;
}

.brand span {
  position: relative;
  z-index: 1;
}

.brand:hover,
.brand:focus-visible {
  color: var(--accent);
  filter: blur(0.45px);
  transform: translateY(-1px);
}

.brand-title {
  font-size: 17px;
}

.brand-subtitle {
  max-width: 210px;
  font-size: 14px;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.site-nav a {
  transition:
    color 160ms ease,
    filter 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
  filter: blur(0.55px);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
}

.hero {
  padding: 142px 32px 72px;
}

.hero-marquee {
  width: calc(100% + 64px);
  margin-left: -32px;
  overflow: hidden;
  padding-bottom: 0.14em;
}

.hero-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 18s linear infinite;
}

.hero-marquee h1 {
  flex: 0 0 auto;
  min-width: max-content;
  padding-right: 72px;
  margin: 0;
  color: #303030;
  font-size: clamp(42px, 5.35vw, 82px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

.concert-carousel {
  position: relative;
  margin-top: 74px;
}

.concerts {
  --card-width: min(28vw, 360px);
  position: relative;
  min-height: 760px;
  margin-right: -32px;
  margin-left: -32px;
  overflow: hidden;
  padding: 72px 32px 180px;
  perspective: 1100px;
  perspective-origin: center center;
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(10, 10, 10, 0.26);
  border-radius: 50%;
  background: rgba(238, 236, 235, 0.7);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  color: var(--accent);
}

.carousel-button-prev {
  left: 24px;
}

.carousel-button-next {
  right: 24px;
}

.carousel-swipe-hint {
  display: none;
}

.concert-card {
  position: absolute;
  top: 72px;
  left: 50%;
  width: var(--card-width);
  min-width: 0;
  transform:
    translateX(calc(-50% + var(--card-x, 0px)))
    translateZ(var(--card-depth, 0))
    rotateY(var(--card-tilt, 0deg))
    scale(var(--card-scale, 1));
  transform-origin: var(--card-origin, center center);
  transform-style: preserve-3d;
  opacity: var(--card-opacity, 1);
  pointer-events: var(--card-events, auto);
  z-index: var(--card-z, 0);
  transition:
    opacity 260ms ease,
    transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.concert-date {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
  opacity: var(--meta-opacity, 1);
  transition: opacity 220ms ease;
}

.concert-location {
  min-height: 2.5em;
  margin: 10px 0 24px;
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
  opacity: var(--meta-opacity, 1);
  transition: opacity 220ms ease;
}

.concert-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background:
    linear-gradient(var(--ink), var(--ink)) 0 0 / 100% 1px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 0 33% / 100% 1px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 0 66% / 100% 1px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 0 100% / 100% 1px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 0 0 / 1px 100% no-repeat,
    linear-gradient(var(--ink), var(--ink)) 100% 0 / 1px 100% no-repeat;
  transform-origin: center;
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.concert-image::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(1, 29, 250, 0.34), transparent 38%),
    rgba(1, 29, 250, 0.12);
  content: "";
  opacity: 0;
  mix-blend-mode: multiply;
  transition: opacity 220ms ease;
}

.concert-image figcaption {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  opacity: 0;
  text-transform: lowercase;
  transform: translate(-50%, -42%);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.concert-logo-strands {
  position: relative;
  display: inline-block;
  width: clamp(94px, 9.6vw, 142px);
  aspect-ratio: 1888 / 819;
  transform: scaleX(1.04);
  transform-origin: center;
}

.concert-logo-strands span {
  position: absolute;
  inset: 0;
  display: block;
  background: url("assets/about-logo-reveal-padded.png") center / 100% 100% no-repeat;
  clip-path: inset(
    calc(var(--strand-top) * 1%)
    0
    calc(var(--strand-bottom) * 1%)
    0
  );
  opacity: 0.9;
  transform:
    translateX(var(--strand-vibrate-x, 0px))
    translateY(var(--strand-vibrate-y, 0px));
}

.menu-logo-strands {
  display: none;
}

.menu-logo-strands span {
  position: absolute;
  inset: 0;
  display: block;
  background: url("assets/about-logo-reveal-padded.png") center / 100% 100% no-repeat;
  clip-path: inset(
    calc(var(--strand-top) * 1%)
    0
    calc(var(--strand-bottom) * 1%)
    0
  );
  transform:
    translateX(var(--strand-vibrate-x, 0px))
    translateY(var(--strand-vibrate-y, 0px));
}

.concert-card:hover .concert-image,
.concert-card:focus-within .concert-image,
.concert-card.is-active .concert-image {
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.15);
  transform: scale(1.025);
}

.concert-card:hover .concert-image::after,
.concert-card:focus-within .concert-image::after,
.concert-card.is-active .concert-image::after {
  opacity: 1;
}

.concert-card.is-mobile-preview .concert-image::after {
  opacity: 0.16;
}

.concert-card:hover .concert-image figcaption,
.concert-card:focus-within .concert-image figcaption,
.concert-card.is-active .concert-image figcaption {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.concert-card.is-mobile-preview .concert-image figcaption {
  opacity: 0.2;
  transform: translate(-50%, -50%);
}

.hero-image {
  position: relative;
  width: min(82vw, 1140px);
  margin: 64px auto 0;
  background: #fff;
  transform-origin: center;
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.hero-image::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(1, 29, 250, 0.34), transparent 38%),
    rgba(1, 29, 250, 0.12);
  content: "";
  opacity: 0;
  mix-blend-mode: multiply;
  transition: opacity 220ms ease;
}

.hero-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.image-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 48px;
  padding: 14px 26px;
  border: 1px solid rgba(10, 10, 10, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  text-transform: lowercase;
  transform: translate(-50%, -50%);
  transition:
    background 160ms ease,
    color 160ms ease;
}

.image-button:hover,
.image-button:focus-visible {
  background: var(--ink);
  color: #fff;
}

.hero-image:has(.image-button:hover),
.hero-image:has(.image-button:focus-visible) {
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.15);
  transform: scale(1.025);
}

.hero-image:has(.image-button:hover)::after,
.hero-image:has(.image-button:focus-visible)::after {
  opacity: 1;
}

.hero-image:hover {
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.15);
  transform: scale(1.025);
}

.hero-image:hover::after {
  opacity: 1;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

.about-page {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.7fr);
  gap: 72px;
  min-height: 100vh;
  padding: 96px 32px 120px;
}

.about-shell .about-page {
  padding-top: 118px;
}

.about-meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 56px;
  min-height: 410px;
}

.about-meta h2,
.about-meta h3,
.about-meta p,
.about-content h2,
.about-content p {
  margin: 0;
  font-weight: 400;
  letter-spacing: 0;
}

.about-meta h2,
.about-meta h3,
.about-meta p {
  font-size: clamp(25px, 2.4vw, 39px);
  line-height: 1.18;
}

.about-content {
  position: relative;
  z-index: 1;
  max-width: 940px;
  margin-left: auto;
}

.about-page-single {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.42fr);
  align-items: stretch;
}

.about-page-single .about-content {
  max-width: 940px;
}

.about-logo-reveal {
  position: relative;
  align-self: stretch;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  opacity: 0.96;
}

.about-logo-strands {
  position: sticky;
  top: 390px;
  left: 50%;
  width: min(220%, calc(100vh - 220px), 760px);
  aspect-ratio: 1888 / 819;
  margin-left: 50%;
  transform:
    translateX(-50%)
    translateY(10%)
    rotate(90deg)
    scaleX(1.08);
  transform-origin: center;
  animation: logo-flicker 3.4s steps(5, end) infinite;
}

.about-logo-strands span {
  position: absolute;
  inset: 0;
  display: block;
  background: url("assets/about-logo-reveal-padded.png") center / 100% 100% no-repeat;
  clip-path: inset(
    calc(var(--strand-top) * 1%)
    0
    calc(var(--strand-bottom) * 1%)
    0
  );
  opacity: var(--strand-opacity, 0);
  transform:
    translateX(calc(((1 - var(--strand-progress, 0)) * -32px) + var(--strand-vibrate-x, 0px)))
    translateY(calc(((1 - var(--strand-progress, 0)) * -5px) + var(--strand-vibrate-y, 0px)));
  transition:
    opacity 90ms linear,
    transform 70ms linear;
}

@keyframes logo-flicker {
  0%,
  100% {
    filter: blur(0);
    opacity: 0.92;
  }

  42% {
    filter: blur(0.28px);
    opacity: 1;
  }

  45% {
    filter: blur(0);
    opacity: 0.86;
  }

  48% {
    opacity: 0.96;
  }
}

.about-content h2,
.about-content h1,
.about-content p {
  font-size: clamp(25px, 2.38vw, 38px);
  line-height: 1.17;
}

.about-content h1 {
  margin-bottom: 54px;
}

.about-lead {
  font-weight: 600;
}

.about-content p + p {
  margin-top: 30px;
}

.spaces-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  height: calc(100vh - 100px);
  margin-top: 56px;
  border-top: 1px solid rgba(10, 10, 10, 0.12);
}

.spaces-media,
.spaces-copy {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.spaces-media {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 32px;
  border-right: 1px solid rgba(10, 10, 10, 0.12);
}

.spaces-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.spaces-copy {
  padding: 32px 32px 120px;
}

.spaces-copy-inner {
  max-width: 760px;
  margin-left: auto;
}

.spaces-copy h1,
.spaces-copy p {
  margin: 0;
  font-size: clamp(30px, 3.05vw, 48px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

.spaces-copy h1 {
  margin-bottom: 64px;
}

.spaces-copy p + p {
  margin-top: 36px;
}

.page-credit {
  padding: 0 32px 32px;
  font-size: 16px;
  line-height: 1.2;
}

@media (max-width: 760px) {
  body {
    padding: 0;
  }

  .page-shell {
    min-height: 100vh;
    border-radius: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 28px 20px;
    font-size: 16px;
  }

  .site-header {
    position: relative;
    padding: 24px 20px 0;
  }

  .menu-toggle {
    position: fixed;
    top: 38px;
    right: 34px;
    z-index: 4;
    display: grid;
    gap: 6px;
    width: 42px;
    height: 34px;
    margin-left: auto;
    padding: 8px 0;
    border: 0;
    background: transparent;
    color: var(--accent);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform-origin: center;
    transition:
      background 160ms ease,
      transform 180ms ease;
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    color: var(--accent);
  }

  .menu-toggle.is-open span:first-child {
    background: var(--accent);
    transform: translateY(4px) rotate(18deg);
  }

  .menu-toggle.is-open span:last-child {
    background: var(--accent);
    transform: translateY(-4px) rotate(-18deg);
  }

  .site-nav {
    position: fixed;
    inset: calc(-1 * max(18px, env(safe-area-inset-top))) 0 0;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    flex-direction: column;
    gap: 22px;
    padding: 118px 34px 34px;
    border: 0;
    background: rgba(238, 236, 235, 0.82);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    box-shadow: none;
    color: var(--panel);
    font-size: clamp(62px, 17vw, 112px);
    line-height: 0.95;
    opacity: 0;
    pointer-events: none;
    transform: none;
    transition:
      opacity 220ms ease;
  }

  .site-nav::before {
    position: fixed;
    top: -140px;
    right: 0;
    left: 0;
    height: 160px;
    pointer-events: none;
    background: var(--panel);
    content: "";
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    color: var(--accent);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: var(--accent);
    opacity: 0.68;
  }

  .menu-logo-strands {
    position: absolute;
    right: auto;
    bottom: calc(22vh + 38px);
    left: 50%;
    display: block;
    width: min(68vw, 380px);
    aspect-ratio: 1888 / 819;
    margin-top: 0;
    opacity: 0.72;
    transform: translateX(-50%);
  }

  .brand-title {
    font-size: 16px;
  }

  .brand-subtitle {
    max-width: 150px;
    font-size: 12px;
  }

  .brand {
    width: 190px;
    min-height: 78px;
    padding-top: 13px;
  }

  .hero {
    padding: 92px 20px 48px;
  }

  .hero-marquee {
    width: calc(100% + 40px);
    margin-left: -20px;
  }

  .hero-marquee h1 {
    font-size: 42px;
    line-height: 1.1;
  }

  .hero-marquee-track {
    animation-duration: 14s;
  }

  .concerts {
    --card-width: min(68vw, 300px);
    min-height: 690px;
    margin-right: -20px;
    margin-left: -20px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 180px;
    touch-action: pan-y;
  }

  .concert-carousel {
    margin-top: 118px;
  }

  .carousel-swipe-hint {
    position: absolute;
    right: 0;
    bottom: 2mm;
    left: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: rgba(10, 10, 10, 0.54);
    font-size: 15px;
    line-height: 1;
    text-transform: lowercase;
    pointer-events: none;
  }

  body.menu-open .carousel-swipe-hint {
    display: none;
  }

  .carousel-button {
    display: none;
  }

  .concert-date {
    font-size: 26px;
  }

  .concert-location {
    min-height: 0;
    margin: 8px 0 16px;
    font-size: 18px;
  }

  .concert-image figcaption {
    gap: 9px;
    font-size: 24px;
    white-space: nowrap;
  }

  .concert-logo-strands {
    width: 88px;
  }

  .hero-image {
    width: 100%;
    margin-top: 44px;
  }

  .about-page {
    position: relative;
    grid-template-columns: 1fr;
    gap: 48px;
    overflow: hidden;
    padding: 72px 20px 80px;
  }

  .about-page-single {
    display: block;
  }

  .about-logo-reveal {
    position: absolute;
    inset: 0 -56px;
    z-index: 0;
    display: block;
    height: auto;
    min-height: 0;
    overflow: visible;
    opacity: 0.3;
    filter: none;
    pointer-events: none;
  }

  .about-logo-strands {
    position: absolute;
    top: 58%;
    left: 50%;
    width: min(158vw, 720px);
    margin-left: 0;
    transform:
      translate(-50%, -50%)
      rotate(90deg)
      scaleX(1.08);
  }

  .about-logo-strands span {
    opacity: 0.9;
  }

  .about-meta {
    min-height: 0;
  }

  .about-content {
    max-width: none;
    margin-left: 0;
  }

  .about-content h1,
  .about-content h2,
  .about-content p {
    font-size: 34px;
    line-height: 1.14;
  }

  .about-content p {
    font-size: 24px;
    line-height: 1.18;
  }

  .spaces-split {
    display: block;
    height: auto;
    margin-top: 40px;
  }

  .spaces-media,
  .spaces-copy {
    overflow: visible;
  }

  .spaces-media {
    gap: 14px;
    padding: 20px;
    border-right: 0;
  }

  .spaces-copy {
    padding: 44px 20px 80px;
  }

  .spaces-copy-inner {
    max-width: none;
    margin-left: 0;
  }

  .spaces-copy h1 {
    font-size: 34px;
    line-height: 1.14;
  }

  .spaces-copy p {
    font-size: 24px;
    line-height: 1.18;
  }

  .page-credit {
    padding: 0 20px 28px;
    font-size: 14px;
    line-height: 1.2;
  }
}

@media (max-width: 480px) {
  .site-header {
    align-items: flex-start;
    gap: 20px;
  }

  .site-nav {
    width: auto;
  }

  .hero-marquee h1 {
    font-size: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-marquee-track,
  .about-logo-strands {
    animation: none;
  }

  .page-transition,
  .page-transition img {
    transition: none;
  }
}
