
/* ============================================
   DAISYCHAINDAZE — Bauhaus meets DIY Punk Zine
   ============================================ */

/* Proxima Nova isn't on the Google Fonts free tier, so we use Barlow / Barlow Condensed as the body-font substitute */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;1,400&family=Barlow:ital,wght@0,400;0,500;0,700;1,400&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --black: #0a0a0a;
  --yellow: #f5e642;
  --yellow-dark: #d4c800;
  --red: #e8190c;
  --red-dark: #b01008;
  --teal: #00b8a9;
  --teal-dark: #008f84;
  --white: #f0ece0;
  --grey: #2a2a2a;
  --grey-mid: #444;
  --grey-light: #888;

  --font-display: 'Anton', 'Bebas Neue', impact, sans-serif;
  --font-heading: 'Bebas Neue', 'Anton', impact, sans-serif;
  --font-body: 'Barlow', 'Barlow Condensed', sans-serif;
  --font-mono: 'Space Mono', monospace;

  --nav-h: 70px;
  --transition: 0.2s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---- NOISE TEXTURE OVERLAY ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--black);
  border-bottom: 3px solid var(--yellow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 1000;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--yellow);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo span {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--grey-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 0;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  color: var(--white);
  border-left: 1px solid var(--grey);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-links a:last-child { border-right: 1px solid var(--grey); }
.nav-links a:hover, .nav-links a.active {
  color: var(--black);
  background: var(--yellow);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1100;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--yellow);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-top: 3px solid var(--yellow);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0.6rem 2rem;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--grey);
  transition: color var(--transition), background var(--transition);
}
.nav-mobile a:hover, .nav-mobile a.active {
  color: var(--black);
  background: var(--yellow);
}

/* ============================================
   PAGE WRAPPER
   ============================================ */
.page {
  margin-top: var(--nav-h);
  min-height: calc(100vh - var(--nav-h));
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: var(--yellow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4rem 3rem 4rem 3rem;
  position: relative;
  overflow: hidden;
}

.hero-left::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border: 40px solid var(--red);
  border-radius: 50%;
  opacity: 0.15;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.9;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: normal;
  color: var(--red);
  display: block;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--grey-mid);
  max-width: 340px;
  margin-bottom: 2.5rem;
  line-height: 1.55;
}

.hero-right {
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem 3rem;
  border-left: 4px solid var(--yellow);
  position: relative;
  overflow: hidden;
}

.hero-geo {
  position: absolute;
  bottom: 0; right: 0;
  width: 200px; height: 200px;
  background: var(--teal);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  opacity: 0.12;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--grey);
  padding: 1.5rem 0;
}
.hero-stat:first-of-type { border-top: 1px solid var(--white); }
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--yellow);
}
.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 0.975rem;
  letter-spacing: 0.2em;
  color: var(--white);
  text-transform: uppercase;
  margin-top: 0.3rem;
  line-height: 1.5;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.75rem 1.8rem;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: transparent;
  color: var(--red);
}
.btn-secondary {
  background: transparent;
  color: var(--yellow);
  border-color: var(--yellow);
  font-size: 1.5rem;
  padding: 0.85rem 2rem;
}
.btn-secondary:hover {
  background: var(--yellow);
  color: var(--black);
}
.btn-teal {
  background: var(--teal);
  color: var(--black);
  border-color: var(--teal);
  font-size: 1.5rem;
  padding: 0.85rem 2rem;
}
.btn-teal:hover {
  background: transparent;
  color: var(--teal);
}
.btn-secondary.spotify {
  border-color: #1db954;
  color: #1db954;
}
.btn-secondary.spotify:hover {
  background: #1db954;
  color: #000;
}
.btn-secondary.amazon {
  border-color: #ff9900;
  color: #ff9900;
}
.btn-secondary.amazon:hover {
  background: #ff9900;
  color: #000;
}
.btn-large {
  font-size: 1.3rem;
  padding: 1rem 2.5rem;
}

/* ============================================
   SECTION LAYOUTS
   ============================================ */
.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 3rem;
  border-bottom: 3px solid var(--yellow);
  padding-bottom: 1rem;
}
.section-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  margin-right: auto;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
}
.accent {
  color: var(--red);
}
.section-title .accent { color: var(--yellow); }
.section-title .red { color: var(--red); }

