/* ==========================================================================
   CUPP / Cupps Media & Studio — shared design system
   Loaded by index.html, music.html, submit.html and success.html.
   ========================================================================== */

:root {
  --gold-primary: #d4af37;
  --gold-light: #f3e5ab;
  --gold-dark: #aa7c11;
  --bg-black: #050507;
  --bg-raise: #0a0a0e;
  --card-bg: #0e0e12;
  --border-gold: rgba(212, 175, 55, 0.3);
  --border-faint: rgba(255, 255, 255, 0.06);
  --text-main: #f0f0f5;
  --text-muted: #a0a0b0;
  --text-dim: #6e6e7c;
  --header-h: 78px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-black);
  color: var(--text-main);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .brand-name, .brand-font {
  font-family: 'Cinzel', serif;
  letter-spacing: 2px;
}

a { color: var(--gold-primary); }

::selection {
  background: var(--gold-primary);
  color: #000;
}

:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 3px;
}

/* --------------------------------------------------------------- HEADER  */
/* Scoped to the top-level site bar: nested <header> elements (e.g. the
   article headline on band-announcements.html) must stay in normal flow. */
body > header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(5, 5, 7, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-gold);
  z-index: 1000;
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}

.logo-icon {
  width: 45px;
  height: 45px;
  flex: none;
  background: radial-gradient(circle, #ffe28a 0%, #d4af37 50%, #5a4300 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
  animation: rotateVinyl 20s linear infinite;
}

@keyframes rotateVinyl {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.logo-icon svg {
  width: 24px;
  height: 24px;
  fill: #000;
}

.brand-text .brand-name {
  display: block;
  font-size: 1.3rem;
  color: var(--gold-primary);
  font-weight: 700;
}

.brand-text p {
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

nav a:hover { color: var(--gold-primary); }

nav a.current {
  color: var(--gold-primary);
  border-bottom: 1px solid var(--gold-primary);
}

nav a.ext::after {
  content: '\2197';
  font-size: 0.7em;
  margin-left: 3px;
  vertical-align: super;
  opacity: 0.7;
}

/* ----------------------------------------------------------------- HERO  */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 60px;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, rgba(5, 5, 7, 1) 70%);
  position: relative;
}

.hero-content { max-width: 900px; }

.hero-tag {
  color: var(--gold-primary);
  font-size: 0.9rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 600;
}

.hero h1, .hero h2 {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(0,0,0,0.8);
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 30px;
}

/* -------------------------------------------------------------- BUTTONS  */
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #000;
  padding: 15px 35px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.7);
}

.cta-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.ghost-button {
  display: inline-block;
  padding: 15px 32px;
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  background: rgba(212, 175, 55, 0.04);
}

.ghost-button:hover {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.12);
  transform: translateY(-3px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* -------------------------------------------------------------- SECTION  */
section {
  padding: 100px 5%;
  max-width: 1300px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--gold-primary);
  margin-bottom: 10px;
}

.section-title p {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
}

/* Editorial left-aligned section heading with a rule and an index numeral */
.rule-heading {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 45px;
}

.rule-heading .index {
  font-family: 'Cinzel', serif;
  color: var(--gold-dark);
  font-size: 0.95rem;
  letter-spacing: 2px;
  flex: none;
  padding-top: 4px;
}

.rule-heading h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  color: var(--gold-primary);
  white-space: nowrap;
}

.rule-heading .rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border-gold), transparent);
  transform: translateY(-6px);
}

/* --------------------------------------------------- SUBMISSION PORTAL  */
.submission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.package-card {
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 35px 25px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
}

.package-card.featured {
  border: 2px solid var(--gold-primary);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-primary);
  color: #000;
  padding: 4px 15px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 20px;
}

.package-price {
  font-size: 3rem;
  color: #fff;
  font-weight: 800;
  margin: 20px 0;
}

.package-price span {
  font-size: 1rem;
  color: var(--gold-primary);
}

