*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --black: #050810;
  --charcoal: #0b1020;
  --slate: #141c32;
  --burger-bun: #eac473;
  --burger-bun-bright: #f2d18a;
  --burger-patty: #844930;
  --paper: var(--burger-bun);
  --paper-dim: #b89e4f;
  --rust: #e46b6a;
  --blood: #c85a59;
  --blood-bright: #e46b6a;
  --orange: #71d1c0;
  --border: rgba(113, 209, 192, 0.2);
  --surface-overlay: rgba(5, 8, 16, 0.94);
  --surface-solid: rgba(5, 8, 16, 0.98);
  --accent-hover-bg: rgba(113, 209, 192, 0.12);
  --btn-solid-text: var(--black);
  --shadow-deep: rgba(0, 0, 0, 0.55);
  --logo-accent: #e46b6a;
  --section-divider-width: 1px;
  --section-divider: rgba(234, 196, 115, 0.35);
  --neon-teal: #71d1c0;
  --neon-teal-bright: #71d1c0;
  --neon-pink: #e46b6a;
  --neon-pink-hot: #e46b6a;
  --neon-glow-teal:
    0 0 1px rgba(255, 255, 255, 0.5),
    0 0 5px var(--neon-teal),
    0 0 12px rgba(113, 209, 192, 0.4),
    0 0 22px rgba(113, 209, 192, 0.32);
  --neon-glow-teal-intense:
    0 0 2px #fff,
    0 0 7px var(--neon-teal-bright),
    0 0 15px rgba(113, 209, 192, 0.55),
    0 0 28px rgba(113, 209, 192, 0.45);
  --neon-pink-bright: #e46b6a;
  --neon-glow-pink:
    0 0 1px rgba(255, 255, 255, 0.5),
    0 0 5px var(--neon-pink),
    0 0 12px rgba(228, 107, 106, 0.38),
    0 0 22px rgba(228, 107, 106, 0.28);
  --neon-glow-pink-intense:
    0 0 2px #fff,
    0 0 7px var(--neon-pink-bright),
    0 0 15px rgba(228, 107, 106, 0.5),
    0 0 28px rgba(228, 107, 106, 0.35);
  --neon-line-glow-pink:
    0 0 2px rgba(255, 255, 255, 0.7),
    0 0 6px var(--neon-pink),
    0 0 14px var(--neon-pink),
    0 0 24px rgba(228, 107, 106, 0.4);
  --neon-btn-glow-bun:
    0 0 6px rgba(234, 196, 115, 0.55),
    0 0 16px rgba(234, 196, 115, 0.38);
  --neon-btn-glow-bun-hover:
    0 0 2px rgba(255, 255, 255, 0.55),
    0 0 8px var(--burger-bun-bright),
    0 0 20px rgba(234, 196, 115, 0.5);
  --neon-btn-glow-bun-soft:
    0 0 8px rgba(234, 196, 115, 0.28);
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Roboto Condensed", system-ui, sans-serif;
  --header-h: 5rem;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  background-color: var(--black);
  color-scheme: dark;
}

body {
  position: relative;
  z-index: 1;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--paper);
  background: var(--black);
  isolation: isolate;
  -webkit-font-smoothing: antialiased;
}

body > :not(.noise):not(.scanlines):not(.site-header) {
  position: relative;
  z-index: 1;
}

.lnt-banner-mark {
  position: absolute;
  left: 0;
  width: 100%;
  aspect-ratio: 975 / 200;
  background-color: var(--logo-accent);
  -webkit-mask-image: url("../images/lntbackground.avif");
  mask-image: url("../images/lntbackground.avif");
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-mode: luminance;
  mask-mode: luminance;
}

main {
  flex: 1 0 auto;
  background: var(--black);
}

.noise {
  position: absolute;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.55;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.scanlines {
  position: absolute;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  opacity: 0.04;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.5) 2px,
    rgba(0, 0, 0, 0.5) 4px
  );
}

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

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

a:hover {
  color: var(--blood-bright);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: var(--header-h);
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  background: var(--black);
  border-bottom: var(--section-divider-width) solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header > .header-nav {
  flex: 1;
  display: grid;
  align-self: center;
}

.site-header.is-scrolled {
  background: var(--surface-overlay);
  border-bottom-color: var(--section-divider);
  backdrop-filter: blur(6px);
}

.header-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: 72rem;
  gap: 1rem;
}

