:root {
  color-scheme: dark;
  --black: #000;
  --white: #fff;
  --grey: #9a9a9a;
  --line: #333;
  --gutter: clamp(1rem, 4vw, 2rem);
  --column: 58rem;
  --display: "Arial Black", "Arial Bold", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  background: var(--black);
  color: var(--white);
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.25;
}
a {
  color: inherit;
}
a:focus-visible {
  outline: 0.2rem solid var(--white);
  outline-offset: 0.25rem;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  padding: 0.8rem 1rem;
  background: var(--white);
  color: var(--black);
  font-weight: 700;
  transform: translateY(-110%);
}
.skip-link:focus {
  transform: translateY(0);
}

.masthead,
main,
.site-footer {
  width: min(calc(100% - (var(--gutter) * 2)), var(--column));
  margin-inline: auto;
}
.masthead {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 12.5rem;
}
.site-title {
  grid-column: 2;
  width: clamp(9rem, 20vw, 12rem);
  margin: 0;
  line-height: 0;
}
.site-title picture { display: block; }
.site-title img {
  display: block;
  width: 100%;
  height: clamp(4.5rem, 9vw, 6rem);
  object-fit: contain;
  object-position: left center;
}
.header-link {
  font-family: var(--display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  text-underline-offset: .2em;
}
.header-link:hover { text-decoration: none; }
.header-instagram { grid-column: 1; justify-self: start; }
.header-store { grid-column: 3; justify-self: end; }

section {
  margin-bottom: clamp(4rem, 10vw, 7rem);
}
.section-heading {
  margin-bottom: 1rem;
}
.section-heading h2 {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.65rem, 4vw, 2.75rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.live-section { margin-bottom: 0; }
.events-shell {
  width: 100%;
}
.songkick-frame {
  position: relative;
  min-height: 14rem;
}
.songkick-frame iframe {
  display: block;
  max-width: 100% !important;
}
.events-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--grey);
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}
.events-shell.is-ready .events-loading {
  display: none;
}
.events-fallback {
  display: flex;
  justify-content: flex-end;
  margin-bottom: .75rem;
  padding-top: .35rem;
}
.events-fallback a,
.noscript-note a {
  font-family: var(--display);
  font-size: 0.75rem;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.18em;
}
.events-fallback a:hover {
  text-decoration: none;
}
.noscript-note {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
}

.mailing-hold {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  color: #5f5f5f;
  font-family: var(--display);
}
.mailing-copy { width: 100%; }
.mailing-copy h2 {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  font-size: clamp(2.3rem, 7vw, 4.5rem);
  line-height: .85;
  letter-spacing: -.06em;
}
.site-footer {
  padding: 0 0 1.5rem;
  color: var(--grey);
  font-family: var(--display);
  font-size: 0.7rem;
}
.site-footer p {
  margin: 0;
}

@media (max-width: 620px) {
  .masthead { height: 12.5rem; }
  .site-title { width: 6.5rem; }
  .site-title img { height: 4rem; }
  .header-link { font-size: .7rem; }
  section { margin-bottom: 4.5rem; }
  .live-section { margin-bottom: 0; }
  .songkick-frame { min-height: 11rem; }
}

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

