:root {
  --bg: #0a0908;
  --bg-alt: #131110;
  --ink: #ece7e0;
  --ink-dim: #b3aca3;
  --accent: #d97a2b;
  --accent-bright: #f2a04d;
  --line: #2a2523;
  --max: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Subtle film-grain / VHS overlay across the whole page — 80s tour-video texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

body {
  margin: 0;
  background-color: var(--bg);
  background-image: url('images/texture-tentacles.png');
  background-repeat: repeat;
  background-size: 720px 720px;
  color: var(--ink);
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Oswald', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.6em;
}

a { color: var(--accent-bright); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
/* Keep the textured page background out of text/photo areas — it only
   shows in the margins and section gutters, never behind content. */
section .wrap,
footer .wrap {
  background-color: var(--bg);
}

/* Nav */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(10, 9, 8, 0.85);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-nav::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 4px;
  background: repeating-linear-gradient(-45deg,
    var(--accent) 0 8px,
    #0a0908 8px 16px);
  opacity: 0.85;
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.site-nav .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ink);
}
.site-nav .brand img { height: 26px; width: auto; display: block; }
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.site-nav a {
  color: var(--ink-dim);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.site-nav a:hover { color: var(--accent-bright); text-decoration: none; }

@media (max-width: 640px) {
  .site-nav .wrap {
    height: auto;
    flex-direction: column;
    align-items: center;
    padding-top: 14px;
    padding-bottom: 10px;
  }
  .site-nav ul {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 8px;
  }
  .site-nav a { font-size: 0.7rem; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background-image:
    linear-gradient(180deg, rgba(10,9,8,0.55) 0%, rgba(10,9,8,0.75) 55%, var(--bg) 100%),
    url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center 25%;
}
.hero-inner { max-width: 920px; position: relative; }
.hero-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-wrap::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 1400px;
  height: 1400px;
  transform: translate(-50%, -50%);
  background:
    repeating-conic-gradient(from 0deg,
      rgba(217,122,43,0.16) 0deg 2.2deg,
      rgba(217,122,43,0) 2.2deg 9deg);
  -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 62%);
  mask-image: radial-gradient(circle, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 62%);
  animation: sunburst-spin 140s linear infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes sunburst-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.hero img.logo {
  position: relative;
  z-index: 1;
  width: min(820px, 90vw);
  height: auto;
  filter: drop-shadow(0 6px 30px rgba(0,0,0,0.6));
  margin-bottom: 18px;
}
.hero .tagline {
  color: var(--ink-dim);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 34px;
}
.hero .ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.photo-credit {
  position: absolute;
  bottom: 14px;
  right: 18px;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(236, 231, 224, 0.35);
}

.btn {
  display: inline-block;
  padding: 13px 28px;
  border: 1px solid var(--accent);
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn:hover {
  background: var(--accent);
  color: #0a0908;
  text-decoration: none;
}
.btn.solid {
  background: var(--accent);
  color: #0a0908;
}
.btn.solid:hover {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
}

/* Sections */
section {
  padding: 90px 0;
  border-top: 1px solid var(--line);
}
.eyebrow {
  color: var(--accent);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 10px;
  display: block;
}
.section-head { margin-bottom: 44px; }
.section-head h2 {
  font-size: 2rem;
  font-style: italic;
  background: linear-gradient(180deg, #fff 0%, #e7cba8 28%, var(--accent-bright) 52%, #a85a1e 76%, #6e3a12 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 0 rgba(0,0,0,0.4);
  display: inline-block;
  width: fit-content;
  padding-right: 0.15em;
  margin-right: -0.15em;
}

/* About */
.about p { max-width: 62ch; color: var(--ink-dim); font-size: 1.05rem; }
.about blockquote {
  margin: 28px 0 0;
  padding-left: 20px;
  border-left: 2px solid var(--accent);
  color: var(--ink);
  font-style: italic;
}

/* Members */
.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
}
.member-card h3 {
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 2px;
}
.member-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  margin-bottom: 14px;
}
.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(15%);
}
.member-photo--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--line);
}
.member-card .role {
  display: block;
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.member-card p {
  color: var(--ink-dim);
  font-size: 0.92rem;
  margin: 0;
}
.member-card p.bio-pending {
  font-style: italic;
  opacity: 0.6;
}
.member-facts {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.member-facts summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  list-style: none;
}
.member-facts summary::-webkit-details-marker { display: none; }
.member-facts summary::after {
  content: '+';
  color: var(--accent-bright);
  font-size: 1rem;
  line-height: 1;
}
.member-facts[open] summary::after { content: '\2212'; }
.member-facts summary:hover { color: var(--accent-bright); }
.member-facts dl {
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}
.member-facts dt {
  color: var(--accent-bright);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}
.member-facts dd {
  margin: 3px 0 0;
  color: var(--ink-dim);
  font-size: 0.85rem;
  line-height: 1.45;
}

/* Music */
.music-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 720px) {
  .music-grid { grid-template-columns: 1fr; }
}
.music-card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  padding: 28px;
}
.music-card h3 { font-size: 1.1rem; color: var(--ink); }
.music-card p { color: var(--ink-dim); font-size: 0.95rem; margin-bottom: 20px; }
.music-card iframe { width: 100%; border: 0; border-radius: 4px; }

