:root {
  --bg: #090909;
  --panel: #111111;
  --panel-strong: #171717;
  --ink: #b3b3b3;
  --muted: #8f8f8f;
  --honey: #b3b3b3;
  --honey-bright: #e2e2e2;
  --blood: #8f1616;
  --line: rgba(179, 179, 179, 0.22);
  --shadow: rgba(0, 0, 0, 0.62);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(143, 22, 22, 0.2), transparent 24rem),
    linear-gradient(135deg, #030303 0%, #101010 42%, #000000 100%);
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    repeating-linear-gradient(110deg, transparent 0 24px, rgba(143, 22, 22, 0.08) 25px 26px);
  background-size: 38px 38px, 38px 38px, auto;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 72%);
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(3, 3, 3, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px 18px;
}

nav a,
.footer-links a {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

nav a:hover,
.footer-links a:hover,
nav a[aria-current="page"] {
  color: var(--honey-bright);
  text-decoration: underline;
  text-decoration-color: var(--blood);
  text-underline-offset: 6px;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  place-items: center;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  filter: contrast(1.08) brightness(0.58);
  mix-blend-mode: luminosity;
  object-fit: cover;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.62) 52%, rgba(0, 0, 0, 0.9)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.88), transparent 46%);
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  width: min(var(--max), calc(100% - 40px));
  padding: clamp(64px, 12vw, 132px) 0;
}

.hero-mark {
  max-width: 520px;
  padding: clamp(12px, 2vw, 22px);
  border: 1px solid rgba(239, 237, 210, 0.2);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.56);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.58);
  transform: rotate(-2deg);
}

.hero-mark img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 0;
  filter: grayscale(1) contrast(1.18);
  object-fit: cover;
}

.hero-copy {
  min-width: 0;
}

.kicker {
  margin: 0 0 12px;
  color: var(--honey-bright);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Fredericka the Great", Impact, "Arial Black", sans-serif;
  font-weight: 700;
  line-height: 0.95;
}

h1 {
  max-width: 820px;
  font-size: clamp(3.68rem, 10.4vw, 8.4rem);
}

h2 {
  font-size: clamp(2.4rem, 6vw, 5.2rem);
}

.lede {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--ink);
  font-size: clamp(1.1rem, 2vw, 1.42rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--blood);
}

.button.primary {
  border-color: var(--blood);
  background: var(--blood);
  color: #f3f3f3;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.05);
}

.section {
  padding: clamp(72px, 11vw, 132px) clamp(20px, 4vw, 56px);
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 7vw, 84px);
  align-items: start;
}

.definition {
  background: rgba(10, 10, 10, 0.84);
  border-bottom: 1px solid var(--line);
}

.definition h2 {
  color: var(--muted);
  font-size: clamp(3rem, 8vw, 7rem);
  font-style: italic;
}

.definition .kicker {
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
}

.definition-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
  line-height: 0.8;
}

.listen {
  background: var(--bg);
}

.listen-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.album-art {
  border: 1px solid rgba(179, 179, 179, 0.28);
  box-shadow: 0 32px 90px var(--shadow);
  background: #f2f2f2;
}

.album-art img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: grayscale(1) contrast(1.22);
}

.listen-copy p:not(.kicker) {
  max-width: 620px;
  margin: 26px 0 30px;
  color: var(--muted);
  font-size: 1.12rem;
}

.formats {
  border-top: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.92);
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.format {
  display: grid;
  min-height: 230px;
  place-items: center;
  padding: 26px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink);
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.format:hover {
  transform: translateY(-2px);
  border-color: var(--blood);
  background: rgba(255, 255, 255, 0.06);
}

.format img {
  width: min(180px, 70%);
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.format span {
  margin-top: 18px;
  color: var(--honey-bright);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-hero {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.94), rgba(8, 8, 8, 0.74)),
    url("assets/album-art.jpg") center / cover;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.56rem, 6.4vw, 5.92rem);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.page-hero-image {
  width: 100%;
  aspect-ratio: 16 / 11;
  border: 1px solid rgba(239, 237, 210, 0.24);
  box-shadow: 0 32px 90px var(--shadow);
  object-fit: cover;
  filter: grayscale(1) contrast(1.12);
}

.story {
  background: var(--bg);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: start;
}

.story-copy {
  display: grid;
  gap: 22px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.6vw, 1.22rem);
}

.story-copy p {
  margin: 0;
}