/* ============================================
   HOMEPAGE — COMING SOON BANNER
   ============================================ */
.coming-soon-band {
  background: var(--red);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}
.coming-soon-band::before {
  content: 'COMING SOON';
  position: absolute;
  right: 120px;
  top: 50%;
  transform: translateY(-50%) rotate(-5deg);
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--red-dark);
  opacity: 0.6;
  white-space: nowrap;
  pointer-events: none;
}
.coming-soon-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 3rem;
}
.coming-soon-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.coming-soon-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 1;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.coming-soon-sub {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  max-width: 480px;
  line-height: 1.65;
}

/* ============================================
   HOMEPAGE — STREAMS TICKER
   ============================================ */
.ticker-wrap {
  background: var(--yellow);
  overflow: hidden;
  padding: 0.6rem 0;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}
.ticker {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 2rem;
}
.ticker-item::after {
  content: '★';
  margin-left: 2rem;
  color: var(--red);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   STREAMING LINKS
   ============================================ */
.streaming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border: 2px solid var(--grey);
}
.streaming-card {
  padding: 2rem;
  border-right: 2px solid var(--grey);
  border-bottom: 2px solid var(--grey);
  transition: background var(--transition), color var(--transition);
  position: relative;
  overflow: hidden;
}
.streaming-card:hover { background: var(--grey); }
.streaming-card::before {
  content: attr(data-num);
  position: absolute;
  bottom: -10px; right: -5px;
  font-family: var(--font-display);
  font-size: 6rem;
  color: rgba(255,255,255,0.03);
  line-height: 1;
}
.streaming-platform {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.streaming-desc {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--grey-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 60vh;
}
.about-bio {
  padding: 4rem 3rem;
  border-right: 3px solid var(--yellow);
}
.sound-section {
  margin-top: 3rem;
}
.sound-section-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--grey-mid);
  padding-bottom: 0.75rem;
}
.sound-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sound-card {
  background: var(--black);
  padding: 1.2rem;
  border-left: 3px solid var(--grey-mid);
}
.sound-card.red { border-left-color: var(--red); }
.sound-card.teal { border-left-color: var(--teal); }
.sound-card.yellow { border-left-color: var(--yellow); }
.sound-card-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  color: var(--grey-mid);
}
.sound-card.red .sound-card-label { color: var(--red); }
.sound-card.teal .sound-card-label { color: var(--teal); }
.sound-card.yellow .sound-card-label { color: var(--yellow); }
.sound-card-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(240,236,224,0.75);
}
.about-bio p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
}
.about-bio p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.8;
  float: left;
  margin-right: 0.15em;
  color: var(--yellow);
}

.about-sidebar {
  padding: 4rem 3rem;
  background: var(--grey);
}
.influences-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.influence-tag {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border: 1px solid;
  transition: all var(--transition);
}
.influence-tag:nth-child(3n+1) { color: var(--yellow); border-color: var(--yellow); }
.influence-tag:nth-child(3n+2) { color: var(--teal); border-color: var(--teal); }
.influence-tag:nth-child(3n+3) { color: var(--red); border-color: var(--red); }
.influence-tag:hover {
  background: currentColor;
  color: var(--black);
}

/* Lyrics Section */
.lyrics-section {
  background: var(--black);
  border-top: 4px solid var(--red);
  padding: 5rem 2rem;
}
.lyrics-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.lyrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2px;
  margin-top: 3rem;
}
.lyric-card {
  background: var(--grey);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.lyric-card:hover { background: #333; }
.lyric-card::before {
  content: '"';
  position: absolute;
  top: -20px; left: 10px;
  font-family: var(--font-display);
  font-size: 10rem;
  color: rgba(245, 230, 66, 0.08);
  line-height: 1;
}
.lyric-song {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.lyric-introtext {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.lyric-image {
  display: block;
  width: 100%;
  margin-top: 1.5rem;
}
.lyric-card.highlight {
  background: var(--grey);
  border-left: 3px solid var(--yellow);
}
.lyric-credit.spaced {
  margin-top: 1rem;
}
.lyric-text {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--white);
}
.lyric-credit {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--yellow);
  margin-top: 1rem;
}

/* ============================================
   DISCOGRAPHY — SINGLES
   ============================================ */
.singles-hero {
  background: var(--yellow);
  padding: 4rem 3rem;
  border-bottom: 4px solid var(--black);
  position: relative;
  overflow: hidden;
}
.singles-hero::after {
  content: 'SINGLES';
  position: absolute;
  right: -20px; bottom: -20px;
  font-family: var(--font-display);
  font-size: 10rem;
  color: rgba(0,0,0,0.08);
  line-height: 1;
  white-space: nowrap;
}
.singles-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
  color: var(--black);
  text-transform: uppercase;
}
.singles-hero-sub {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--grey-mid);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 1rem;
}

