:root {
  --paper: #f8f5ef;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --smoke: rgba(8, 8, 10, 0.76);
  --coal: #0b0b0d;
  --ember: #f06449;
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.58);
  --font-display: "Bebas Neue", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --font-body: "Oswald", "Arial Narrow", Arial, Helvetica, sans-serif;
  --font-popup-heading: "Montserrat", "Helvetica Neue", Arial, Helvetica, sans-serif;
  --font-popup-body: "Open Sans", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  overscroll-behavior: none;
}

body {
  overflow: hidden;
  background: var(--coal);
  color: var(--ink);
  font-family: var(--font-body);
}

.hbe-home-active .wp-site-blocks,
.hbe-home-active .wp-block-shortcode {
  min-height: 100svh;
  margin: 0;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

#constellation {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: normal;
  opacity: 1;
}

.stage {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-color: #09090a;
  background-image: var(--hbe-desktop-bg, url("../images/Band_Shot.jpg"));
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.masthead {
  position: fixed;
  z-index: 8;
  top: 22px;
  left: 31px;
  right: 32px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  pointer-events: none;
}

.brand {
  display: inline-flex;
  max-width: min(68vw, 760px);
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.9rem);
  line-height: 0.9;
  text-align: left;
  text-transform: uppercase;
  text-shadow: 0 5px 24px rgba(0, 0, 0, 0.54);
  pointer-events: auto;
}

.socials {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: auto;
}

.socials a {
  display: grid;
  width: 14px;
  height: 14px;
  place-items: center;
  color: var(--ink);
  line-height: 1;
  text-decoration: none;
  opacity: 0.94;
  transition: color 160ms ease, transform 160ms ease;
}

.socials svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.socials a:hover,
.socials a:focus-visible {
  color: var(--ember);
  transform: translateY(-2px);
}

.mark {
  position: fixed;
  z-index: 9;
  left: 28px;
  top: 50%;
  width: 42px;
  height: auto;
  transform: translateY(-50%);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.6));
}

.section-nav {
  position: fixed;
  z-index: 9;
  top: 50%;
  right: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  transform: translateY(-50%);
}

.section-nav__item {
  display: block;
  min-width: 108px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 2.45rem);
  line-height: 0.9;
  text-align: right;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.62);
  transition: color 180ms ease, transform 180ms ease;
}

.section-nav__item:hover,
.section-nav__item:focus-visible,
.section-nav__item.is-active {
  color: var(--ember);
  transform: translateX(-6px);
}

.panel {
  position: fixed;
  z-index: 4;
  inset: 0;
  display: grid;
  height: 100vh;
  align-items: center;
  justify-items: stretch;
  padding: 116px clamp(126px, 16vw, 190px) 112px clamp(88px, 10vw, 130px);
  overflow: hidden;
  contain: layout paint style;
  content-visibility: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px) scale(0.985);
  transition:
    opacity 520ms ease,
    transform 520ms ease,
    visibility 0s linear 520ms;
}

.panel.is-active {
  content-visibility: visible;
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
}

.panel__scroll {
  width: 100%;
  max-height: calc(100vh - 236px);
  overflow: auto;
  overscroll-behavior: contain;
  padding: 10px 10px 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--ember) rgba(255, 255, 255, 0.16);
  -webkit-overflow-scrolling: touch;
}

.panel__scroll::-webkit-scrollbar {
  width: 7px;
}

.panel__scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.12);
}

.panel__scroll::-webkit-scrollbar-thumb {
  background: var(--ember);
}

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

.panel h1 {
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.7vw, 2.55rem);
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}