.package-features {
  list-style: none;
  margin-bottom: 30px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.package-features li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.submission-form-container {
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  color: var(--gold-primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px;
  background: #14141a;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 4px;
  color: #fff;
  font-family: inherit;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
}

.price-calculator {
  background: rgba(212, 175, 55, 0.1);
  border: 1px dashed var(--gold-primary);
  padding: 20px;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.form-status {
  font-size: 0.85rem;
  text-align: center;
  margin-top: 15px;
  min-height: 1.2em;
}

.form-status.error { color: #e06666; }
.form-status.info { color: var(--gold-light); }

.disclaimer {
  font-size: 0.75rem;
  color: #777;
  text-align: center;
  margin-top: 15px;
}

/* ------------------------------------------------------- TOUR & EVENTS  */
.tour-card {
  background: var(--card-bg);
  border-left: 4px solid var(--gold-primary);
  padding: 25px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0 8px 8px 0;
  gap: 20px;
}

.tour-date {
  color: var(--gold-primary);
  font-weight: 800;
  font-size: 1.2rem;
}

.tour-location h3 { font-size: 1.2rem; color: #fff; }

.tour-location p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.ticket-status {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-primary);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid var(--border-gold);
  text-align: center;
}

.ticket-status-link {
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s, box-shadow 0.3s;
}

.ticket-status-link:hover {
  background: rgba(212, 175, 55, 0.28);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.25);
}

/* Expanded card for a headline event: summary row on top, full billing below. */
.tour-card-featured {
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}

.tour-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.event-detail {
  border-top: 1px solid var(--border-faint);
  padding-top: 22px;
}

.event-intro {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.event-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px 34px;
}

.event-block h4 {
  color: var(--gold-primary);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.event-block .spec-list li strong { color: #fff; font-weight: 700; }

.event-tickets {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--border-faint);
}

.event-tickets p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ------------------------------------------------------- MEDIA GALLERY  */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  height: 250px;
  background: #1a1a22;
  border: 1px solid rgba(255,255,255,0.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  color: #fff;
}

/* ------------------------------------------------------------- FOOTER   */
footer {
  background: #020203;
  border-top: 1px solid var(--border-gold);
  padding: 60px 5% 30px;
  text-align: center;
}

.footer-brand { margin-bottom: 25px; }

.footer-brand h2 { color: var(--gold-primary); }

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 5px;
}

.footer-brand a { color: var(--text-muted); text-decoration: none; }
.footer-brand a:hover { color: var(--gold-primary); }

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.social-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.social-links a:hover { color: var(--gold-primary); }

.copyright {
  color: #555;
  font-size: 0.8rem;
}

/* ==========================================================================
   ARTIST BIO PAGE (index.html)
   ========================================================================== */

/* Fixed atmospheric layers: grain + a slow gold bloom behind everything */
.backdrop {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 78% 8%, rgba(212, 175, 55, 0.16), transparent 70%),
    radial-gradient(ellipse 60% 45% at 8% 62%, rgba(170, 124, 17, 0.09), transparent 70%),
    var(--bg-black);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

.artist-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 70px) 5% 90px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-primary);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 26px;
}

.eyebrow::before {
  content: '';
  width: 42px;
  height: 1px;
  background: var(--gold-primary);
}

.display-name {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: clamp(4.5rem, 14vw, 11rem);
  line-height: 0.82;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(168deg, #fffaf0 8%, var(--gold-light) 34%, var(--gold-primary) 62%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: -0.05em;
}

.given-name {
  font-size: clamp(0.78rem, 1.5vw, 0.95rem);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 22px 0 24px;
  font-weight: 600;
}

.hero-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-bottom: 28px;
  list-style: none;
}

.hero-roles li {
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  padding: 7px 15px;
  background: rgba(212, 175, 55, 0.05);
}

.hero-blurb {
  font-size: 1.06rem;
  color: var(--text-muted);
  max-width: 56ch;
  margin-bottom: 34px;
}

.hero-blurb strong { color: var(--text-main); font-weight: 600; }