/* ============================================
   ALBUMS PAGE
   ============================================ */
.albums-featured {
  background: var(--yellow);
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  border-bottom: 4px solid var(--black);
  position: relative;
  overflow: hidden;
}
.albums-featured-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.5rem;
}
.albums-featured-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
  color: var(--black);
  text-transform: uppercase;
}
.albums-featured-title em {
  font-style: normal;
  color: var(--red);
}
.albums-featured-text {
  font-size: 1.2rem;
  color: var(--black);
  line-height: 1.7;
  max-width: 400px;
}
.albums-featured-sub {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  margin-top: 0.5rem;
  font-style: italic;
}

.albums-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2px;
}
.album-card {
  background: var(--black);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
  border-top: 3px solid transparent;
}
.album-card:hover { background: #333; }
.album-card:nth-child(odd) { border-top-color: var(--teal); }
.album-card:nth-child(even) { border-top-color: var(--red); }
.album-card.accent-yellow-top { border-top-color: var(--yellow); }
.album-year {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(255,255,255,0.05);
  position: absolute;
  top: 1rem; right: 1.5rem;
  line-height: 1;
}
.album-date-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.album-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1rem;
}
.album-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(240,236,224,0.7);
  margin-bottom: 1.5rem;
}
.album-desc.pullquote {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--yellow);
  font-style: italic;
  margin-bottom: 0.75rem;
}
.album-location {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-light);
  border-top: 1px solid var(--grey-mid);
  padding-top: 1rem;
  margin-top: 1rem;
}

/* ============================================
   NEWS PAGE
   ============================================ */
.news-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2px;
}
.news-card {
  background: var(--grey);
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.news-card:hover { background: #333; }
.news-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}
.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.news-card:hover .news-card-image img {
  transform: scale(1.05);
}
.news-card-body {
  padding: 2rem;
}
.news-category {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}
.news-date {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 0.75rem;
}
.news-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.news-excerpt {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.news-link {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  border-bottom: 1px solid var(--teal);
  padding-bottom: 1px;
  transition: color var(--transition);
}
.news-link:hover { color: var(--yellow); border-color: var(--yellow); }

/* Blog intro banner */
.news-hero {
  background: var(--black);
  border-bottom: 3px solid var(--teal);
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}
.news-hero::before {
  content: 'NEWS';
  position: absolute;
  right: -30px; bottom: -40px;
  font-family: var(--font-display);
  font-size: 14rem;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  line-height: 1;
}
.news-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}
.news-hero-sub {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
}
.contact-info {
  background: var(--yellow);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.contact-info::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 300px; height: 300px;
  background: var(--red);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  opacity: 0.2;
}
.contact-info-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.9;
  color: var(--black);
  text-transform: uppercase;
}
.contact-info-tagline {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--grey-mid);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.75rem;
  max-width: 300px;
  line-height: 1.6;
}
.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-detail {
  display: flex;
  flex-direction: column;
}
.contact-detail-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 0.25rem;
}
.contact-detail-value {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--black);
}

