:root {
  color-scheme: dark;
  --black: #050403;
  --charcoal: #11100e;
  --bone: #f4efe5;
  --muted: #b8aea0;
  --rust: #b5522d;
  --gold: #d1a24a;
  --cyan: #74b9c4;
  --moss: #536f39;
  --line: rgba(244, 239, 229, 0.18);
  --panel: rgba(12, 11, 10, 0.82);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.56);
  --button-shadow: 0.38rem 0.38rem 0 rgba(181, 82, 45, 0.78);
  --display: "Franklin Gothic Condensed", "Arial Narrow", Impact, system-ui, sans-serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }

  @keyframes ticker-drift {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-12rem);
    }
  }
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 4%, rgba(181, 82, 45, 0.28), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(116, 185, 196, 0.18), transparent 26rem),
    linear-gradient(90deg, rgba(244, 239, 229, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(244, 239, 229, 0.035) 1px, transparent 1px),
    var(--black);
  background-size: auto, auto, 42px 42px, 42px 42px, auto;
  color: var(--bone);
  font-family: var(--sans);
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.28;
  background-image:
    repeating-linear-gradient(-7deg, rgba(244, 239, 229, 0.05) 0 1px, transparent 1px 13px),
    radial-gradient(circle at 50% 0%, rgba(83, 111, 57, 0.2), transparent 24rem);
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 50;
  padding: 0.7rem 0.9rem;
  background: var(--gold);
  color: #120d07;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
.button:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2rem);
  padding: 0.62rem clamp(1rem, 4vw, 3rem);
  background:
    linear-gradient(180deg, rgba(5, 4, 3, 0.94), rgba(5, 4, 3, 0.78)),
    repeating-linear-gradient(90deg, rgba(244, 239, 229, 0.055) 0 1px, transparent 1px 12px);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.site-nav a,
.button,
.link-row a,
.listen-links a,
.social-links a {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 0.55rem;
  color: var(--bone);
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  object-fit: cover;
  filter: contrast(1.25) grayscale(0.2);
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
  border: 1px solid rgba(244, 239, 229, 0.14);
  padding: 0.24rem;
  background: rgba(17, 16, 14, 0.72);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
  text-transform: uppercase;
  box-shadow: 0 0.7rem 2rem rgba(0, 0, 0, 0.28);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  border: 1px solid transparent;
  padding: 0.46rem 0.72rem;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.social-links a:hover,
.link-row a:hover,
.listen-links a:hover {
  color: var(--gold);
}

.site-nav .nav-book {
  margin-left: 0.18rem;
  background: var(--gold);
  border-color: var(--gold);
  color: #120d07;
  box-shadow: 0.22rem 0.22rem 0 rgba(181, 82, 45, 0.72);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.42fr);
  gap: clamp(1.5rem, 5vw, 4.5rem);
  align-items: center;
  min-height: min(760px, calc(100svh - 3.3rem));
  overflow: hidden;
  padding: clamp(2.8rem, 6vw, 5.4rem) clamp(1rem, 6vw, 5rem) clamp(2rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--line);
}

.hero-bg,
.hero::after,
.hero-root {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  filter: grayscale(0.18) contrast(1.38) brightness(0.46);
}

.hero::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.96), rgba(5, 4, 3, 0.42) 54%, rgba(5, 4, 3, 0.82)),
    linear-gradient(0deg, rgba(5, 4, 3, 0.82), transparent 55%);
}

.hero-root {
  z-index: 1;
  opacity: 0.18;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at 18% 68%, rgba(209, 162, 74, 0.45), transparent 17rem),
    repeating-linear-gradient(102deg, transparent 0 17px, rgba(244, 239, 229, 0.16) 17px 18px);
}