/* Aperture + vinyl emblem: the two halves of his career in one mark */
.emblem {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 430px;
  margin-inline: auto;
  display: grid;
  place-items: center;
}

.emblem .disc {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at 50% 50%, rgba(212,175,55,0.10) 0 1px, transparent 1px 7px),
    radial-gradient(circle at 50% 50%, #17171e 0%, #0a0a0e 58%, #05050a 100%);
  border: 1px solid var(--border-gold);
  box-shadow: 0 0 70px rgba(212, 175, 55, 0.16), inset 0 0 60px rgba(0,0,0,0.9);
  animation: rotateVinyl 42s linear infinite;
}

.emblem .blades {
  position: absolute;
  inset: 14%;
  animation: rotateVinyl 90s linear infinite reverse;
}

.emblem .blades span {
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  clip-path: polygon(50% 50%, 0 0, 100% 0);
}

.emblem .blades span:nth-child(1) { transform: rotate(0deg); }
.emblem .blades span:nth-child(2) { transform: rotate(60deg); }
.emblem .blades span:nth-child(3) { transform: rotate(120deg); }
.emblem .blades span:nth-child(4) { transform: rotate(180deg); }
.emblem .blades span:nth-child(5) { transform: rotate(240deg); }
.emblem .blades span:nth-child(6) { transform: rotate(300deg); }

.emblem .core {
  position: relative;
  width: 27%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #fff3cf 0%, var(--gold-primary) 46%, #6b5107 100%);
  display: grid;
  place-items: center;
  font-family: 'Cinzel', serif;
  font-weight: 900;
  color: #16110a;
  font-size: clamp(1rem, 2.6vw, 1.5rem);
  letter-spacing: 1px;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.45);
}

.emblem .ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 50%;
}

.emblem .ring.dashed {
  inset: -5%;
  border-style: dashed;
  border-color: rgba(212, 175, 55, 0.16);
  animation: rotateVinyl 130s linear infinite;
}

/* Scroll cue */
.scroll-cue {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-dim);
  font-size: 0.64rem;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.scroll-cue::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border-gold), transparent);
}

/* ---------------------------------------------------------- STAT STRIP  */
.stat-strip {
  border-block: 1px solid var(--border-faint);
  background: rgba(255, 255, 255, 0.012);
}

.stat-strip-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 42px 5%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 34px;
}

.stat .num {
  font-family: 'Cinzel', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
}

.stat .lbl {
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 9px;
}

/* ----------------------------------------------------------- BIO PROSE  */
.bio-layout {
  display: grid;
  grid-template-columns: minmax(0, 250px) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}

.bio-aside {
  position: sticky;
  top: calc(var(--header-h) + 40px);
  border-left: 1px solid var(--border-gold);
  padding-left: 24px;
}

.bio-aside dt {
  font-size: 0.62rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 20px;
}

.bio-aside dt:first-of-type { margin-top: 0; }

.bio-aside dd {
  font-size: 0.9rem;
  color: var(--text-main);
  margin-top: 5px;
}

.bio-aside dd a { text-decoration: none; }
.bio-aside dd a:hover { text-decoration: underline; }

.prose p {
  color: var(--text-muted);
  margin-bottom: 22px;
  max-width: 68ch;
}

.prose p.lead {
  font-size: 1.22rem;
  color: var(--text-main);
  line-height: 1.62;
}

.prose p.lead::first-letter {
  font-family: 'Cinzel', serif;
  float: left;
  font-size: 3.6rem;
  line-height: 0.82;
  padding: 6px 14px 0 0;
  color: var(--gold-primary);
}

.prose strong { color: var(--gold-light); font-weight: 600; }
.prose em { color: var(--text-main); }

.pull-quote {
  border-left: 2px solid var(--gold-primary);
  margin: 38px 0;
  padding: 6px 0 6px 28px;
  font-family: 'Cinzel', serif;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.45;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}

.pull-quote cite {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 14px;
}

/* ------------------------------------------------------------ RELEASES  */
.release-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--border-faint);
  transition: background 0.35s, padding-inline 0.35s;
}

