:root {
  --ink: #f7f2e8;
  --muted: #c9b8b3;
  --paper: #110b0a;
  --paper-2: #1a100e;
  --line: rgba(234, 197, 196, 0.2);
  --brand-red: #ab211f;
  --brand-red-mid: #962f1a;
  --brand-red-dark: #813c15;
  --brand-pink: #eac5c4;
  --coral: var(--brand-red);
  --cyan: var(--brand-pink);
  --lime: #d4574d;
  --gold: #e6a29c;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --texture-opacity: 0.03;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(171, 33, 31, 0.22), transparent 24rem),
    linear-gradient(145deg, #080707 0%, #110b0a 46%, #21100d 100%);
  font-family: "Space Grotesk", system-ui, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Keep the texture above section backgrounds and below their content. */
.section,
.site-footer {
  position: relative;
  isolation: isolate;
}

.hero::before,
.section::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: url("assets/burgundy-wave-texture.png") center / cover no-repeat;
  opacity: var(--texture-opacity);
}

/* The hero photo and video sit above the decorative texture. */
.hero::before {
  z-index: -3;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(234, 197, 196, 0.12);
  background: rgba(12, 8, 7, 0.78);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.hero-actions,
.hero-socials,
.hero-strip,
.footer-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.7rem;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-logo {
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.site-nav {
  flex-wrap: wrap;
  gap: clamp(0.8rem, 2vw, 1.6rem);
  color: var(--muted);
  font-size: 0.9rem;
}

.friend-nav { color: var(--brand-pink); font-weight: 700; max-width: 14rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@media (min-width: 821px) and (max-width: 1100px) {
  .site-header { padding-inline: 1rem; }
  .site-nav { gap: .7rem; }
  .brand { font-size: .85rem; }
}

.site-nav a,
.footer-links a {
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 8rem clamp(1rem, 6vw, 5rem) 5.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  container-type: size;
  background: url("assets/upper-upper-hero.png") center / cover no-repeat;
  pointer-events: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.56) 46%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), #080807 98%);
}

.hero-video {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 600ms ease;
}

.hero-video.is-playing {
  opacity: 1;
}

.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100cqw, 177.778cqh);
  height: max(100cqh, 56.25cqw);
  transform: translate(-50%, -50%);
  border: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 100% 4px;
  mix-blend-mode: soft-light;
}

.hero-content {
  width: min(50rem, 100%);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Archivo", system-ui, sans-serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 10.5rem;
  font-weight: 400;
  line-height: 0.86;
  white-space: nowrap;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.96;
  text-wrap: balance;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.3rem;
}

.hero-copy {
  max-width: 38rem;
  margin-bottom: 2rem;
  color: #e4d3ce;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  width: fit-content;
  max-width: 100%;
  margin-top: 1.25rem;
}

.social-link {
  --social-color: var(--ink);
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  flex: 0 0 2.8rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(34, 13, 11, 0.68);
  backdrop-filter: blur(12px);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.social-link svg {
  width: 1.18rem;
  height: 1.18rem;
  fill: currentColor;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--social-color);
  border-color: color-mix(in srgb, var(--social-color) 68%, transparent);
  background: color-mix(in srgb, var(--social-color) 12%, rgba(17, 17, 15, 0.82));
  box-shadow: 0 0 0 0.22rem color-mix(in srgb, var(--social-color) 12%, transparent);
  transform: translateY(-2px);
}

.social-link:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.social-link-instagram {
  --social-color: #f05a87;
}

.social-link-tiktok {
  --social-color: #25f4ee;
}

.social-link-telegram {
  --social-color: #4bb4e6;
}

.social-link-spotify {
  --social-color: #1ed760;
}

.social-link-apple-music {
  --social-color: #fa586a;
}

.social-link-youtube {
  --social-color: #ff4e45;
}

