:root {
  --bg: #050505;
  --panel: #111;
  --panel-2: #181818;
  --ink: #f7f5ef;
  --muted: #bdb7aa;
  --line: rgba(255, 255, 255, 0.16);
  --hot: #d1121b;
  --gold: #d6a23c;
  --steel: #9aa2ac;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  color-scheme: dark;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 12px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(16px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  width: 74px;
  min-width: 74px;
}

.brand-mark img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.24));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--ink);
  color: #050505;
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #0d0d0d;
  color: var(--ink);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 760px) minmax(300px, 380px);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: calc(100svh - 150px);
  padding: clamp(34px, 6vw, 76px) clamp(18px, 6vw, 78px);
  overflow: hidden;
  isolation: isolate;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0) 42%),
    #050505;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  z-index: -1;
  background: linear-gradient(0deg, #050505 0%, rgba(5, 5, 5, 0) 100%);
}

.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-logo-title {
  max-width: min(760px, 100%);
  margin: 0;
}

.hero-logo-title img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 22px rgba(255, 255, 255, 0.2));
}

.one-liner {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--ink);
  font-size: clamp(1.28rem, 2.4vw, 2.4rem);
  font-weight: 900;
  line-height: 1.05;
}

.hero-actions,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button,
.hero-actions a,
.social-links a,
.tour-row a,
.listen-panel a,
.footer-logo-link {
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.button.primary {
  background: var(--ink);
  color: #050505;
}

.button.ghost {
  background: rgba(5, 5, 5, 0.5);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold);
  outline: none;
}

.social-links {
  padding: 0;
  list-style: none;
}

.social-links a {
  display: inline-flex;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: var(--hot);
  color: var(--ink);
  outline: none;
}

.gumroad-placeholder {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin-top: 30px;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.night-lights-card {
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(100%, 640px);
  padding: 18px;
  border: 1px solid rgba(115, 255, 112, 0.54);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(20, 105, 42, 0.96), rgba(8, 21, 12, 0.94) 54%, rgba(132, 255, 82, 0.72)),
    #0b2512;
  box-shadow: 0 18px 50px rgba(86, 255, 62, 0.22);
}

.night-lights-card p {
  margin: 0;
  color: #f7f5ef;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.night-lights-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid #84ff52;
  border-radius: 4px;
  background: #050505;
  color: #b9ff8b;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.night-lights-button:hover,
.night-lights-button:focus-visible {
  border-color: #d7ffc5;
  background: #84ff52;
  color: #050505;
  outline: none;
  transform: translateY(-2px);
}

@media (max-width: 520px) {
  .night-lights-card {
    flex-wrap: wrap;
  }
}

.hero-video {
  display: grid;
  gap: 18px;
  justify-self: start;
  width: min(100%, 380px);
}

.vertical-frame,
.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #000;
  box-shadow: var(--shadow);
}

.vertical-frame {
  aspect-ratio: 9 / 16;
  max-height: min(620px, 72svh);
}

.video-frame {
  aspect-ratio: 16 / 9;
}

.vertical-frame iframe,
.vertical-frame video,
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.vertical-frame video {
  object-fit: cover;
}

.video-poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background: #000;
  color: var(--ink);
  overflow: hidden;
}

.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28));
}

.video-play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 64px;
  height: 64px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  transform: translate(-50%, -50%);
}

.video-play-icon::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 19px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--ink);
}

.video-poster:hover .video-play-icon,
.video-poster:focus-visible .video-play-icon {
  background: rgba(209, 18, 27, 0.72);
}

.video-poster-frame.is-playing .video-poster {
  opacity: 0;
  pointer-events: none;
}

label {
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #080808;
  color: var(--ink);
  font: inherit;
  padding: 12px;
}

textarea {
  resize: vertical;
}

button {
  min-height: 44px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: #070707;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
}

button:hover,
button:focus-visible {
  border-color: var(--gold);
  outline: none;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--gold);
  font-size: 0.86rem;
}

.section {
  padding: clamp(58px, 9vw, 112px) clamp(18px, 6vw, 78px);
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 980px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.96;
  text-align: center;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 410px);
  gap: clamp(24px, 5vw, 58px);
  max-width: 1180px;
  margin: 0 auto;
}

.prose {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.prose p:first-child {
  margin-top: 0;
}

.stat-grid {
  display: grid;
  gap: 12px;
}

.stat-grid article,
.tour-row,
.merch-card,
.listen-panel,
.video-track article,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
}

.stat-grid article {
  padding: 18px;
}

.stat-grid strong {
  display: block;
  color: var(--hot);
  font-size: 2rem;
  line-height: 1;
}

.stat-grid span {
  color: var(--muted);
}

.about-band {
  max-width: 920px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.55vw, 1.32rem);
}