.lineup {
  position: sticky;
  top: 104px;
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.lineup ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lineup li {
  display: grid;
  gap: 2px;
}

.lineup strong {
  color: var(--ink);
  font-size: 1rem;
}

.lineup span {
  color: var(--muted);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.video-hero {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.94), rgba(8, 8, 8, 0.6)),
    url("assets/set-dead-to-me.jpg") center / cover;
}

.shop-hero {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.94), rgba(8, 8, 8, 0.62)),
    url("assets/album-art.jpg") center / cover;
}

.shows-hero {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.94), rgba(8, 8, 8, 0.58)),
    url("assets/08-08-26-woggles-black-honey-cult.jpg") center / cover;
}

.shows {
  background: var(--bg);
}

.shows-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
}

.show-flyer {
  margin: 0;
  border: 1px solid rgba(179, 179, 179, 0.28);
  background: #050505;
  box-shadow: 0 32px 90px var(--shadow);
}

.show-flyer img {
  width: 100%;
}

.show-details {
  position: sticky;
  top: 108px;
}

.show-details h2 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}

.show-details dl {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
}

.show-details dl div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.show-details dt,
.show-details dd {
  margin: 0;
}

.show-details dt {
  color: var(--blood);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.show-details dd {
  color: var(--ink);
  font-size: clamp(1.02rem, 1.7vw, 1.24rem);
}

.show-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.shop-notice {
  border-bottom: 1px solid var(--line);
  background: #050505;
}

.notice-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid rgba(179, 179, 179, 0.28);
  background:
    linear-gradient(135deg, rgba(143, 22, 22, 0.2), transparent 42%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 32px 90px var(--shadow);
}

.notice-box h2 {
  font-size: clamp(2rem, 4.8vw, 4.3rem);
}

.notice-box p:not(.kicker) {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.notice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.shop-products {
  background: var(--bg);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  display: grid;
  gap: 22px;
  align-content: start;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.product-card img {
  width: min(210px, 72%);
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: grayscale(1) contrast(1.16);
}

.product-type {
  margin: 0 0 8px;
  color: var(--blood);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  color: var(--honey-bright);
  font-family: "Fredericka the Great", Impact, "Arial Black", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 1;
}

.product-card p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
}

.tracklist {
  border-top: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.9);
}

.tracklist-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(34px, 7vw, 80px);
  align-items: start;
}

.tracklist ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  margin: 0;
  padding-left: 1.4rem;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
}

.tracklist li::marker {
  color: var(--blood);
  font-weight: 900;
}

.videos {
  background: var(--bg);
}

.video-grid {
  display: grid;
  gap: clamp(34px, 6vw, 72px);
}

.video-card {
  display: grid;
  gap: 18px;
}

.video-card h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.video-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.video-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(179, 179, 179, 0.28);
  background: #000;
  box-shadow: 0 32px 90px var(--shadow);
  text-decoration: none;
}

.video-poster img {
  width: 100%;
  aspect-ratio: 16 / 9;
  filter: grayscale(1) contrast(1.18) brightness(0.72);
  object-fit: cover;
  transition: transform 180ms ease, filter 180ms ease;
}

.video-poster:hover img {
  transform: scale(1.025);
  filter: grayscale(0.35) contrast(1.25) brightness(0.82);
}

.play-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 12px 16px;
  border: 1px solid var(--blood);
  background: rgba(0, 0, 0, 0.78);
  color: var(--honey-bright);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reviews {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(143, 22, 22, 0.13), transparent 260px),
    var(--panel);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.review {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.42);
}

.review p {
  margin: 0;
  color: var(--ink);
  font-family: "Fredericka the Great", Impact, "Arial Black", sans-serif;
  font-size: 1.12rem;
  line-height: 1.52;
}

.review a {
  margin-top: 28px;
  color: var(--honey-bright);
  font-size: 0.8rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer {
  padding: 28px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #060606;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 960px) {
  .hero-content,
  .page-hero-grid,
  .story-grid,
  .notice-box,
  .shows-grid,
  .product-grid,
  .tracklist-inner,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .hero-mark {
    width: min(460px, 82vw);
  }

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

  .lineup {
    position: static;
  }

  .show-details {
    position: static;
  }

  .notice-actions {
    justify-content: flex-start;
  }

  .section-heading {
    display: block;
  }
}

@media (max-width: 760px) {
  .site-header,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 96px;
  }

  .split,
  .listen-grid,
  .page-hero-grid,
  .story-grid,
  .format-grid,
  .product-grid,
  .show-details dl div,
  .tracklist-inner,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .tracklist ol {
    grid-template-columns: 1fr;
  }

  .review {
    min-height: auto;
  }
}

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

  h1 {
    font-size: 3.2rem;
  }

  .button {
    width: 100%;
  }
}