.contact-form-wrap {
  background: var(--black);
  padding: 5rem 4rem;
  border-left: 4px solid var(--yellow);
}
.contact-form-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.contact-form-sub {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 0.5rem;
}
.form-input, .form-textarea {
  width: 100%;
  background: var(--grey);
  border: 2px solid var(--grey-mid);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color var(--transition);
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--yellow);
}
.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.captcha-box {
  background: var(--grey);
  border: 2px solid var(--grey-mid);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.captcha-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--grey-light);
}
.captcha-question {
  background: var(--black);
  border: 1px solid var(--yellow);
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
  margin-right: 0.5rem;
}
.captcha-answer {
  background: var(--grey);
  border: 1px solid var(--grey-mid);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
  width: 60px;
  outline: none;
  transition: border-color var(--transition);
}
.captcha-answer:focus { border-color: var(--yellow); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  border-top: 3px solid var(--yellow);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--yellow);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--grey-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-nav-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--grey);
  padding-bottom: 0.5rem;
}
.footer-nav a {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-light);
  padding: 0.25rem 0;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--yellow); }
.footer-copy {
  grid-column: 1 / -1;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-mid);
  text-align: center;
  border-top: 1px solid var(--grey);
  padding-top: 1.5rem;
  margin-top: 1rem;
}

/* ============================================
   GEOMETRIC DECORATIONS
   ============================================ */
.geo-strip {
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--yellow) 0px,
    var(--yellow) 40px,
    var(--red) 40px,
    var(--red) 80px,
    var(--black) 80px,
    var(--black) 120px,
    var(--teal) 120px,
    var(--teal) 160px
  );
}

.geo-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0;
}
.geo-divider::before, .geo-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--grey);
}
.geo-divider-icon {
  width: 12px; height: 12px;
  background: var(--yellow);
  transform: rotate(45deg);
}

/* ============================================
   PAGE HERO BANNER (reusable)
   ============================================ */
.page-hero {
  padding: 4rem 3rem;
  background: var(--black);
  border-bottom: 4px solid var(--yellow);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: attr(data-title);
  position: absolute;
  right: -20px; bottom: -30px;
  font-family: var(--font-display);
  font-size: 12rem;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  line-height: 1;
  pointer-events: none;
}
.page-hero-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--white);
}
.page-hero-title .y { color: var(--yellow); }
.page-hero-title .r { color: var(--red); }
.page-hero-sub {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--grey-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 1rem;
  max-width: 500px;
  line-height: 1.7;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; }
  .hero-right { border-left: none; border-top: 4px solid var(--yellow); }
  .hero-left { min-height: 60vh; }

  .about-grid { grid-template-columns: 1fr; }
  .about-bio { border-right: none; border-bottom: 3px solid var(--yellow); }

  .albums-featured { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { min-height: auto; }
  .contact-form-wrap { border-left: none; border-top: 4px solid var(--yellow); }

  .coming-soon-inner { grid-template-columns: 1fr; }
  .coming-soon-tag { writing-mode: horizontal-tb; transform: none; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 3.5rem; }
  .page-hero { padding: 2.5rem 1.5rem; }
  .section { padding: 3rem 1.5rem; }
  .albums-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .contact-info { padding: 3rem 2rem; }
  .contact-form-wrap { padding: 3rem 2rem; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  animation: fadeUp 0.6s ease forwards;
}
.fade-up-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-2 { animation-delay: 0.25s; opacity: 0; }
.fade-up-3 { animation-delay: 0.4s; opacity: 0; }
.fade-up-4 { animation-delay: 0.55s; opacity: 0; }
/* ============================================
   Supplemental component styles
   ============================================ */

.hero-right > *:not(.hero-right-photo):not(.hero-geo) {
  position: relative;
  z-index: 2;
}

/* ---- SCRATCHED LINE IMAGE (yellow section top) ---- */
/* ---- ALBUM COVER IMAGES ---- */
.album-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
  background: #111;
}
.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.9;
}
/* ---- ALBUM HERO BG IMAGE ---- */
.albums-featured > *:not(.albums-featured-photo) {
  position: relative;
  z-index: 1;
}

/* ---- SINGLES SUPPORT BAND BG ---- */
.singles-support-bg {
  position: relative;
  overflow: hidden;
  background: var(--teal);
  padding: 4rem 3rem;
  border-top: 4px solid var(--black);
}
.singles-support-bg-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.singles-support-bg > *:not(.singles-support-bg-art) {
  position: relative;
  z-index: 1;
}