.home-pulse {
  width: min(54vw, 480px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.2;
}

.track-link {
  display: inline-block;
  max-width: min(520px, 100%);
  margin-bottom: 16px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.06rem;
  line-height: 1.15;
  text-decoration-color: var(--ember);
  text-decoration-thickness: 2px;
}

.tabs {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 4px 0 26px;
}

.tab {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.96rem;
  text-transform: uppercase;
}

.tab + .tab {
  color: var(--ember);
  text-decoration: underline;
}

.tour-list {
  display: grid;
  gap: 30px;
}

.tour-card {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(150px, 0.8fr);
  gap: 12px;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.tour-card.is-hidden {
  display: none;
}

.tour-card__date,
.tour-card__place {
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1;
}

.tour-card h2 {
  margin-bottom: 0;
  font-size: 1.18rem;
  font-style: italic;
  line-height: 1;
  text-transform: none;
}

.tour-card__place {
  margin-left: auto;
  text-align: right;
}

.tour-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  grid-column: 1 / -1;
}

.outline-button,
.solid-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 2px solid var(--ember);
  color: var(--ember);
  font-family: var(--font-display);
  font-size: 0.94rem;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.solid-button {
  border-color: var(--ember);
  background: var(--ember);
  color: var(--ink);
  cursor: pointer;
}

.solid-button--wide {
  width: 100%;
  margin-top: 24px;
}

.panel__scroll--music,
.panel__scroll--photos,
.panel__scroll--videos,
.panel__scroll--band,
.panel__scroll--about {
  width: 100%;
}

.panel.panel--music {
  align-items: start;
}

.panel.panel--band {
  align-items: stretch;
  padding: 105px clamp(220px, 16vw, 340px) 90px;
}

.panel--band .panel__scroll {
  max-height: calc(100vh - 105px);
  padding: 0 0 120px;
}

.panel.panel--about {
  align-items: stretch;
  padding: 105px clamp(150px, 12vw, 240px) 90px;
}

.panel--about .panel__scroll {
  max-height: calc(100vh - 105px);
  padding: 0 0 140px;
}

.about-panel {
  width: min(100%, 1260px);
  margin: 0 auto;
}

.about-panel__image {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  border: 6px solid rgba(255, 255, 255, 0.78);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-panel__copy {
  margin-top: 24px;
  padding: 28px clamp(20px, 3vw, 42px);
  border-left: 5px solid var(--ember);
  background: rgba(0, 0, 0, 0.68);
}

.about-panel h1 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.about-panel p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.86);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.95rem, 1vw, 1.08rem);
  line-height: 1.65;
}

.about-panel p:last-child {
  margin-bottom: 0;
}

.panel.panel--photos {
  align-items: stretch;
  padding: 0;
}

.panel--photos .panel__scroll {
  width: 100vw;
  height: 100vh;
  max-height: none;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
}

.panel--photos .panel__scroll::-webkit-scrollbar {
  display: none;
}

.panel.panel--videos {
  align-items: start;
  padding: 0;
}

.panel--videos .panel__scroll {
  position: absolute;
  top: 50%;
  right: auto;
  left: 50%;
  display: block;
  width: min(960px, 70vw);
  height: auto;
  max-height: none;
  padding: 0;
  overflow: visible;
  transform: translate(-50%, -50%);
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 250px));
  align-items: start;
  justify-content: center;
  gap: 28px;
  padding: 0 8px 22px;
}

.album-card {
  width: 100%;
  text-align: center;
}

.album-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.stream-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 13px;
  min-height: 34px;
  margin-top: 11px;
}

.stream-row a {
  display: grid;
  width: 27px;
  height: 27px;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, opacity 160ms ease;
}

.stream-row a:hover,
.stream-row a:focus-visible {
  opacity: 0.84;
  transform: translateY(-2px);
}

.stream-row img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.photo-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100vw;
  margin: 0 auto;
  box-shadow: none;
}

.photo-stack img {
  display: block;
  width: 100%;
  height: max(100vh, 66.6667vw);
  max-height: none;
  object-fit: cover;
  object-position: center center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.video-carousel {
  position: relative;
  width: min(960px, 100%);
  aspect-ratio: 16 / 9;
  height: auto;
  max-width: 100%;
  margin: 0 auto;
}

.video-slide {
  display: none;
  width: 100%;
  height: 100%;
}

.video-slide.is-current {
  display: block;
}

.video-slide iframe {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
  box-shadow: var(--shadow);
}

.video-pagination {
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  pointer-events: auto;
}

.video-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(240, 100, 73, 0.46);
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.video-dot:hover,
.video-dot:focus-visible,
.video-dot.is-active {
  background: var(--ember);
  transform: scale(1.12);
}

.member-carousel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  width: min(100%, 1340px);
  min-height: 0;
  margin: 0 auto;
}