.nav-link,
.logo,
.mobile-nav__link {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
}

.nav-link,
.mobile-nav__link {
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.logo {
  transition: color 0.2s ease;
}

.nav-link,
.mobile-nav__link {
  color: var(--neon-pink-bright);
  text-shadow: var(--neon-glow-pink);
}

.nav-link {
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  justify-self: start;
  line-height: 1.1;
}

.header-nav .nav-link:last-of-type {
  justify-self: end;
}

.logo {
  position: relative;
  z-index: 2;
  justify-self: center;
  font-size: clamp(1.35rem, 5vw, 2.85rem);
  letter-spacing: 0.07em;
  text-align: center;
  white-space: nowrap;
  line-height: 1.1;
  color: var(--neon-teal-bright);
  text-shadow: var(--neon-glow-teal);
  cursor: pointer;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #fff;
  text-shadow: var(--neon-glow-pink-intense);
}

.logo:hover,
.logo:focus-visible {
  color: #fff;
  text-shadow: var(--neon-glow-teal-intense);
}

.nav-menu-btn,
.header-nav-spacer {
  display: none;
}

.mobile-nav {
  display: none;
}

.nav-menu-btn {
  --burger-tomato: #e46b6a;
  --burger-lettuce: #71d1c0;
  --french-fry: #71d1c0;
  --french-fry-hot: #71d1c0;
  position: relative;
  z-index: 2;
  justify-self: start;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0.25rem;
  border: none;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  line-height: 0;
}

.nav-menu-btn__stack {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5px;
  width: 1.35rem;
  height: 1rem;
  overflow: hidden;
}

.nav-menu-btn.is-burger-settling .nav-menu-btn__stack,
.nav-menu-btn[aria-expanded="true"] .nav-menu-btn__stack {
  overflow: visible;
}

@keyframes burger-plop-from-top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(calc(-100vh + 5rem)) scaleX(0.96);
    transform: translateY(calc(-100vh + 5rem)) scaleX(0.96);
  }

  18% {
    opacity: 1;
  }

  92% {
    -webkit-transform: translateY(1px) scaleX(1);
    transform: translateY(1px) scaleX(1);
  }

  97% {
    -webkit-transform: translateY(-1px) scaleX(1);
    transform: translateY(-1px) scaleX(1);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scaleX(1);
    transform: translateY(0) scaleX(1);
  }
}

.nav-menu-btn__line {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  -webkit-transform: translateY(0) rotate(0deg);
  transform: translateY(0) rotate(0deg);
  transition:
    -webkit-transform 0.24s ease,
    transform 0.24s ease,
    opacity 0.2s ease,
    background 0.24s ease;
}

.site-header.is-menu-open,
.nav-menu-btn.is-burger-settling {
  overflow: visible;
}

.nav-menu-btn.is-burger-settling:not([aria-expanded="true"]) .nav-menu-btn__line {
  -webkit-animation: burger-plop-from-top 0.8s cubic-bezier(0.45, 0, 0.85, 0.65) backwards;
  animation: burger-plop-from-top 0.8s cubic-bezier(0.45, 0, 0.85, 0.65) backwards;
  transition: none;
}