.about-band p {
  margin: 0;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.member-card {
  display: grid;
  gap: 10px;
  text-align: center;
  justify-items: center;
}

.member-portrait {
  aspect-ratio: 2 / 3;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #101010;
  overflow: hidden;
}

.member-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-tasos {
  object-position: 52% 34%;
}

.portrait-sam {
  object-position: 56% 38%;
}

.portrait-jon {
  object-position: 48% 18%;
}

.portrait-justin {
  object-position: 50% 26%;
}

.member-card h3,
.member-card p {
  margin: 0;
}

.member-card h3 {
  font-size: 1.15rem;
  text-transform: uppercase;
}

.member-role {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.member-bio {
  color: var(--muted);
}

.tour-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    #080808;
}

.tour-list,
.press-list {
  display: grid;
  gap: 12px;
  max-width: 1080px;
  margin: 0 auto;
}

.tour-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
}

.tour-row time {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tour-row h3,
.tour-row p,
.merch-card h3,
.merch-card p,
.video-track h3 {
  margin: 0;
}

.tour-row p,
.merch-card p {
  color: var(--muted);
}

.tour-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.tour-row a:hover,
.tour-row a:focus-visible {
  border-color: var(--hot);
  background: var(--hot);
  outline: none;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.merch-card {
  overflow: hidden;
}

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

.merch-card div {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.merch-card span {
  color: var(--gold);
  font-weight: 900;
}

.media-section {
  background: #070707;
}

.album-strip {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
}

.album-strip img {
  width: clamp(54px, 11vw, 128px);
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: 6px;
  object-fit: cover;
}

.media-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.listen-panel {
  display: grid;
  gap: 10px;
  padding: clamp(18px, 3vw, 28px);
}

.listen-panel h3 {
  margin: 0 0 4px;
  text-transform: uppercase;
}

.listen-panel iframe {
  width: 100%;
  min-height: 352px;
  border: 0;
}

.hero-social-links {
  margin: 0;
  flex-wrap: nowrap;
  gap: 8px;
  justify-content: flex-start;
}

.hero-social-links a {
  min-height: 46px;
  align-items: center;
  padding: 0 12px;
  font-size: 0.78rem;
}

.video-carousel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.carousel-arrow {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #0f0f0f;
  color: var(--ink);
  font-size: 1.4rem;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  border-color: var(--hot);
  background: var(--hot);
  color: #050505;
  outline: none;
  transform: translateY(-1px);
}

.video-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 36vw);
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 2px 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.video-track article {
  overflow: hidden;
  scroll-snap-align: start;
}

.video-track h3 {
  padding: 14px 16px;
}

.press-list a {
  display: grid;
  grid-template-columns: 150px 1fr 70px;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0e0e0e;
  text-decoration: none;
}

.press-list a:hover,
.press-list a:focus-visible {
  border-color: var(--hot);
  outline: none;
}

.press-list span,
.press-list em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 540px);
  gap: 18px;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
}

.contact-form {
  padding: 18px;
}

.footer-logo-link {
  display: grid;
  place-items: center;
  justify-self: center;
  transition: transform 180ms ease, filter 180ms ease;
}

.footer-logo-link img {
  width: auto;
  height: 80%;
  max-height: 100%;
  max-width: none;
  filter: drop-shadow(0 0 28px rgba(255, 255, 255, 0.2));
}

.contact-logo-link {
  align-self: stretch;
  width: 100%;
  overflow: visible;
}

.footer-logo-link:hover,
.footer-logo-link:focus-visible {
  filter: brightness(1.15);
  outline: none;
  transform: translateY(-3px);
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-grid;
    place-content: center;
  }

  .site-nav {
    position: fixed;
    inset: 82px 0 auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 18px 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.98);
  }

  body.nav-open .site-nav {
    display: grid;
  }

  .site-nav a {
    padding: 15px 8px;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero,
  .split,
  .media-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-logo-link img {
    width: 150px;
    height: auto;
  }

  .hero {
    min-height: 0;
    width: 100%;
  }

  .hero-copy {
    display: contents;
  }

  .hero-logo-title {
    order: 1;
  }

  .hero-video {
    order: 2;
  }

  .gumroad-placeholder {
    order: 3;
  }

  .one-liner {
    order: 4;
  }

  .hero-video {
    justify-self: start;
    width: 90vw;
    margin-left: calc(50% - 45vw);
  }

  .hero-video .vertical-frame {
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-radius: 6px;
    max-height: none;
  }

  .merch-grid,
  .member-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .video-track {
    grid-auto-columns: minmax(280px, 75vw);
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 72px;
  }

  .brand-mark {
    width: 58px;
    min-width: 58px;
  }

  .site-nav {
    inset: 72px 0 auto;
  }

  html {
    scroll-padding-top: 78px;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-logo-title {
    max-width: min(92vw, 560px);
  }

  .tour-row,
  .press-list a {
    grid-template-columns: 1fr;
  }

  .tour-row a {
    justify-self: start;
  }

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

  .hero-social-links a {
    width: 100%;
    justify-content: center;
  }

  .hero-social-links {
    flex-wrap: wrap;
  }

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

  .carousel-arrow {
    display: none;
  }

  .video-track {
    grid-auto-columns: 88vw;
    padding-bottom: 10px;
  }

}