.hero-copy,
.hero-live {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-logo {
  width: clamp(4.5rem, 8vw, 7rem);
  margin: 0 0 1rem;
  border-radius: 50%;
  filter: grayscale(1) contrast(1.7);
  opacity: 0.92;
  box-shadow: 0 0 0 1px var(--line), 0.45rem 0.45rem 0 rgba(181, 82, 45, 0.5);
  transform: rotate(-3deg);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  line-height: 0.88;
  text-transform: uppercase;
}

h1 {
  max-width: 9ch;
  font-size: clamp(4.25rem, 11vw, 9rem);
  line-height: 0.8;
  letter-spacing: 0;
  overflow-wrap: normal;
  text-shadow: 0.035em 0.035em 0 var(--rust), -0.018em -0.018em 0 var(--cyan);
}

h1 span {
  display: block;
}

h2 {
  max-width: 12ch;
  font-size: clamp(2.45rem, 5.6vw, 5.2rem);
}

h3 {
  font-size: clamp(1.7rem, 3.2vw, 3.4rem);
}

.hero-text,
.section-heading p,
.album-card p,
.about p,
.contact-card p,
.show-card p {
  color: var(--muted);
}

.hero-text {
  max-width: 41rem;
  margin: 1rem 0 0;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.action-row,
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.action-row {
  margin-top: 1.3rem;
}

.button,
.link-row a,
.listen-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  border: 1px solid var(--line);
  padding: 0.78rem 1rem;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  transition:
    background-color 170ms ease,
    border-color 170ms ease,
    box-shadow 170ms ease,
    color 170ms ease,
    transform 170ms ease;
}

.button.primary {
  background: var(--gold);
  color: #120d07;
  border-color: var(--gold);
  box-shadow: var(--button-shadow);
}

.button.secondary,
.link-row a,
.listen-links a {
  background: rgba(5, 4, 3, 0.58);
}

@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .link-row a:hover,
  .listen-links a:hover {
    border-color: var(--gold);
    color: #120d07;
    background: var(--gold);
    box-shadow: var(--button-shadow);
    transform: translate(-0.16rem, -0.16rem);
  }

  .button.primary:hover {
    background: var(--bone);
    border-color: var(--bone);
    box-shadow: 0.52rem 0.52rem 0 rgba(181, 82, 45, 0.86);
  }

  .site-nav a:hover {
    background: rgba(209, 162, 74, 0.13);
    border-color: rgba(209, 162, 74, 0.34);
    transform: translateY(-1px);
  }
}

.button:active,
.link-row a:active,
.listen-links a:active,
.social-links a:active,
.site-nav a:active {
  transform: translate(0.04rem, 0.04rem);
}

.hero-live {
  align-self: center;
  margin: 0;
  transform: rotate(1.4deg);
}

.hero-live img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 50% 42%;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-live figcaption {
  margin-top: 0.55rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ticker {
  display: flex;
  gap: 0.8rem;
  overflow: hidden;
  padding: 0.72rem clamp(1rem, 6vw, 5rem);
  background: var(--rust);
  color: #130b07;
  font-family: var(--display);
  font-size: clamp(1.25rem, 3vw, 2.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker span {
  flex: 0 0 auto;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 6vw, 5rem);
}

.section-heading {
  max-width: 64rem;
  margin-bottom: 2rem;
}

.section-heading p {
  max-width: 42rem;
  font-size: 1.05rem;
}

.release-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(13rem, 0.75fr);
  gap: 1rem;
  align-items: start;
}

.release-card,
.album-card,
.listen-links,
.show-card,
.contact-card {
  min-width: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.release-card {
  display: grid;
  gap: 1rem;
  padding: 0.8rem;
}

.featured-release {
  grid-row: span 2;
}

.release-offset {
  transform: translateX(-1.2rem) rotate(-0.7deg);
}

.release-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(244, 239, 229, 0.16);
}

.featured-release img {
  aspect-ratio: 16 / 10;
}

.release-card .link-row,
.album-card .link-row {
  margin-top: 0.8rem;
}

.email {
  font-weight: 900;
}

.booker-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.booker-points li {
  border: 1px solid var(--line);
  padding: 0.45rem 0.62rem;
  color: var(--bone);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.music-lower {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.45fr);
  gap: 1rem;
  margin-top: 2rem;
}

.album-card {
  display: grid;
  grid-template-columns: minmax(10rem, 0.38fr) minmax(0, 1fr);
  gap: 1.2rem;
  padding: 1rem;
}

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

.listen-links {
  display: grid;
  gap: 0.7rem;
  align-content: start;
  padding: 1rem;
}

.show-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(13rem, 0.38fr) minmax(0, 1fr);
  gap: 1rem;
  max-width: 64rem;
  padding: 0.9rem;
  border-color: rgba(209, 162, 74, 0.62);
}