.ep-track {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-dim);
  font-size: 0.95rem;
}
.ep-track:last-child { border-bottom: none; }
.ep-track span.n { color: var(--accent); margin-right: 12px; }

/* Videos */
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-alt);
  border: 1px solid var(--line);
}
.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Live gallery */
.live-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 10px;
}
.live-gallery a {
  display: block;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--line);
}
.live-gallery a.span-2 { grid-column: span 2; grid-row: span 2; aspect-ratio: 1 / 1; }
.live-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.03);
  transition: transform 0.35s ease, filter 0.35s ease;
}
.live-gallery a::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(217,122,43,0);
  transition: box-shadow 0.25s ease;
  pointer-events: none;
}
.live-gallery a:hover img { transform: scale(1.06); filter: saturate(1.15) contrast(1.05); }
.live-gallery a:hover::after { box-shadow: inset 0 0 0 2px var(--accent); }

@media (max-width: 860px) {
  .live-gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .live-gallery { grid-template-columns: repeat(2, 1fr); }
  .live-gallery a.span-2 { grid-column: span 2; grid-row: span 1; aspect-ratio: 4/3; }
}

/* Shows */
.show-list { display: flex; flex-direction: column; }
.show-row {
  display: flex;
  gap: 24px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.show-row:last-child { border-bottom: none; }
.show-poster {
  flex-shrink: 0;
  align-self: center;
  width: 56px;
  height: 56px;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  display: block;
}
.show-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}
.show-poster:hover img { transform: scale(1.08); }
.show-row:has(.show-tag--upcoming) .show-poster { border-color: var(--accent); }
.show-date {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  min-width: 150px;
}
.show-details { flex: 1; min-width: 220px; }
.show-details .venue { color: var(--ink); font-size: 1.05rem; }
.show-details .bill { color: var(--ink-dim); font-size: 0.9rem; }
.show-tag {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
  border: 1px solid var(--line);
  padding: 3px 10px;
  border-radius: 2px;
}
.show-tag--upcoming {
  color: #0a0908;
  background: var(--accent);
  border-color: var(--accent);
  font-weight: 500;
}
.show-row:has(.show-tag--upcoming) .show-date { color: var(--accent-bright); }
.show-row:has(.show-tag--upcoming) .venue { font-weight: 500; }
.shows-note {
  margin-top: 28px;
  color: var(--ink-dim);
  font-size: 0.92rem;
}

/* Merch */
.merch-card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  padding: 40px;
  text-align: center;
}
.merch-card p { color: var(--ink-dim); max-width: 50ch; margin: 0 auto 24px; }
.merch-photo {
  display: block;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  margin: 0 auto 24px;
  border: 1px solid var(--line);
  object-fit: cover;
}
.merch-callout {
  color: var(--accent-bright);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 16px !important;
}

/* Connect */
.connect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}
.connect-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  text-align: center;
}
.connect-link:hover {
  border-color: var(--accent);
  color: var(--accent-bright);
  text-decoration: none;
}
.connect-link.disabled {
  color: var(--ink-dim);
  opacity: 0.5;
  cursor: default;
}
.connect-link.disabled:hover { border-color: var(--line); color: var(--ink-dim); }

.contact-line { margin-top: 36px; color: var(--ink-dim); }

.management-card {
  margin-top: 40px;
  padding: 30px 36px;
  background: var(--bg-alt);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.management-card h3 {
  font-size: 1.4rem;
  color: var(--ink);
  margin: 4px 0 0;
}

/* Footer */
footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  text-align: center;
  color: var(--ink-dim);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}
footer img { height: 18px; width: auto; opacity: 0.7; margin-bottom: 10px; }
.footer-mgmt { margin-top: 8px; }
.footer-mgmt a { color: var(--ink-dim); text-decoration: underline; }
.footer-mgmt a:hover { color: var(--accent-bright); }