.release-row:last-child { border-bottom: 1px solid var(--border-faint); }

.release-row:hover {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.07), transparent 65%);
}

.release-row .when {
  font-family: 'Cinzel', serif;
  color: var(--gold-dark);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  line-height: 1.35;
}

.release-row h3 {
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  color: #fff;
  margin-bottom: 8px;
}

.release-row h3 em {
  font-style: italic;
  color: var(--gold-light);
}

.release-row p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 62ch;
}

.tag {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  border: 1px solid var(--border-gold);
  border-radius: 3px;
  padding: 3px 9px;
  margin-bottom: 12px;
}

.row-link {
  color: var(--gold-primary);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.row-link:hover { border-color: var(--gold-primary); }

/* ---------------------------------------------------------- ACCOLADES  */
.accolade-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1px;
  background: var(--border-faint);
  border: 1px solid var(--border-faint);
}

.accolade {
  background: var(--bg-raise);
  padding: 34px 28px;
  transition: background 0.35s;
}

.accolade:hover { background: #101017; }

.accolade .marker {
  font-family: 'Cinzel', serif;
  color: var(--gold-dark);
  font-size: 0.72rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 16px;
}

.accolade h3 {
  font-size: 1.02rem;
  color: var(--gold-light);
  margin-bottom: 10px;
  letter-spacing: 1px;
  line-height: 1.4;
}

.accolade p {
  color: var(--text-muted);
  font-size: 0.87rem;
}

/* ------------------------------------------------------------ TIMELINE  */
.timeline {
  list-style: none;
  margin-top: 10px;
  border-left: 1px solid var(--border-gold);
  padding-left: 34px;
}

.timeline li {
  position: relative;
  padding-bottom: 34px;
}

.timeline li:last-child { padding-bottom: 0; }

.timeline li::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--bg-black);
  border: 1px solid var(--gold-primary);
}

.timeline li.now::before {
  background: var(--gold-primary);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.8);
}

.timeline .yr {
  font-family: 'Cinzel', serif;
  color: var(--gold-primary);
  font-size: 0.86rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 5px;
}

.timeline h3 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.timeline p {
  color: var(--text-muted);
  font-size: 0.87rem;
  max-width: 60ch;
}

/* -------------------------------------------------------- CRAFT SPLIT  */
.craft-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
  margin-bottom: 40px;
}

.craft-card {
  background: linear-gradient(160deg, var(--card-bg), #08080c);
  border: 1px solid var(--border-faint);
  border-radius: 8px;
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s;
}

.craft-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
}

.craft-card::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent 70%);
}

.craft-card .ico {
  width: 40px;
  height: 40px;
  stroke: var(--gold-primary);
  fill: none;
  stroke-width: 1.2;
  margin-bottom: 18px;
}

.craft-card h3 {
  color: var(--gold-light);
  font-size: 1.12rem;
  margin-bottom: 12px;
}

.craft-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.spec-list {
  list-style: none;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.spec-list li {
  padding: 8px 0 8px 18px;
  border-top: 1px solid var(--border-faint);
  position: relative;
}

.spec-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 6px;
  height: 6px;
  background: var(--gold-dark);
  transform: rotate(45deg);
}

/* --------------------------------------------------------- CROSS-LINKS  */
.crosslink-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1px;
  background: var(--border-faint);
  border-block: 1px solid var(--border-faint);
}

.crosslink {
  background: var(--bg-raise);
  padding: 46px 34px;
  text-decoration: none;
  display: block;
  transition: background 0.35s;
}