.show-poster {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line);
}

.show-copy {
  align-self: end;
  min-width: 0;
  padding: clamp(0.5rem, 2vw, 1rem);
}

.show-copy h3 {
  font-size: clamp(2.3rem, 6vw, 5.8rem);
}

.show-copy .link-row {
  margin-top: 1rem;
}

.about {
  display: grid;
  grid-template-columns: minmax(14rem, 0.42fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.about-mark,
.about-copy {
  min-width: 0;
}

.about-mark img {
  width: min(100%, 28rem);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 0.7rem 0.7rem 0 rgba(181, 82, 45, 0.62), var(--shadow);
  transform: rotate(-1.5deg);
}

.members {
  padding: 0;
  margin: 1.25rem 0 0;
  list-style: none;
}

.members li {
  border-top: 1px solid var(--line);
  padding: 0.72rem 0;
}

.contact-section {
  scroll-margin-top: 5.5rem;
}

.music,
.show-section,
.about {
  scroll-margin-top: 5.5rem;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: stretch;
  border-color: rgba(209, 162, 74, 0.62);
  padding: clamp(1rem, 3vw, 1.4rem);
}

.email {
  display: inline-block;
  margin-top: 1rem;
  color: var(--gold);
  font-size: clamp(1.15rem, 3vw, 2rem);
  overflow-wrap: anywhere;
}

.contact-copy,
.contact-actions {
  min-width: 0;
}

.contact-copy {
  display: grid;
  align-content: start;
}

.contact-actions {
  display: grid;
  align-content: end;
  gap: 1rem;
  border-left: 1px solid var(--line);
  padding-left: clamp(1rem, 3vw, 2rem);
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  color: var(--muted);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  border: 1px solid var(--line);
  padding: 0.62rem 0.78rem;
  background: rgba(5, 4, 3, 0.38);
  font-weight: 900;
  text-transform: uppercase;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .social-links a:hover {
    background: rgba(209, 162, 74, 0.14);
    border-color: var(--gold);
    transform: translateY(-1px);
  }
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem clamp(1rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(181, 82, 45, 0.12), transparent 52%),
    rgba(5, 4, 3, 0.76);
  color: var(--muted);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.footer-brand img {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.45);
}

.footer-brand div {
  display: grid;
  gap: 0.1rem;
}

.footer-brand span:first-child {
  color: var(--bone);
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--muted);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-links a:first-child {
  color: var(--gold);
}

@media (max-width: 700px) {
  .site-header {
    position: sticky;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
  }

  .site-nav {
    display: contents;
  }

  .site-nav a {
    order: 3;
    flex: 0 0 auto;
    border-color: transparent;
    background: transparent;
    text-align: center;
  }

  .site-nav .nav-book {
    order: 2;
    margin-left: auto;
    border-color: var(--gold);
    background: var(--gold);
    color: #120d07;
  }

  .brand {
    order: 1;
    flex: 1 1 auto;
    padding-right: 0;
  }

  .hero,
  .release-layout,
  .music-lower,
  .album-card,
  .show-card,
  .about,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .hero-live {
    max-width: 28rem;
  }

  .release-offset,
  .hero-live,
  .about-mark img {
    transform: none;
  }

  .social-links,
  footer {
    justify-content: flex-start;
  }

  .contact-actions {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 1rem;
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  body {
    background-size: auto, auto, 28px 28px, 28px 28px;
  }

  .site-header {
    gap: 0.42rem;
    padding: 0.5rem 0.9rem 0.42rem;
    background:
      linear-gradient(180deg, rgba(5, 4, 3, 0.96), rgba(5, 4, 3, 0.9)),
      repeating-linear-gradient(90deg, rgba(244, 239, 229, 0.07) 0 1px, transparent 1px 10px);
  }

  .site-nav {
    display: contents;
  }

  .brand {
    max-width: 100%;
    font-size: 0.92rem;
  }

  .brand img {
    width: 1.35rem;
    height: 1.35rem;
  }

  .site-nav a {
    min-height: 2.75rem;
    border: 0;
    padding: 0.45rem 0.55rem;
    background: transparent;
    color: var(--muted);
    font-size: 0.76rem;
    letter-spacing: 0.05em;
  }

  .site-nav a:not(.nav-book) {
    display: none;
  }

  .site-nav .nav-book {
    width: auto;
    min-height: 2.75rem;
    border: 1px solid var(--gold);
    padding: 0.42rem 0.75rem;
    background: var(--gold);
    color: #120d07;
    box-shadow: 0.22rem 0.22rem 0 rgba(181, 82, 45, 0.72);
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    padding: 2rem 0.9rem 1.2rem;
  }

  .hero-bg {
    object-position: 48% 20%;
    filter: grayscale(0.14) contrast(1.35) brightness(0.3);
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(5, 4, 3, 0.44), rgba(5, 4, 3, 0.58) 26%, rgba(5, 4, 3, 0.95) 76%),
      linear-gradient(90deg, rgba(5, 4, 3, 0.88), rgba(5, 4, 3, 0.18));
  }

  .hero-logo {
    width: 4.4rem;
    margin-bottom: 0.85rem;
    box-shadow: 0.24rem 0.24rem 0 rgba(181, 82, 45, 0.65);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3.2rem, 18vw, 4.9rem);
    line-height: 0.86;
  }

  h2 {
    max-width: 11ch;
    font-size: clamp(2.25rem, 13vw, 3.9rem);
  }

  h3 {
    font-size: clamp(1.55rem, 9vw, 2.45rem);
  }

  .hero-text,
  .section-heading p,
  .contact-card p {
    font-size: 1rem;
  }

  .action-row,
  .link-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .link-row a,
  .listen-links a {
    width: 100%;
    min-height: 2.75rem;
  }

  .button.primary {
    box-shadow: inset 0 -0.22rem 0 rgba(0, 0, 0, 0.28);
  }

  .hero-live {
    width: min(100%, 22rem);
  }

  .hero-live img {
    aspect-ratio: 16 / 11;
  }

  .ticker {
    padding: 0.62rem 0.9rem;
    font-size: 1.05rem;
  }

  .ticker span {
    animation: ticker-drift 14s linear infinite alternate;
  }

  .section {
    padding: 3rem 0.9rem;
  }

  .section-heading {
    margin-bottom: 1.35rem;
  }

  .release-layout,
  .music-lower {
    gap: 0.85rem;
  }

  .release-card,
  .album-card,
  .listen-links,
  .show-card,
  .contact-card {
    width: 100%;
    max-width: calc(100vw - 1.8rem);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.44);
  }

  .release-card,
  .album-card,
  .listen-links,
  .show-card {
    padding: 0.7rem;
  }

  .featured-release img,
  .release-card img {
    aspect-ratio: 16 / 10;
  }

  .show-poster {
    aspect-ratio: 16 / 11;
    object-position: 50% 38%;
  }

  .show-copy {
    padding: 0.15rem;
  }

  .about {
    gap: 1.25rem;
  }

  .about-mark {
    order: 2;
  }

  .about-mark img {
    width: 100%;
    max-height: 28rem;
    box-shadow: none;
  }

  .members li {
    font-size: 0.95rem;
  }

  .contact-card {
    gap: 1.2rem;
    padding: 0.85rem;
    text-align: center;
    margin-inline: auto;
  }

  .contact-actions .button {
    width: 100%;
  }

  .contact-copy,
  .contact-actions {
    justify-items: center;
  }

  .booker-points {
    justify-content: center;
  }

  .social-links {
    width: 100%;
    gap: 0.65rem;
    font-size: 0.95rem;
  }

  .social-links a:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  footer {
    align-items: center;
    flex-direction: column;
    padding: 1.1rem 0.9rem;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .site-nav a {
    padding-right: 0.45rem;
    padding-left: 0.45rem;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.2rem);
  }
}