/* ---- CONTACT GUITAR IMAGE ---- */
.contact-guitar-wrap {
  margin: 2rem 0 1.5rem;
  display: block;
}
.contact-guitar-wrap svg {
  width: 100%;
  max-width: 280px;
  display: block;
  margin: 0 auto;
}

/* ---- CONTACT YELLOW PANEL TEXT SIZES +50% ---- */
.contact-info .contact-info-title {
  font-size: clamp(4.5rem, 7.5vw, 7.5rem) !important;
}
.contact-info .contact-info-tagline {
  font-size: 1.2rem !important;
  line-height: 1.65;
}
.contact-info .contact-detail-label {
  font-size: 0.9rem !important;
}
.contact-info .contact-detail-value {
  font-size: 1.8rem !important;
}
.contact-info .btn {
  font-size: 1.2rem !important;
  padding: 0.65rem 1.4rem !important;
}
.contact-info .footer-nav-title,
.contact-info p,
.contact-info span {
  /* base text bump */
}

/* ---- SINGLES GRID — 20 singles, 5 columns ---- */
.singles-20-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: var(--black);
}
@media (max-width: 1100px) {
  .singles-20-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 800px) {
  .singles-20-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .singles-20-grid { grid-template-columns: repeat(2, 1fr); }
}

.single-cover-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--grey);
  cursor: pointer;
}
.single-cover-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.single-cover-card:hover img {
  transform: scale(1.04);
}
.single-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.single-cover-card:hover .single-cover-overlay {
  opacity: 1;
}
.single-cover-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.3rem;
}
.single-cover-links {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.single-cover-link {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  transition: all 0.2s;
}
.single-cover-link:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

/* ---- RESPONSIVE FIXES FOR INCREASED FONT SIZES ---- */
@media (max-width: 900px) {
  .btn.btn-secondary,
  .btn.btn-teal {
    font-size: 1.1rem !important;
    padding: 0.65rem 1.3rem !important;
  }
}

@media (max-width: 600px) {
  .hero-tagline { font-size: 1.1rem !important; }
  .coming-soon-sub { font-size: 0.95rem !important; }
  .contact-info .contact-info-title { font-size: 3rem !important; }
  .contact-info .contact-detail-value { font-size: 1.3rem !important; }
}

	/* ---- Initial drop cap from About page ---- */

	.drop-cap::first-letter {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 0.8;
    float: left;
    margin-right: 0.15em;
    color: var(--yellow);
}

/* ============================================
   CONTACT PAGE — "yellow panel" text-size overrides
   (scaled up ~50% from the shared defaults above so the
   intro panel reads comfortably at its larger column width)
   ============================================ */
.contact-info {
  padding: 4rem 3.5rem;
}
.contact-info-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.975rem; /* 0.65 x 1.5 */
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 1rem;
}
.contact-info-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 0.92;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.contact-info-tagline {
  font-family: var(--font-body);
  font-size: 1.2rem; /* 0.8 x 1.5 */
  color: var(--grey-mid);
  line-height: 1.65;
  max-width: 360px;
  margin-bottom: 1rem;
}
.contact-guitar-wrap {
  margin: 1.5rem 0 2rem;
}
.contact-photo {
  width: 100%;
  max-width: 380px;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  filter: grayscale(30%) contrast(1.1);
}
.contact-photo-caption {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  margin-top: 0.5rem;
}
.contact-detail-label {
  font-family: var(--font-mono);
  font-size: 0.975rem; /* 0.65 x 1.5 */
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  margin-bottom: 0.3rem;
}
.contact-detail-value {
  font-family: var(--font-heading);
  font-size: 1.8rem; /* 1.2 x 1.5 */
  letter-spacing: 0.04em;
  color: var(--black);
  line-height: 1.2;
}
.contact-detail-value-link {
  text-decoration: none;
}
.contact-detail-value-link.breakable {
  word-break: break-all;
}
.contact-detail-sub {
  font-family: var(--font-mono);
  font-size: 1.05rem; /* 0.7 x 1.5 */
  color: rgba(0,0,0,0.45);
  margin-top: 0.2rem;
}
.contact-detail-stream-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}
.contact-stream-btn {
  font-family: var(--font-heading);
  font-size: 1.05rem; /* 0.7 x 1.5 */
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.2rem;
  border: 2px solid;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
}
.contact-stream-btn.bandlab {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.contact-stream-btn.bandlab:hover {
  background: transparent;
  color: var(--black);
}
.contact-stream-btn.spotify {
  background: transparent;
  border-color: #1db954;
  color: #1db954;
}
.contact-stream-btn.spotify:hover {
  background: #1db954;
  color: #000;
}
.contact-stream-btn.amazon {
  background: transparent;
  border-color: #ff9900;
  color: #ff9900;
}
.contact-stream-btn.amazon:hover {
  background: #ff9900;
  color: #000;
}
.contact-closing-quote-wrap {
  margin-top: 2rem;
}
.contact-closing-quote {
  font-family: var(--font-mono);
  font-size: 0.975rem; /* 0.65 x 1.5 */
  color: rgba(0,0,0,0.4);
  letter-spacing: 0.08em;
  line-height: 1.75;
  font-style: italic;
}
.contact-info-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 120px 120px 0;
  border-color: transparent var(--red) transparent transparent;
  opacity: 0.18;
  pointer-events: none;
}