.crosslink:hover { background: #101018; }

.crosslink .kicker {
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.crosslink h3 {
  font-size: 1.3rem;
  color: var(--gold-light);
  margin: 12px 0 10px;
}

.crosslink p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.crosslink .go {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 700;
}

.crosslink:hover .go { text-decoration: underline; }

/* ==========================================================================
   MUSIC PAGE (music.html)
   ========================================================================== */

.page-hero {
  padding: calc(var(--header-h) + 90px) 5% 20px;
  max-width: 1300px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 0.95;
  color: #fff;
  background: linear-gradient(165deg, #fffaf0, var(--gold-primary) 60%, var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 62ch;
}

.player-layout {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.player-panel {
  position: sticky;
  top: calc(var(--header-h) + 30px);
}

.player-frame {
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(160deg, #101016, #07070b);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

.player-frame iframe {
  display: block;
  border: 0;
  border-radius: 12px;
  width: 100%;
}

.now-playing {
  font-size: 0.64rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 16px 4px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.now-playing b {
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 1.5px;
}

.eq {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
  flex: none;
}

.eq i {
  width: 2px;
  background: var(--gold-primary);
  animation: eqBounce 1s ease-in-out infinite;
}

.eq i:nth-child(1) { height: 40%; animation-delay: -0.2s; }
.eq i:nth-child(2) { height: 90%; animation-delay: -0.55s; }
.eq i:nth-child(3) { height: 60%; animation-delay: -0.9s; }

@keyframes eqBounce {
  0%, 100% { transform: scaleY(0.35); }
  50% { transform: scaleY(1); }
}

.tracklist { list-style: none; }

.track-row {
  width: 100%;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 17px 14px;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--border-faint);
  color: inherit;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.28s;
}

.tracklist li:first-child .track-row { border-top: 1px solid var(--border-faint); }

.track-row:hover { background: rgba(212, 175, 55, 0.06); }

.track-row .n {
  font-family: 'Cinzel', serif;
  color: var(--text-dim);
  font-size: 0.86rem;
  letter-spacing: 1px;
}

.track-row .t {
  font-size: 1rem;
  color: var(--text-main);
  letter-spacing: 0.4px;
}

.track-row .sub {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 3px;
}

.track-row .play {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: grid;
  place-items: center;
  flex: none;
  transition: background 0.28s, border-color 0.28s;
}

.track-row .play svg {
  width: 11px;
  height: 11px;
  fill: var(--gold-primary);
  margin-left: 1px;
}

.track-row:hover .play {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
}

.track-row:hover .play svg { fill: #000; }

.track-row[aria-current="true"] {
  background: rgba(212, 175, 55, 0.1);
}

.track-row[aria-current="true"] .n,
.track-row[aria-current="true"] .t {
  color: var(--gold-primary);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.platform {
  border: 1px solid var(--border-faint);
  border-radius: 8px;
  padding: 26px 24px;
  text-decoration: none;
  display: block;
  background: var(--bg-raise);
  transition: border-color 0.32s, transform 0.32s;
}

.platform:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.platform .name {
  font-family: 'Cinzel', serif;
  color: var(--gold-light);
  font-size: 1.02rem;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.platform .handle {
  color: var(--text-muted);
  font-size: 0.84rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.video-frame {
  border: 1px solid var(--border-faint);
  border-radius: 10px;
  overflow: hidden;
  background: #08080c;
}

.video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.video-frame .cap {
  padding: 14px 18px;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ==========================================================================
   MOTION + RESPONSIVE
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 1000px) {
  .artist-hero {
    grid-template-columns: 1fr;
    gap: 46px;
    text-align: left;
  }
  .emblem { max-width: 300px; }
  .bio-layout, .player-layout { grid-template-columns: 1fr; gap: 34px; }
  .bio-aside, .player-panel { position: static; }
}

@media (max-width: 768px) {
  body > header {
    flex-direction: column;
    gap: 15px;
  }
  nav { justify-content: center; gap: 16px; }
  :root { --header-h: 128px; }
  section { padding: 70px 5%; }
  .hero h1, .hero h2 { font-size: 2.2rem; }
  .tour-card { flex-direction: column; align-items: flex-start; gap: 15px; }
  .tour-card-featured { align-items: stretch; gap: 22px; }
  .tour-card-head { flex-direction: column; align-items: flex-start; gap: 15px; }
  .event-tickets { flex-direction: column; align-items: flex-start; }
  .event-tickets .cta-button { width: 100%; text-align: center; padding: 15px 20px; }
  .release-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .rule-heading { flex-wrap: wrap; }
  .rule-heading h2 { white-space: normal; }
  .prose p.lead { font-size: 1.08rem; }
  .track-row { grid-template-columns: 30px minmax(0, 1fr) auto; gap: 12px; padding: 15px 6px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   FESTIVAL NEWS POST — band-announcements.html
   Editorial layout for lineup announcements plus the four-slot bill.
   ========================================================================== */

.article-shell {
  max-width: 820px;
  margin: 0 auto;
}

.article-head {
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: 28px;
  margin-bottom: 34px;
}

.article-head h2 {
  font-size: clamp(1.9rem, 4.6vw, 3.1rem);
  line-height: 1.1;
  color: var(--gold-primary);
  margin-bottom: 18px;
}

.article-dek {
  font-size: 1.05rem;
  color: var(--text-main);
  max-width: 60ch;
  margin-bottom: 22px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.article-meta .byline { color: var(--gold-dark); font-weight: 600; }

.article-figure {
  margin: 0 0 34px;
}

.article-figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  background: #12121a;
}

.article-figure figcaption {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 12px;
}

.figure-pair {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 18px;
}

/* The band logo is white-on-black artwork, so it sits centred in its own
   panel rather than being cropped to match the photo's height. */
.figure-logo {
  display: grid;
  place-items: center;
  background: #08080c;
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 20px;
}

.figure-logo img {
  border: none;
  border-radius: 0;
  background: none;
}

.prose h3 {
  font-size: 1.18rem;
  color: var(--gold-light);
  letter-spacing: 1.5px;
  margin: 40px 0 18px;
}

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

/* Highlight rows — "Pop-to-Rock Re-imaginations", etc. */
.highlight-list {
  list-style: none;
  margin: 0 0 10px;
}

.highlight-list li {
  border-left: 2px solid var(--gold-dark);
  padding: 4px 0 4px 22px;
  margin-bottom: 24px;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.highlight-list b {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 8px;
}

/* Festival breakdown */
.breakdown-table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 34px;
  font-size: 0.9rem;
}

.breakdown-table caption {
  text-align: left;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  padding-bottom: 12px;
}

.breakdown-table th,
.breakdown-table td {
  text-align: left;
  padding: 15px 16px;
  border-bottom: 1px solid var(--border-faint);
  vertical-align: top;
}

.breakdown-table thead th {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--border-gold);
}

.breakdown-table tbody th {
  width: 34%;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-light);
}

.breakdown-table td { color: var(--text-muted); }
.breakdown-table tbody tr:last-child th,
.breakdown-table tbody tr:last-child td { border-bottom: none; }

/* The four-slot bill */
.lineup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

.lineup-slot {
  background: var(--card-bg);
  border: 1px solid var(--border-faint);
  border-top: 3px solid var(--gold-dark);
  border-radius: 8px;
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lineup-slot.confirmed {
  border-top-color: var(--gold-primary);
  border-color: var(--border-gold);
}

.lineup-slot .slot-num {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 3px;
  color: var(--gold-dark);
}

.lineup-slot h3 {
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.3;
}

.lineup-slot.confirmed h3 { color: var(--gold-light); }

.lineup-slot p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: auto;
}

.lineup-slot .slot-art {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border-faint);
  margin-bottom: 4px;
}

.lineup-slot .slot-art.placeholder {
  display: grid;
  place-items: center;
  background: repeating-linear-gradient(135deg, #0d0d13, #0d0d13 9px, #121219 9px, #121219 18px);
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: rgba(212, 175, 55, 0.35);
}

@media (max-width: 700px) {
  .figure-pair { grid-template-columns: 1fr; }
  .breakdown-table tbody th { width: auto; }
  .breakdown-table,
  .breakdown-table th,
  .breakdown-table td { font-size: 0.84rem; }
  .breakdown-table th, .breakdown-table td { padding: 12px 10px; }
}