.member-card {
  position: relative;
  display: block;
  opacity: 1;
  transform: none;
  transition: opacity 420ms ease, transform 420ms ease;
  pointer-events: auto;
}

.member-card.is-current {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.member-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.member-card__copy {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  width: auto;
  margin: 0;
  padding: 14px 16px 15px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.34));
}

.member-card__copy h2 {
  margin-bottom: 5px;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.45vw, 1.7rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.member-card__copy span {
  color: var(--ember);
}

.member-card__copy p,
.bio-block p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.35;
}

.member-socials {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
}

.member-socials a {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.member-socials a:hover,
.member-socials a:focus-visible {
  color: var(--ember);
  transform: translateY(-1px);
}

.member-socials svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.carousel-controls {
  display: none;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.arrow-button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid var(--line);
  background: rgba(0, 0, 0, 0.34);
  color: var(--ink);
  cursor: pointer;
  font-size: 2.2rem;
  line-height: 1;
}

.bio-block {
  width: min(760px, 92%);
  margin: 26px auto 0;
  text-align: center;
}

.bio-block h2 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.3vw, 2.8rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.product-card {
  padding: 12px;
  background: rgba(0, 0, 0, 0.48);
  border: 1px solid var(--line);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-card h2 {
  margin: 14px 0 8px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
  text-transform: uppercase;
}

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

.login-form {
  display: grid;
  gap: 16px;
  width: min(720px, 100%);
  margin: 0 auto;
}

.login-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
}

.login-form input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.48);
  color: var(--ink);
}