@media (max-width: 900px) {
  .contact-info { padding: 3rem 2rem; }
  .contact-info-title { font-size: 3rem; }
  .contact-info-tagline { font-size: 1rem; }
  .contact-detail-value { font-size: 1.4rem; }
}
@media (max-width: 600px) {
  .contact-info-title { font-size: 2.5rem; }
  .contact-detail-value { font-size: 1.2rem; }
  .contact-stream-btn { font-size: 0.85rem; }
}

/* ============================================
   CONTACT FORM — form-page-specific inline styles
   turned into classes
   ============================================ */
.contact-form-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.contact-form-status {
  display: none;
  margin-bottom: 1rem;
}
.contact-form-status.success { color: green; }
.contact-form-status.error { color: #c0392b; }
.captcha-question-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}
.captcha-tick-wrap {
  text-align: right;
}
.captcha-tick {
  width: 40px;
  height: 40px;
  border: 2px solid var(--grey-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-mid);
  font-family: var(--font-mono);
  font-size: 1.2rem;
  transition: all 0.2s ease;
}
.captcha-tick.valid {
  border-color: #2ecc71;
  color: #2ecc71;
}
.contact-submit-btn {
  width: 100%;
  justify-content: center;
}

/* ============================================
   CONTACT — bottom band + misc single-use utility classes
   ============================================ */
.contact-bottom-band {
  background: var(--yellow);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-top: 4px solid var(--black);
}
.contact-bottom-band-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--black);
}
.contact-bottom-band-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-mid);
}
.contact-bottom-band-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-on-yellow {
  background: var(--black);
  color: var(--yellow);
  border: 2px solid var(--black);
}
.btn-outline-black {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}

/* ============================================
   INDEX PAGE — hero, intro & streaming section
   classes replacing inline styles
   ============================================ */