.nav-menu-btn.is-burger-settling:not([aria-expanded="true"]) .nav-menu-btn__line--bun-bottom {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.nav-menu-btn.is-burger-settling:not([aria-expanded="true"]) .nav-menu-btn__line--patty {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

.nav-menu-btn.is-burger-settling:not([aria-expanded="true"]) .nav-menu-btn__line--lettuce {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.nav-menu-btn.is-burger-settling:not([aria-expanded="true"]) .nav-menu-btn__line--tomato {
  -webkit-animation-delay: 0.45s;
  animation-delay: 0.45s;
}

.nav-menu-btn.is-burger-settling:not([aria-expanded="true"]) .nav-menu-btn__line--bun-top {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.nav-menu-btn__line--bun-top,
.nav-menu-btn__line--bun-bottom {
  background: var(--burger-bun);
  box-shadow: 0 0 3px rgba(234, 196, 115, 0.35);
}

.nav-menu-btn__line--tomato {
  background: var(--burger-tomato);
  box-shadow: 0 0 4px rgba(228, 107, 106, 0.45);
}

.nav-menu-btn__line--lettuce {
  background: var(--burger-lettuce);
  box-shadow: 0 0 4px rgba(113, 209, 192, 0.4);
}

.nav-menu-btn__line--patty {
  background: var(--burger-patty);
  box-shadow: 0 0 4px rgba(132, 73, 48, 0.55);
}

.nav-menu-btn[aria-expanded="true"] .nav-menu-btn__stack {
  position: relative;
  width: 1.45rem;
  height: 1rem;
  overflow: visible;
}

.nav-menu-btn[aria-expanded="true"] .nav-menu-btn__line--lettuce,
.nav-menu-btn[aria-expanded="true"] .nav-menu-btn__line--patty,
.nav-menu-btn[aria-expanded="true"] .nav-menu-btn__line--bun-bottom {
  opacity: 0;
  visibility: hidden;
  height: 0;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
  box-shadow: none;
  transition: none;
  -webkit-animation: none !important;
  animation: none !important;
}

.nav-menu-btn[aria-expanded="true"] .nav-menu-btn__line--bun-top,
.nav-menu-btn[aria-expanded="true"] .nav-menu-btn__line--tomato {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.45rem;
  height: 2.5px;
  margin-top: -1.25px;
  -webkit-animation: none !important;
  animation: none !important;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  transition:
    -webkit-transform 0.24s ease,
    transform 0.24s ease,
    background 0.24s ease;
  background: var(--burger-bun);
  box-shadow:
    0 0 4px rgba(234, 196, 115, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.nav-menu-btn[aria-expanded="true"] .nav-menu-btn__line--bun-top {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav-menu-btn[aria-expanded="true"] .nav-menu-btn__line--tomato {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.header-nav-spacer {
  justify-self: end;
  width: 2rem;
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 2;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0.5rem 0 0.75rem;
  background: var(--surface-solid);
  border-bottom: var(--section-divider-width) solid var(--section-divider);
  pointer-events: auto;
}

.mobile-nav__link {
  width: auto;
  max-width: 14rem;
  margin: 0.35rem 0;
  padding: 0.5rem 0;
  font-size: 1.15rem;
  letter-spacing: 0.16em;
  text-align: center;
  line-height: 1.1;
}

.mobile-nav__link:hover,
.mobile-nav__link:focus-visible {
  color: #fff;
  text-shadow: var(--neon-glow-pink-intense);
}

.site-header.is-menu-open {
  background: var(--surface-solid);
}

.hero {
  padding:
    calc(var(--header-h) + clamp(1.25rem, 4vw, 2rem))
    clamp(1.25rem, 5vw, 3rem)
    clamp(2rem, 5vw, 3rem);
  background: var(--black);
}

.hero-frame {
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
  aspect-ratio: 1180 / 786;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.section {
  position: relative;
  max-width: 54rem;
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 6rem) clamp(1.25rem, 5vw, 3rem);
}

.section-head {
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: var(--section-divider-width) solid var(--section-divider);
}

.section-label {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 7vw, 3.75rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-lead {
  margin: -1rem 0 2rem;
  max-width: 32rem;
  color: var(--paper-dim);
  font-size: 1.05rem;
}

.section--shows {
  background: var(--charcoal);
  max-width: none;
  border-top: var(--section-divider-width) solid var(--section-divider);
  border-bottom: var(--section-divider-width) solid var(--section-divider);
}

.section--shows .section-head {
  max-width: 54rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  border-bottom: none;
}

.section--shows .section-head::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  border-radius: 2px;
  background: var(--neon-pink-bright);
  box-shadow: var(--neon-glow-pink);
}

.shows-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 54rem;
}

.section--shows .show {
  display: grid;
  grid-template-columns: 5rem 1fr auto;
  gap: 1.25rem 2rem;
  align-items: center;
  padding: 1.75rem 0;
  border-bottom: var(--section-divider-width) solid var(--section-divider);
}

.section--shows .show:first-of-type {
  border-top: var(--section-divider-width) solid var(--section-divider);
}

.section--shows .show-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.45rem;
  margin: 0;
  position: relative;
  padding: 0 0.75rem 0 calc(0.75rem + 4px);
  line-height: 1;
}

.section--shows .show-date::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 2px;
  background: var(--neon-pink-bright);
  box-shadow: var(--neon-glow-pink);
}

.show-month,
.show-day,
.show-year {
  margin: 0;
  line-height: 1;
}

.show-month {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper-dim);
}

.show-day {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--paper);
}

.show-day--range {
  font-size: 1.65rem;
  letter-spacing: -0.02em;
}

.show-year {
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  color: var(--paper-dim);
}

.show-venue {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.5vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.show-city {
  margin: 0.2rem 0 0;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper-dim);
}

.show-with {
  margin: 0.4rem 0 0;
  font-size: 0.9375rem;
  color: var(--paper-dim);
}

.show-tickets,
.btn.btn--solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--btn-solid-text);
  background: var(--burger-bun);
  border: 2px solid var(--burger-bun);
  box-shadow: var(--neon-btn-glow-bun);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.show-tickets {
  min-width: 11.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  padding: 0.7rem 1.15rem;
}

.btn.btn--solid {
  font-size: 0.8125rem;
  letter-spacing: 0.22em;
  padding: 1rem 1.75rem;
}

.show-tickets:hover,
.btn.btn--solid:hover {
  background: transparent;
  color: var(--burger-bun-bright);
  border-color: var(--burger-bun-bright);
  box-shadow: var(--neon-btn-glow-bun-hover);
}

.show-tickets--soon {
  cursor: default;
  color: var(--paper-dim);
  background: transparent;
  border-color: var(--section-divider);
  box-shadow: var(--neon-btn-glow-bun-soft);
}

.show-tickets--soon:hover {
  background: transparent;
  color: var(--paper-dim);
  border-color: var(--section-divider);
  box-shadow: var(--neon-btn-glow-bun-soft);
}

.section--music {
  background: var(--black);
  max-width: none;
  border-bottom: var(--section-divider-width) solid var(--section-divider);
  text-align: center;
}

.section--music .section-title {
  margin-bottom: 2rem;
}

.music-release {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: min(20rem, 88vw);
  margin: 0 auto;
}

.music-artwork {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.music-art {
  width: 100%;
  max-width: min(20rem, 88vw);
  aspect-ratio: 1;
  object-fit: cover;
  border: 2px solid var(--border);
  box-shadow: 0 12px 40px var(--shadow-deep);
}

.music-art-link {
  display: block;
  line-height: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.music-art-link:hover {
  opacity: 0.92;
  transform: scale(1.02);
}

.music-art-link--desktop {
  display: none;
}

.music-release-lead {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon-pink);
  text-shadow: none;
}

.music-release-lead--many {
  display: none;
}

@media (min-width: 769px) and (min-height: 521px) {
  .music-release {
    max-width: calc(20rem * 3 + 1.25rem * 2);
  }

  .music-artwork {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 1.25rem;
    width: auto;
  }

  .music-art-link {
    width: 20rem;
    max-width: 20rem;
    flex-shrink: 0;
  }

  .music-art {
    width: 100%;
    max-width: 100%;
  }

  .music-art-link--desktop {
    display: block;
  }

  .music-release-lead--one {
    display: none;
  }

  .music-release-lead--many {
    display: block;
  }
}

.section--music .btn {
  margin: 0;
}

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 1.75rem;
  color: var(--paper);
  background: transparent;
  border: 2px solid var(--paper-dim);
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:not(.btn--solid):hover {
  border-color: var(--paper);
  color: var(--paper);
}

.section--contact {
  background: var(--charcoal);
  max-width: none;
  border-top: none;
  border-bottom: var(--section-divider-width) solid var(--section-divider);
  padding-bottom: clamp(4rem, 10vw, 6rem);
  text-align: center;
}

.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  max-width: 28rem;
  margin: 0 auto;
}

.section--contact .section-title {
  margin: 0;
}

.contact-email {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--neon-pink);
  word-break: break-word;
  transition: color 0.2s ease;
}

.contact-email:hover {
  color: var(--neon-teal);
}

.contact-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--neon-pink);
  transition: color 0.2s ease;
}