.site-footer {
  position: fixed;
  z-index: 8;
  right: 25px;
  bottom: 20px;
  left: 25px;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(120px, 1fr);
  align-items: end;
  gap: 28px;
  color: var(--ink);
  font-family: var(--font-display);
  line-height: 1.25;
  text-transform: uppercase;
  pointer-events: auto;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

.site-footer a {
  color: var(--ink);
  font-size: inherit;
  text-decoration: none;
}

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

.footer-signup {
  align-self: end;
  width: 255px;
}

.footer-signup label {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 10px;
  line-height: 1;
}

.footer-signup__row {
  display: grid;
  grid-template-columns: 175px 69px;
  gap: 11px;
  align-items: end;
}

.footer-signup input {
  width: 175px;
  height: 27px;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  background: transparent;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  outline: 0;
}

.footer-signup input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.footer-signup button {
  width: 69px;
  height: 25px;
  padding: 0;
  border: 0;
  background: var(--ink);
  color: #000;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10.5px;
}

.footer-signup--mc4wp .footer-signup__mc4wp,
.footer-signup--mc4wp .mc4wp-form,
.footer-signup--mc4wp .mc4wp-form form {
  width: 255px;
  margin: 0;
}

.footer-signup--mc4wp .mc4wp-form-fields {
  display: grid;
  grid-template-columns: 175px 69px;
  gap: 11px;
  align-items: end;
}

.footer-signup--mc4wp .mc4wp-form-fields p {
  display: contents;
  margin: 0;
}

.footer-signup--mc4wp .mc4wp-form-fields label {
  margin: 0;
  color: transparent;
  font-size: 0;
}

.footer-signup--mc4wp input[type="text"],
.footer-signup--mc4wp input[name*="FNAME" i],
.footer-signup--mc4wp input[name*="LNAME" i],
.footer-signup--mc4wp input[name*="NAME" i]:not([type="email"]) {
  display: none;
}

.footer-signup--mc4wp input[type="email"],
.footer-signup--mc4wp input[type="text"] {
  width: 175px;
  height: 27px;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  background: transparent;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  outline: 0;
}

.footer-signup--mc4wp input[type="submit"],
.footer-signup--mc4wp button {
  width: 69px;
  height: 25px;
  padding: 0;
  border: 0;
  background: var(--ink);
  color: #000;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10.5px;
  text-transform: none;
}

.footer-signup--mc4wp .mc4wp-response {
  margin-top: 4px;
  color: var(--ink);
  font-size: 8px;
  line-height: 1.1;
}

.footer-signup button.hbe-loading {
  opacity: 0.65;
  pointer-events: none;
}

.footer-signup input.hbe-error {
  border-bottom-color: var(--ember);
}

.footer-signup__message {
  min-height: 10px;
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 8px;
  line-height: 1.1;
  opacity: 0;
}

.footer-signup__message.is-visible {
  opacity: 0.82;
}

.footer-signup__message.is-error {
  color: var(--ember);
  opacity: 1;
}

.hbe-footer-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.footer-legal {
  justify-self: center;
  width: min(440px, 44vw);
  text-align: center;
}

.footer-legal p {
  min-height: 25px;
}

.footer-contact {
  justify-self: end;
  min-width: 90px;
  min-height: 25px;
  text-align: right;
}

.cart-drawer {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  width: min(370px, 92vw);
  height: 100vh;
  padding: 30px;
  background: rgba(7, 7, 8, 0.96);
  border-left: 1px solid var(--line);
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.5);
  transform: translateX(104%);
  transition: transform 260ms ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer__close {
  position: absolute;
  top: 18px;
  right: 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 2rem;
}

.cart-drawer h2 {
  margin: 36px 0 18px;
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
}

.cart-drawer p {
  color: var(--muted);
}

@media (max-width: 860px) {
  html,
  body {
    height: 100%;
    overflow: hidden;
    overscroll-behavior: none;
  }

  .backdrop {
    background-image: var(--hbe-mobile-bg, url("../images/the_band_mobile_bg.jpg"));
  }

  .stage {
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
  }

  .masthead {
    top: 18px;
    left: 20px;
    right: 18px;
    gap: 14px;
  }

  .brand {
    max-width: 72vw;
    font-size: clamp(1.5rem, 4.8vw, 2rem);
  }

  .socials {
    gap: 7px;
  }

  .socials a {
    width: 14px;
    height: 14px;
  }

  .mark {
    display: block;
    left: 25px;
    width: 36px;
  }

  .section-nav {
    right: 25px;
    gap: 0;
  }

  .section-nav__item {
    min-width: 120px;
    font-size: 1.75rem;
    line-height: 1.08;
  }

  .panel {
    height: 100svh;
    min-height: 0;
    overflow: hidden;
    padding: 112px 112px 112px 20px;
  }

  .panel.panel--band {
    padding: 55px 74px 0;
  }

  .panel.panel--about {
    padding: 55px 74px 0;
  }

  .panel.panel--live {
    align-items: start;
    padding: 50px 0 100px;
  }

  .panel.panel--music {
    align-items: start;
    padding: 40px 0 0;
  }

  .photo-stack img {
    height: auto;
    object-fit: contain;
    object-position: center top;
  }

  .panel.panel--videos {
    padding: 0;
  }

  .panel__scroll {
    width: 100%;
    max-height: calc(100svh - 224px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-inline: 0;
    -webkit-overflow-scrolling: touch;
  }

  .panel--live .panel__scroll {
    width: min(300px, calc(100vw - 178px));
    max-height: calc(100svh - 100px);
    margin: 0 auto;
    padding: 25px 0 120px;
  }

  .panel--music .panel__scroll {
    width: 100vw;
    max-height: 100svh;
    padding: 25px 0 130px;
  }

  .panel--photos .panel__scroll {
    height: 100svh;
  }

  .panel--videos .panel__scroll {
    top: 50%;
    right: auto;
    left: 50%;
    width: min(430px, calc(100vw - 300px));
    height: auto;
    max-height: none;
    transform: translate(-50%, -50%);
  }

  .panel--videos .video-carousel {
    width: min(430px, 100%);
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .panel--videos .video-slide iframe {
    height: 100%;
    aspect-ratio: 16 / 9;
  }

  .panel--band .panel__scroll {
    max-height: calc(100svh - 180px);
    padding: 0 0 148px;
  }

  .panel--about .panel__scroll {
    width: min(640px, calc(100vw - 156px));
    max-height: calc(100svh - 180px);
    margin: 0 auto;
    padding: 0 0 148px;
  }

  .panel__scroll--music,
  .panel__scroll--photos,
  .panel__scroll--videos,
  .panel__scroll--band,
  .panel__scroll--about {
    width: 100%;
  }

  .about-panel__copy {
    margin-top: 12px;
    padding: 18px 16px;
    border-left-width: 4px;
  }

  .about-panel h1 {
    font-size: 1.75rem;
  }

  .about-panel p {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .panel h1 {
    font-size: clamp(1.45rem, 5vw, 2.1rem);
  }

  .panel--live h1 {
    margin-bottom: 10px;
  }

  .panel--live .track-link {
    width: 100%;
    min-height: 59px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
  }

  .panel--live .tabs {
    width: 280px;
    min-height: 38px;
    margin: 0 auto 0;
    align-items: center;
    gap: 16px;
  }

  .panel--live .tour-list {
    width: 280px;
    margin: 0 auto;
    gap: 0;
  }

  .panel--live .tour-card {
    grid-template-columns: 1fr 1fr;
    width: 280px;
    min-height: 141px;
    padding-top: 18px;
  }

  .panel--live .tour-card__actions {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .shop-grid {
    grid-template-columns: 1fr;
  }

  .album-card {
    width: 250px;
  }

  .album-grid {
    grid-template-columns: 250px;
    gap: 25px;
    padding: 0;
  }

  .album-card > img {
    width: 250px;
  }

  .stream-row {
    gap: 10px;
    height: 50px;
    min-height: 50px;
    margin-top: 0;
    background: rgba(0, 0, 0, 0.54);
  }

  .stream-row a {
    width: 20px;
    height: 20px;
  }

  .stream-row a:first-child {
    width: 50px;
    height: 50px;
  }

  .member-carousel {
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
    min-height: 0;
  }

  .member-card__copy {
    bottom: 8px;
  }

  .member-card__copy h2 {
    font-size: clamp(1.2rem, 4.8vw, 1.7rem);
  }

  .member-card__copy p {
    font-size: 0.95rem;
    line-height: 1.28;
  }

  .site-footer {
    right: 18px;
    bottom: 12px;
    left: 18px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 4px;
    text-align: center;
  }

  .footer-signup {
    display: none;
  }

  .footer-contact {
    display: block;
    justify-self: center;
    min-width: 278px;
    text-align: center;
  }

  .footer-legal {
    width: min(90vw, 620px);
  }
}

@media (min-width: 700px) and (max-width: 860px) {
  .member-carousel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 432px);
    gap: 30px;
  }

  .member-card__copy {
    padding: 9px 10px 10px;
  }

  .member-card__copy h2 {
    font-size: 1rem;
    line-height: 0.95;
  }

  .member-card__copy p {
    font-size: 0.74rem;
    line-height: 1.24;
  }

  .member-socials {
    gap: 7px;
    margin-top: 6px;
  }

  .member-socials a {
    width: 14px;
    height: 14px;
  }
}

@media (min-width: 861px) and (max-width: 1199px) {
  .panel.panel--music {
    padding: 116px clamp(150px, 16vw, 170px) 112px;
  }

  .album-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 552px);
    margin: 0 auto;
    column-gap: 50px;
  }

  .panel.panel--band {
    padding: 105px clamp(150px, 16vw, 170px) 90px;
  }

  .panel.panel--about {
    padding: 105px clamp(150px, 16vw, 170px) 90px;
  }

  .member-carousel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 668px);
  }
}