.hero-left-photo {
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-left-tint {
  position: absolute;
  inset: 0;
  background: rgba(245,230,66,1);
  z-index: 0;
  pointer-events: none;
}
.hero-left-content {
  position: relative;
  z-index: 1;
  display: contents;
}
.accent-red-muted {
  color: rgba(161,39,27,1);
}
.hero-numbers-label {
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 0.25em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero-quote {
  margin-top: 2rem;
}
.hero-quote-text {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1.7;
  font-style: italic;
}
.btn-coming-soon {
  background: var(--black);
  color: var(--yellow);
  border: 2px solid var(--yellow);
  white-space: nowrap;
  align-self: center;
}

.intro-text-block {
  display: grid;
  gap: 2rem;
}
.intro-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.intro-lead strong {
  color: var(--yellow);
}
.intro-para {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(240,236,224,1);
  margin-bottom: 1.5rem;
}
.intro-support-note {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--teal);
  margin-bottom: 2rem;
}
.quick-links-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.quick-link-card {
  background: var(--grey);
  padding: 2rem;
  border-left: 4px solid var(--grey-mid);
}
.quick-link-card.teal { border-left-color: var(--teal); }
.quick-link-card.yellow { border-left-color: var(--yellow); }
.quick-link-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.quick-link-card.teal .quick-link-label { color: var(--teal); }
.quick-link-card.yellow .quick-link-label { color: var(--yellow); }
.quick-link-desc {
  font-size: 0.95rem;
  color: rgba(240,236,224,0.75);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.quick-link-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.btn-compact {
  padding: 0.6rem 1.2rem;
}
.accent-teal { color: var(--teal); }
.accent-green { color: #1db954; }

.hero-right-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 0;
}

/* ============================================
   ABOUT PAGE — page hero & sidebar
   classes replacing inline styles
   ============================================ */
.page-hero.flush {
  padding: 0;
}
.page-hero-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.page-hero-text {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--black);
  border-bottom: 4px solid var(--yellow);
}
.page-hero-photo {
  opacity: 0.75;
}
.about-recording-note {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--grey-light);
  line-height: 1.8;
}
.about-sidebar-heading {
  font-family: var(--font-display);
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.about-sidebar-heading.accent-yellow {
  color: var(--yellow);
  margin-bottom: 0.5rem;
}
.about-sidebar-heading.accent-white {
  color: var(--white);
  margin-bottom: 1.5rem;
}

/* ============================================
   ALBUMS PAGE — hero band & catalogue wrapper
   classes replacing inline styles
   ============================================ */
.albums-featured-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 0;
}
.albums-featured-text.spaced {
  margin-top: 1rem;
}
.albums-featured-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-static {
  cursor: default;
}
.btn-secondary.on-yellow {
  border-color: var(--black);
  color: var(--black);
}
.albums-featured-note {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  margin-top: 1rem;
}
.albums-catalogue {
  background: var(--black);
  padding: 2rem 0;
}
.albums-catalogue-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-header.tight {
  margin-bottom: 2rem;
}
.albums-grid.flush-top {
  padding-top: 0;
}

/* ============================================
   SINGLES PAGE — hero classes replacing inline styles
   ============================================ */
.singles-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 0;
  mix-blend-mode: luminosity;
}
.singles-hero-tint {
  position: absolute;
  inset: 0;
  background: rgba(245,230,66,0.55);
  z-index: 1;
  pointer-events: none;
}
.singles-hero-content {
  position: relative;
  z-index: 2;
}
.singles-hero-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 0.75rem;
}
.ticker-wrap.tight {
  margin-top: 2px;
}

/* ============================================
   SINGLES PAGE — streaming platform cards
   ============================================ */
.platform-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.platform-card {
  display: block;
  background: var(--grey);
  padding: 3rem;
  border-top: 4px solid var(--grey-mid);
  text-decoration: none;
  transition: background 0.2s ease;
}
.platform-card:hover {
  background: #333;
}
.platform-card.spotify { border-top-color: #1db954; }
.platform-card.amazon { border-top-color: #ff9900; }
.platform-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.platform-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #000;
  font-family: var(--font-display);
  font-size: 1.2rem;
}
.platform-card.spotify .platform-icon { background: #1db954; }
.platform-card.amazon .platform-icon { background: #ff9900; }
.platform-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  text-transform: uppercase;
}
.platform-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--grey-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.platform-desc {
  font-size: 0.9rem;
  color: rgba(240,236,224,0.65);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.platform-cards-footer {
  margin-top: 2px;
  background: var(--grey);
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.platform-cards-footer-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--white);
}
.platform-cards-footer-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--grey-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* ---- Support-band text on teal background ---- */
.coming-soon-tag.on-teal { color: rgba(0,0,0,0.4); }
.coming-soon-title.on-teal { color: var(--black); }
.coming-soon-sub.on-teal { color: rgba(0,0,0,0.65); }
.btn-coming-soon.on-teal { border-color: var(--black); }

/* ============================================
   NEWS PAGE — hero classes replacing inline styles
   ============================================ */
.news-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.20;
  z-index: 0;
}
.news-hero-content {
  position: relative;
  z-index: 1;
}

.news-cta-band {
  background: var(--grey);
  padding: 4rem 3rem;
  text-align: center;
  border-bottom: 3px solid var(--yellow);
}
.news-cta-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.news-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.news-cta-sub {
  font-family: var(--font-body);
  color: rgba(240,236,224,0.65);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.news-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