.contact-instagram:hover {
  color: var(--neon-teal);
}

.contact-instagram-icon {
  flex-shrink: 0;
  display: block;
  width: 1.85em;
  height: 1.85em;
  background-color: var(--neon-pink);
  -webkit-mask-image: url("../images/insta.webp");
  mask-image: url("../images/insta.webp");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: background-color 0.2s ease;
}

.contact-instagram:hover .contact-instagram-icon {
  background-color: var(--neon-teal);
}

.lnt-bottom {
  flex-shrink: 0;
  background: var(--black);
}

.lnt-bottom .lnt-banner-mark {
  position: relative;
  opacity: 1;
  background-color: var(--neon-teal);
  -webkit-mask-position: center bottom;
  mask-position: center bottom;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: auto;
  padding: 0.75rem clamp(1.25rem, 5vw, 3rem) calc(0.75rem + env(safe-area-inset-bottom, 0px));
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper-dim);
  background: var(--black);
  border-top: none;
}

.footer-copy {
  margin: 0;
}

@media (max-width: 768px), ((max-height: 520px) and (max-width: 920px)) {
  .site-header {
    padding: 0.75rem clamp(0.5rem, 3vw, 1rem);
    overflow: visible;
  }

  .header-nav {
    grid-template-columns: 1fr auto 1fr;
    width: 100%;
    overflow: visible;
  }

  .nav-menu-btn {
    display: inline-flex;
  }

  .header-nav-spacer {
    display: block;
  }

  .site-header.is-menu-open .mobile-nav {
    display: flex;
    gap: 0.25rem;
  }

  .nav-link {
    display: none;
  }

  .logo {
    grid-column: 2;
    justify-self: center;
    font-size: clamp(1.55rem, 7.8vw, 2.4rem);
    letter-spacing: 0.04em;
    max-width: calc(100vw - 5.25rem);
    overflow: visible;
    text-shadow:
      0 0 1px rgba(255, 255, 255, 0.85),
      0 0 5px var(--neon-teal),
      0 0 10px rgba(113, 209, 192, 0.5);
  }

  .section--shows .show {
    grid-template-columns: 4.25rem 1fr;
  }

  .show-tickets {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .hero-frame {
    aspect-ratio: 1180 / 786;
  }
}

@media (orientation: landscape) and (max-height: 520px) {
  .hero-frame {
    aspect-ratio: 1180 / 786;
    max-height: min(40dvh, 10.5rem);
    height: auto;
  }

  .section--contact {
    padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
  }

  .lnt-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 1.25rem;
    padding-bottom: calc(0.5rem + env(safe-area-inset-bottom, 0px));
    overflow: visible;
  }

  .lnt-bottom .lnt-banner-mark {
    --lnt-banner-h: clamp(2.25rem, 18dvh, 3.75rem);
    position: relative;
    left: auto;
    width: min(88vw, calc(var(--lnt-banner-h) * 975 / 200));
    height: var(--lnt-banner-h);
    max-width: 100%;
    margin-inline: auto;
  }

  .site-footer {
    padding-top: 0.5rem;
    padding-bottom: calc(0.5rem + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 380px) {
  .logo {
    font-size: clamp(1.65rem, 8.5vw, 2.5rem);
    letter-spacing: 0.03em;
    max-width: calc(100vw - 4.85rem);
  }
}

.logo-letter {
  transition: none;
}

@media (prefers-reduced-motion: no-preference) {
  .logo-letter.is-neon-dead {
    color: rgba(122, 248, 232, 0.05);
    text-shadow: none;
  }

  .logo-letter.is-neon-weak {
    color: rgba(122, 248, 232, 0.3);
    text-shadow: 0 0 4px rgba(113, 209, 192, 0.22);
  }

  .logo-letter.is-neon-flash {
    color: var(--neon-teal-bright);
    text-shadow: var(--neon-glow-teal-intense);
  }

  .logo:hover,
  .logo:focus-visible {
    transition: color 0.2s ease, text-shadow 0.2s ease;
  }

  .logo:hover .logo-letter,
  .logo:focus-visible .logo-letter {
    color: inherit;
    text-shadow: inherit;
  }
}

@media (max-width: 768px), ((max-height: 520px) and (max-width: 920px)) and (prefers-reduced-motion: no-preference) {
  .logo-letter.is-neon-flash {
    text-shadow:
      0 0 2px #fff,
      0 0 10px var(--neon-teal),
      0 0 22px rgba(113, 209, 192, 0.65);
  }
}

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

  .logo-letter.is-neon-dead,
  .logo-letter.is-neon-weak,
  .logo-letter.is-neon-flash {
    color: inherit;
    text-shadow: inherit;
  }

  .nav-menu-btn__line,
  .nav-menu-btn.is-burger-settling .nav-menu-btn__line {
    -webkit-animation: none !important;
    animation: none !important;
    transform: none !important;
    transition: none;
  }
}