@media (min-width: 1200px) and (max-width: 1320px) {
  .panel.panel--band {
    padding: 105px 170px 90px;
  }

  .panel.panel--about {
    padding: 105px 170px 90px;
  }
}

@media (max-width: 1100px) {
  .site-footer {
    right: 18px;
    bottom: 12px;
    left: 18px;
    grid-template-columns: minmax(0, 1fr) auto;
    justify-items: stretch;
    gap: 4px;
    text-align: left;
  }

  .footer-signup {
    display: none;
  }

  .footer-contact {
    display: block;
    justify-self: end;
  }

  .footer-legal {
    justify-self: start;
    width: min(70vw, 620px);
    text-align: left;
  }
}

@media (max-width: 860px) {
  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-contact {
    display: block;
    justify-self: center;
    min-width: 278px;
    text-align: center;
  }

  .footer-legal {
    justify-self: center;
    width: min(90vw, 620px);
    text-align: center;
  }
}

@media (max-width: 560px) {
  :root {
    --mobile-content-width: clamp(124px, 45vw, 230px);
  }

  .masthead {
    align-items: flex-start;
  }

  .brand {
    max-width: 68vw;
  }

  .socials {
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 72px;
  }

  .mark {
    display: block;
    left: 24px;
    width: 34px;
  }

  .section-nav {
    top: 50%;
    right: 14px;
    bottom: auto;
    transform: translateY(-50%);
  }

  .section-nav__item {
    min-width: 78px;
    font-size: clamp(1.18rem, 4.8vw, 1.45rem);
  }

  .panel {
    height: 100svh;
    min-height: 0;
    padding: 114px 92px 196px 22px;
  }

  .panel.panel--live {
    padding: 50px 0 100px;
  }

  .panel.panel--music {
    padding: 40px 0 0;
  }

  .panel.panel--videos {
    align-items: start;
    padding: 0;
  }

  .panel.panel--band {
    padding: 68px 0 0;
  }

  .panel.panel--about {
    padding: 68px 0 0;
  }

  .panel__scroll {
    max-height: calc(100svh - 306px);
  }

  .panel__scroll--music,
  .panel__scroll--photos,
  .panel__scroll--videos,
  .panel__scroll--band,
  .panel__scroll--about {
    width: 100%;
  }

  .panel--live .panel__scroll {
    width: var(--mobile-content-width);
    margin: 0 auto;
    overflow-x: hidden;
  }

  .panel--music .panel__scroll,
  .panel--band .panel__scroll {
    width: var(--mobile-content-width);
    margin-right: auto;
    margin-left: auto;
  }

  .panel--about .panel__scroll {
    width: min(380px, calc(100vw - 178px));
    margin-right: auto;
    margin-left: clamp(68px, 17vw, 82px);
  }

  .about-panel__image {
    border-width: 5px;
  }

  .about-panel__copy {
    margin-top: 10px;
    padding: 14px 12px;
    border-left-width: 3px;
  }

  .about-panel h1 {
    margin-bottom: 12px;
    font-size: clamp(1.3rem, 6vw, 1.65rem);
  }

  .about-panel p {
    margin-bottom: 13px;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .panel--live h1,
  .panel--live .track-link,
  .panel--live .tabs,
  .panel--live .tour-list,
  .panel--live .tour-card,
  .panel--live .solid-button--wide {
    width: 100%;
    max-width: none;
    margin-right: auto;
    margin-left: auto;
  }

  .panel--live .tabs {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 12px;
  }

  .panel--live .tour-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 8px;
    min-width: 0;
  }

  .panel--live .tour-card > * {
    min-width: 0;
  }

  .panel--live .tour-card h2,
  .panel--live .tour-card__place {
    overflow-wrap: break-word;
  }

  .panel--live .tour-card__actions {
    gap: 8px;
  }

  .panel--live .outline-button,
  .panel--live .solid-button {
    min-width: 0;
    padding-right: 6px;
    padding-left: 6px;
  }

  .panel--music .panel__scroll {
    max-height: 100svh;
  }

  .panel--music .album-grid {
    grid-template-columns: minmax(0, 100%);
  }

  .panel--music .album-card {
    width: 100%;
  }

  .panel--music .album-card > img {
    width: 100%;
  }

  .panel--videos .panel__scroll {
    top: 50%;
    left: 50%;
    right: auto;
    width: min(80vw, 360px);
    height: auto;
    max-height: none;
    padding-bottom: 0;
    transform: translate(-50%, -50%);
  }

  .panel--videos .video-carousel {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .panel--videos .video-slide iframe {
    height: 100%;
    aspect-ratio: 16 / 9;
  }

  .panel--videos .video-pagination {
    bottom: 8px;
  }

  .panel--band .panel__scroll {
    max-height: calc(100svh - 236px);
    padding-bottom: 132px;
  }

  .panel--about .panel__scroll {
    max-height: calc(100svh - 236px);
    padding-bottom: 132px;
  }

  .panel--band .member-carousel {
    width: 100%;
    gap: 52px;
  }

  .panel--home {
    pointer-events: none;
  }

  .track-link,
  .tour-card h2,
  .member-card__copy p,
  .bio-block p {
    font-family: Arial, Helvetica, sans-serif;
  }

  .track-link {
    font-size: 1rem;
  }

  .tour-card__date,
  .tour-card__place {
    font-size: 0.92rem;
  }

  .tour-card h2 {
    font-size: 1.08rem;
  }

  .outline-button,
  .solid-button {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .album-card {
    width: 100%;
  }

  .stream-row a {
    min-width: 20px;
    min-height: 20px;
    padding: 0;
  }

  .stream-row a:first-child {
    min-width: 50px;
    min-height: 50px;
  }

  .member-card img {
    width: 100%;
    max-height: none;
    border-width: 6px;
  }

  .member-card__copy {
    right: 6px;
    bottom: 6px;
    left: 6px;
    width: auto;
    margin: 0;
    padding: 12px 14px 13px;
  }

  .member-card__copy h2 {
    font-size: clamp(1.12rem, 5.4vw, 1.32rem);
  }

  .member-card__copy p {
    font-size: 0.92rem;
    line-height: 1.26;
  }

  .site-footer {
    bottom: 12px;
    right: 14px;
    left: 14px;
  }

  .site-footer p {
    margin-bottom: 5px;
  }
}

@media (max-width: 340px) {
  :root {
    --mobile-content-width: 124px;
  }

  .section-nav__item {
    min-width: 78px;
  }
}

.hbe-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  animation: hbe-popup-fade-in 0.5s ease forwards;
}

.hbe-popup {
  position: fixed;
  z-index: 99999;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 450px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  color: #fff;
  font-family: var(--font-popup-body);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  animation: hbe-popup-pop-in 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

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

.hbe-popup-accent {
  height: 4px;
  background: var(--ember);
}

.hbe-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1;
  transition: border-color 180ms ease, color 180ms ease;
}

.hbe-popup-close:hover,
.hbe-popup-close:focus-visible {
  border-color: #fff;
  color: #fff;
}

.hbe-popup-body {
  padding: 42px 34px 34px;
  text-align: center;
}

.hbe-popup-logo {
  width: 90px;
  height: auto;
  object-fit: contain;
  margin-bottom: 18px;
  opacity: 1;
}

.hbe-popup-title {
  margin: 0;
  color: #fff;
  font-family: var(--font-popup-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 7px;
  line-height: 1.35;
  text-transform: uppercase;
}

.hbe-popup-eyebrow {
  display: block;
  margin-bottom: 16px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 7px;
  text-indent: 7px;
}

.hbe-popup-main {
  display: block;
  font-size: clamp(28px, 7vw, 38px);
  font-weight: 700;
  letter-spacing: 10px;
  line-height: 1.1;
  text-indent: 10px;
}

.hbe-popup-subtitle {
  max-width: 360px;
  margin: 24px auto 30px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-popup-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
}

.hbe-popup-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hbe-popup-form--mc4wp .mc4wp-form,
.hbe-popup-form--mc4wp .mc4wp-form form,
.hbe-popup-form--mc4wp .mc4wp-form-fields {
  width: 100%;
  margin: 0;
}

.hbe-popup-form--mc4wp .mc4wp-form-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hbe-popup-form--mc4wp .mc4wp-form-fields p {
  display: contents;
  margin: 0;
}

.hbe-popup-form--mc4wp .mc4wp-form-fields label {
  margin: 0;
  color: transparent;
  font-size: 0;
}

.hbe-popup-form--mc4wp input[type="email"],
.hbe-popup-form--mc4wp input[type="text"] {
  width: 100%;
  padding: 12px 0 9px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: #fff;
  font-family: var(--font-popup-body);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
}

.hbe-popup-form--mc4wp input[type="email"]::placeholder,
.hbe-popup-form--mc4wp input[type="text"]::placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hbe-popup-form--mc4wp input[type="email"]:focus,
.hbe-popup-form--mc4wp input[type="text"]:focus {
  border-color: rgba(255, 255, 255, 0.5);
}

.hbe-popup-form--mc4wp input[type="submit"],
.hbe-popup-form--mc4wp button {
  width: 100%;
  margin-top: 10px;
  padding: 12px 14px 11px;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #000;
  cursor: pointer;
  font-family: var(--font-popup-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.hbe-popup-form--mc4wp .mc4wp-response {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.hbe-popup-input {
  width: 100%;
  padding: 12px 0 9px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: #fff;
  font-family: var(--font-popup-body);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
  transition: border-color 180ms ease, background 180ms ease;
}

.hbe-popup-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hbe-popup-input:focus {
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
}

.hbe-popup-input.hbe-error {
  border-color: #e74c3c;
}

.hbe-popup-submit {
  width: 100%;
  margin-top: 10px;
  padding: 12px 14px 11px;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #000;
  cursor: pointer;
  font-family: var(--font-popup-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
  transition: background 180ms ease, opacity 180ms ease;
}

.hbe-popup-submit:hover,
.hbe-popup-submit:focus-visible {
  background: rgba(255, 255, 255, 0.85);
}

.hbe-popup-submit.hbe-loading {
  opacity: 0.6;
  pointer-events: none;
}

.hbe-popup-message {
  display: none;
  margin-top: 12px;
  color: #e74c3c;
  font-size: 12px;
  text-align: center;
}

.hbe-popup-success,
.hbe-popup-already {
  display: none;
  padding: 48px 34px 40px;
  text-align: center;
}

.hbe-popup-success.show,
.hbe-popup-already.show {
  display: block;
  animation: hbe-popup-fade-in 0.4s ease forwards;
}

.hbe-checkmark {
  display: flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 22px;
}

.hbe-popup-success h3,
.hbe-popup-already h3 {
  margin: 0 0 12px;
  color: #fff;
  font-family: var(--font-popup-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.hbe-popup-success p,
.hbe-popup-already p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 300;
}

.hbe-popup-footer {
  padding: 14px 36px 20px;
  text-align: center;
}

.hbe-popup-footer a {
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--font-popup-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.hbe-popup-footer a:hover,
.hbe-popup-footer a:focus-visible {
  color: #fff;
}

.hbe-ohnohoney {
  position: absolute;
  left: -9999px;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.hbe-popup-overlay.hbe-hide {
  animation: hbe-popup-fade-out 0.35s ease forwards;
}

.hbe-popup.hbe-hide {
  animation: hbe-popup-pop-out 0.3s ease forwards;
}

@keyframes hbe-popup-fade-in {
  to {
    opacity: 1;
  }
}

@keyframes hbe-popup-pop-in {
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes hbe-popup-fade-out {
  to {
    opacity: 0;
  }
}

@keyframes hbe-popup-pop-out {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.92);
  }
}

@media (max-width: 540px) {
  .hbe-popup {
    width: 94%;
  }

  .hbe-popup-body {
    padding: 36px 22px 28px;
  }

  .hbe-popup-title {
    font-size: 12px;
    letter-spacing: 5px;
  }

  .hbe-popup-eyebrow {
    font-size: 12px;
    letter-spacing: 5px;
    text-indent: 5px;
  }

  .hbe-popup-main {
    font-size: 26px;
    letter-spacing: 6px;
    text-indent: 6px;
  }

  .hbe-popup-footer {
    padding: 10px 22px 16px;
  }
}