.button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  min-height: 3.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.release-strip-button,
.release-text-button {
  padding: 0;
  color: inherit;
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

.release-strip-button {
  text-transform: uppercase;
  text-align: left;
}

.release-text-button {
  color: var(--brand-pink);
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

[data-open-release]:focus-visible,
.release-close:focus-visible,
.release-platforms a:focus-visible,
.release-more:focus-visible {
  outline: 2px solid var(--brand-pink);
  outline-offset: 5px;
}

body.release-is-open {
  overflow: hidden;
}

.release-dialog {
  width: min(960px, calc(100% - 2rem));
  max-height: calc(100dvh - 2rem);
  padding: 0;
  color: var(--ink);
  background: #170e0c;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 30px 100px #0009;
}

.release-dialog::backdrop {
  background: #000b;
  backdrop-filter: blur(12px);
}

.release-close {
  position: absolute;
  z-index: 1;
  top: 0.85rem;
  right: 0.85rem;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: #170e0cee;
  font-size: 1.8rem;
  cursor: pointer;
}

.release-modal-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
}

.release-artwork-wrap {
  display: grid;
  align-items: center;
  padding: 2rem;
  background: linear-gradient(140deg, #ab211f22, #813c1544);
}

.release-artwork {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.release-modal-copy {
  padding: 3.8rem 2rem 2.5rem;
}

.release-modal-copy h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.release-meta,
.release-status {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.release-platforms {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.release-platforms a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 48px;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 700;
  background: #ffffff08;
}

.release-platforms a:hover {
  background: #ab211f33;
  border-color: var(--brand-pink);
}

.release-more {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

.release-more[hidden] {
  display: none;
}

@media (max-width: 680px) {
  .release-modal-layout {
    grid-template-columns: 1fr;
  }
  .release-artwork-wrap {
    padding: 2.5rem 2rem 1rem;
  }
  .release-artwork {
    max-width: 230px;
    margin-inline: auto;
  }
  .release-modal-copy {
    padding: 1.5rem;
  }
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff3ef;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-mid));
  border-color: transparent;
}

.button-secondary {
  background: rgba(247, 242, 232, 0.08);
}

.hero-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
  background: rgba(28, 12, 10, 0.82);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1rem, 6vw, 5rem);
  scroll-margin-top: 8rem;
}

.section-heading {
  width: min(56rem, 100%);
  margin-bottom: 2rem;
}

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

.listen-copy {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.listen-link {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
  min-height: 9rem;
  padding: 1.6rem 3.5rem 1.6rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 242, 232, 0.04);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.listen-link:hover,
.listen-link:focus-visible {
  background: rgba(171, 33, 31, 0.16);
  border-color: var(--brand-pink);
  transform: translateY(-3px);
}

.listen-link:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.listen-platform {
  font-family: "Archivo", system-ui, sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.listen-detail {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.listen-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--brand-pink);
  font-size: 1.5rem;
}

.show-row {
  border: 1px solid var(--line);
  background: rgba(247, 242, 232, 0.06);
  box-shadow: var(--shadow);
}

.release-card {
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.4rem;
  border-radius: 8px;
}

.release-card p {
  color: var(--muted);
  line-height: 1.55;
}

.release-card a,
.show-row a {
  width: fit-content;
  color: var(--ink);
  font-weight: 700;
  border-bottom: 2px solid currentColor;
}

.release-kicker {
  margin-bottom: 2rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.accent-coral {
  border-top-color: var(--coral);
}

.accent-cyan {
  border-top-color: var(--cyan);
}

.accent-lime {
  border-top-color: var(--lime);
}

.split-section {
  background:
    linear-gradient(90deg, rgba(171, 33, 31, 0.14), transparent 42%),
    var(--paper-2);
}

.shows-list {
  display: grid;
  gap: 0.8rem;
}

.show-row {
  display: grid;
  grid-template-columns: 7rem 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem;
  border-radius: 8px;
}

.show-row time {
  color: var(--gold);
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
}

.show-row p,
.about-copy p,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-copy {
  max-width: 58rem;
}

.about-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
}

.about-copy p:not(.eyebrow) {
  font-size: 1.1rem;
}

.about-photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
  background: #080504;
}

.site-footer h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 3.5rem);
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
  color: var(--muted);
  font-weight: 700;
}

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

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 92vh;
    padding-top: 10rem;
  }

  .hero-bg {
    background-position: 62% center;
  }

  .hero-bg::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.58)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.04), #080807 98%);
  }

  h1 {
    font-size: 7rem;
  }

  .listen-grid,
  .about-section {
    grid-template-columns: 1fr;
  }

  .show-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-strip,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 520px) {
  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  h1 {
    font-size: 4.5rem;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .hero-strip {
    position: static;
  }
}
