/* ============================================
   D.D. Jackson — Full Midnight Design System
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* --- CSS Variables --- */
:root {
  --midnight: #141826;
  --midnight-light: #1a2030;
  --midnight-mid: #1f2640;
  --midnight-surface: #212842;
  --amber: #c49a3c;
  --amber-dim: rgba(196, 154, 60, 0.35);
  --amber-glow: rgba(196, 154, 60, 0.08);
  --bone: #e8e4dc;
  --bone-soft: #c0bab0;
  --bone-dim: #8a8580;
  --blue-deep: #1a2e54;
  --blue-mid: #243d6a;
  --blue-glow: #2e4f80;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* --- Base --- */
body {
  background: var(--midnight);
  color: var(--bone);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* Blue-wash pages — luminous stage-lighting wash, dark content on top */
/* ORIGINAL (revert target):
body.blue-wash {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(46,79,128,0.25) 0%, transparent 60%),
    linear-gradient(168deg, var(--midnight) 0%, var(--blue-deep) 20%, var(--blue-mid) 50%, var(--blue-glow) 80%, var(--blue-mid) 100%);
  background-attachment: fixed;
}
*/
body.blue-wash {
  background:
    /* near-white highlights — toned down from v2 */
    radial-gradient(circle at 28% 32%, rgba(150,185,245,0.08) 0%, transparent 35%),
    radial-gradient(circle at 72% 18%, rgba(130,170,240,0.06) 0%, transparent 28%),
    radial-gradient(circle at 55% 65%, rgba(160,195,250,0.05) 0%, transparent 32%),
    /* cobalt patches — split the difference in opacity */
    radial-gradient(ellipse 85% 65% at 18% 22%, rgba(48,100,185,0.30) 0%, transparent 65%),
    radial-gradient(ellipse 55% 75% at 78% 12%, rgba(55,110,195,0.25) 0%, transparent 58%),
    radial-gradient(ellipse 70% 55% at 60% 55%, rgba(40,88,170,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 45% 50% at 35% 75%, rgba(60,115,200,0.18) 0%, transparent 50%),
    radial-gradient(ellipse 65% 80% at 82% 78%, rgba(44,95,175,0.24) 0%, transparent 62%),
    /* violet hint — pulled back */
    radial-gradient(ellipse 50% 40% at 45% 8%, rgba(70,55,120,0.10) 0%, transparent 55%),
    /* base gradient — halfway between original and v2 */
    linear-gradient(168deg, #0e1420 0%, #152640 20%, #1a3260 45%, #244888 70%, #1a3460 90%, #142a4a 100%);
  background-attachment: fixed;
}

/* --- HEADER --- */
header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 22px 48px;
  border-bottom: none;
  position: relative;
}
body.blue-wash header {
  background: transparent;
}
body.blue-wash footer {
  background: transparent;
  border-top: none;
}
.header-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--bone);
  display: flex;
  align-items: center;
  gap: 4px;
  padding-top: 2px;
}
.header-icon {
  height: 36px;
  width: auto;
  opacity: 0.88;
  margin-top: -6px;
  transition: opacity 0.3s ease;
}
.header-name:hover .header-icon { opacity: 1; }
.header-name a { color: var(--bone); text-decoration: none; display: flex; align-items: center; gap: 4px; }
.header-name a:hover { color: var(--amber); }

.header-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.header-nav > a,
.header-nav > .nav-dropdown > a {
  color: #a8a298;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s ease;
}
.header-nav > a:hover,
.header-nav > a.active,
.header-nav > .nav-dropdown > a:hover,
.header-nav > .nav-dropdown > a.active { color: var(--amber); }

/* Dropdown menus */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 9px;
  opacity: 0.5;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -12px;
  padding-top: 10px;
  z-index: 100;
}
.nav-dropdown-menu ul {
  list-style: none;
  background: var(--midnight-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--amber);
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.nav-dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: var(--bone-soft);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: none;
  font-weight: 400;
  transition: all 0.15s ease;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav-dropdown-menu li:last-child a { border-bottom: none; }
.nav-dropdown-menu li a:hover {
  background: rgba(196, 154, 60, 0.08);
  color: var(--amber);
  padding-left: 22px;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }

/* Social icons in header nav */
.nav-social {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  justify-content: flex-end;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: var(--bone-soft);
  transition: all 0.25s ease;
}
.nav-social a:hover {
  color: var(--amber);
  border-color: var(--amber);
  background: rgba(196, 154, 60, 0.08);
}
.nav-social svg {
  width: 12px;
  height: 12px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--bone);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}

/* --- HERO (homepage only) --- */
.hero {
  position: relative;
  aspect-ratio: 16 / 9;
  max-height: 72vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center 15%;
  padding: 0 48px 64px;
  width: 100%;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,24,38,0.9) 0%, rgba(20,24,38,0.5) 40%, rgba(20,24,38,0.05) 75%, transparent 100%);
}
.hero-content { max-width: 520px; position: relative; z-index: 1; }
.hero-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 18px;
}
.hero-name {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 14px;
}
.hero-role {
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone-dim);
  font-weight: 400;
}
.hero-quote {
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: rgba(232, 228, 220, 0.88);
  line-height: 1.6;
  margin-top: 22px;
  max-width: 460px;
  border-left: 2px solid var(--amber-dim);
  padding-left: 16px;
}
.hero-quote-attr {
  font-size: 11px;
  color: var(--amber);
  opacity: 0.6;
  margin-top: 8px;
  padding-left: 18px;
  font-style: normal;
  letter-spacing: 0.03em;
}
.hero-credit {
  position: absolute;
  bottom: 16px;
  right: 24px;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  font-style: italic;
  z-index: 1;
}
.scroll-hint {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: var(--amber-dim);
  z-index: 1;
  animation: pulseDown 2s ease-in-out infinite;
}
@keyframes pulseDown {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.9; transform: translateX(-50%) translateY(6px); }
}

/* --- HOMEPAGE PRESS QUOTE BAND --- */
.press-quote-band {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 40%, var(--blue-glow) 100%);
  padding: 56px 48px;
  text-align: center;
  border-top: 3px solid var(--amber);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.press-quote-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(46, 79, 128, 0.3) 0%, transparent 70%);
  pointer-events: none;
}
.press-quote-band blockquote {
  max-width: 720px;
  margin: 0 auto;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  color: #fff;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}
.press-quote-band cite {
  display: block;
  margin-top: 20px;
  font-size: 13px;
  color: var(--amber);
  font-style: normal;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}
.press-quote-band .quote-rule {
  width: 50px;
  height: 2px;
  background: var(--amber);
  margin: 24px auto 0;
  border: none;
  position: relative;
  z-index: 1;
}

/* --- PAGE HERO (inner pages) --- */
.page-hero {
  padding: 60px 48px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
body.blue-wash .page-hero {
  background: transparent;
  border-bottom: none;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 8px;
}
.page-hero .page-subtitle {
  font-size: 14px;
  color: var(--bone-dim);
  letter-spacing: 0.06em;
}
.page-hero-rule {
  width: 50px;
  height: 2px;
  background: var(--amber);
  margin-top: 20px;
  border: none;
}

/* --- FEATURED BAND --- */
.featured-band {
  background: var(--midnight-light);
  padding: 52px 48px;
  border-top: 3px solid var(--amber);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.featured-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.featured-item {
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 1px solid var(--amber);
  padding: 28px 28px 28px 24px;
  background: var(--midnight);
}
.featured-label-dark {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 12px;
}
.featured-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--bone);
  margin-bottom: 10px;
}
.featured-desc {
  font-size: 14px;
  color: var(--bone-soft);
  line-height: 1.55;
}
.featured-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid var(--amber-dim);
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}
.featured-link:hover { border-color: var(--amber); }

/* --- INTRO SECTION --- */
.intro-section {
  max-width: 640px;
  margin: 0 auto;
  padding: 72px 40px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.intro-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--bone);
  font-style: italic;
}
.intro-rule {
  width: 60px;
  height: 2px;
  background: var(--amber);
  margin: 28px auto 0;
  border: none;
}

/* --- BIO SECTION --- */
.bio-section {
  max-width: 920px;
  margin: 0 auto;
  padding: 72px 48px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}
.bio-sidebar img {
  width: 100%;
  display: block;
  border-bottom: 3px solid var(--amber-dim);
}
.bio-sidebar .caption {
  font-size: 11px;
  color: var(--bone-dim);
  font-style: italic;
  margin-top: 10px;
}
.bio-main {
  border-left: 2px solid var(--midnight-surface);
  padding-left: 32px;
}
.bio-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--bone);
  margin-bottom: 8px;
}
.bio-heading-rule {
  width: 40px;
  height: 2px;
  background: var(--amber);
  margin-bottom: 28px;
  border: none;
}
.bio-main p {
  font-size: 1rem;
  color: var(--bone-soft);
  margin-bottom: 20px;
  line-height: 1.75;
}
.bio-main a,
.bio-continued a {
  color: var(--amber);
  text-decoration: underline;
  text-decoration-color: var(--amber-dim);
  text-underline-offset: 3px;
}
.bio-main a:hover,
.bio-continued a:hover { text-decoration-color: var(--amber); }

/* --- QUOTE BAND --- */
.quote-band {
  background: var(--midnight-light);
  padding: 56px 48px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.quote-text {
  max-width: 580px;
  margin: 0 auto;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--bone);
  line-height: 1.55;
}
.quote-attr {
  font-size: 13px;
  color: var(--bone-dim);
  margin-top: 14px;
  font-style: normal;
}
.quote-rule {
  width: 40px;
  height: 2px;
  background: var(--amber);
  margin: 24px auto 0;
  border: none;
}

/* --- CONTINUED BIO --- */
.bio-continued {
  max-width: 680px;
  margin: 0 auto;
  padding: 64px 48px 80px;
}
.bio-continued p {
  font-size: 1rem;
  color: var(--bone-soft);
  margin-bottom: 20px;
  line-height: 1.75;
}

/* --- PAGE CONTENT (inner pages) --- */
.page-content {
  max-width: 920px;
  margin: 0 auto;
  padding: 48px 48px 80px;
}

/* Section within a page */
.content-section {
  margin-bottom: 56px;
}
.content-section:last-child { margin-bottom: 0; }

.section-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.65rem;
  color: var(--bone);
  width: fit-content;
  border-bottom: 1px solid var(--amber);
  padding-bottom: 6px;
  margin-bottom: 24px;
}
.section-heading-rule {
  display: none;
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 16px;
}

/* Content cards (for items within sections) */
.content-card {
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid var(--amber);
  padding: 24px 24px 24px 20px;
  background: var(--midnight);
  margin-bottom: 16px;
  transition: border-color 0.2s ease;
}
.content-card:hover { border-left-color: var(--amber); border-color: rgba(255,255,255,0.1); }
.content-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--bone);
  margin-bottom: 8px;
}
.content-card p {
  font-size: 14px;
  color: var(--bone-soft);
  line-height: 1.6;
  margin-bottom: 12px;
}
.content-card .card-meta {
  font-size: 12px;
  color: var(--bone-dim);
  font-style: italic;
}

/* Simple card grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.card-grid .content-card { margin-bottom: 0; }

/* Video embed container */
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin-bottom: 16px;
  background: var(--midnight-light);
}
.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* Subtle divider between videos within a block */
.video-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 40px 0;
}

/* Audio + image side-by-side layout */
.audio-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
  align-items: start;
}

/* Custom video thumbnail with play button overlay */
.video-thumbnail {
  position: relative;
  width: 100%;
  cursor: pointer;
  margin-bottom: 16px;
  background: var(--midnight-light);
}
.video-thumbnail img {
  width: 100%;
  display: block;
}
.video-thumbnail .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.video-thumbnail:hover .play-btn {
  background: rgba(0,0,0,0.8);
  border-color: #fff;
  transform: translate(-50%, -50%) scale(1.08);
}
.video-thumbnail .play-btn::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 22px;
  border-color: transparent transparent transparent rgba(255,255,255,0.9);
  margin-left: 4px;
}

/* Video grid — thumbnail gallery with lightbox */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
.video-grid-item {
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}
.video-grid-item .grid-thumb {
  margin-top: auto;
}
.video-grid-item .grid-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--midnight);
}
.video-grid-item .grid-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s;
}
.video-grid-item:hover .grid-thumb img {
  opacity: 0.75;
}
.video-grid-item .grid-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
  pointer-events: none;
}
.video-grid-item:hover .grid-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(0, 0, 0, 0.7);
}
.video-grid-item .grid-play::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 16px;
  border-color: transparent transparent transparent rgba(255,255,255,0.9);
  margin-left: 3px;
}
.video-grid-item .grid-caption {
  font-size: 0.82rem;
  color: var(--bone-soft);
  text-align: center;
  padding: 8px 4px 0;
  line-height: 1.4;
}
.video-grid-item .grid-description {
  color: var(--bone-soft);
  font-size: 0.85rem;
  line-height: 1.55;
  padding: 0 4px 10px;
}
.video-grid-item .grid-description a {
  color: var(--amber);
}
.video-grid-item .grid-audio {
  margin-top: 10px;
  padding: 0 4px;
}
.video-grid-item .grid-audio audio {
  width: 100%;
  height: 36px;
}

/* Video lightbox modal */
.video-lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.video-lightbox-overlay.active {
  display: flex;
}
.video-lightbox-content {
  position: relative;
  width: 100%;
  max-width: 960px;
}
.video-lightbox-content .video-embed {
  margin: 0;
}
.video-lightbox-close {
  position: absolute;
  top: -36px;
  right: 0;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
  font-size: 28px;
  line-height: 1;
  font-family: sans-serif;
  transition: color 0.2s;
}
.video-lightbox-close:hover {
  color: #fff;
}

@media (max-width: 800px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100% !important;
  }
  .video-lightbox-overlay {
    padding: 20px 12px;
  }
}

/* Audio player styling */
.audio-item {
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid var(--amber);
  padding: 20px 24px;
  background: var(--midnight);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.audio-item .audio-info { flex: 1; }
.audio-item .audio-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--bone);
  margin-bottom: 4px;
}
.audio-item .audio-meta {
  font-size: 13px;
  color: var(--bone-dim);
}
.audio-item audio {
  flex-shrink: 0;
  max-width: 260px;
}

/* Album grid */
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}
.album-card {
  background: var(--midnight-light);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.album-card:hover { border-color: var(--amber-dim); }
.album-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.album-card .album-info {
  padding: 16px;
}
.album-card .album-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--bone);
  margin-bottom: 4px;
}
.album-card .album-year {
  font-size: 12px;
  color: var(--bone-dim);
}

/* Album detail cards (audio-jazz.html) */
.album-detail {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 0;
  padding: 32px 0;
  border-bottom: 1px solid var(--amber-dim);
}
.album-detail:first-of-type { padding-top: 0; }
.album-detail:last-of-type { border-bottom: none; padding-bottom: 0; }
.album-detail-cover {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-bottom: 3px solid var(--amber-dim);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.album-detail-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--bone);
  margin-bottom: 2px;
}
.album-detail-meta {
  font-size: 13px;
  color: var(--bone-dim);
  margin-bottom: 10px;
}
.album-detail-desc {
  font-size: 0.92rem;
  color: var(--bone-soft);
  line-height: 1.65;
  margin-bottom: 12px;
}
.album-detail audio {
  max-width: 320px;
  width: 100%;
  height: 36px;
  margin-bottom: 6px;
}
.album-detail .audio-track-label {
  font-size: 12px;
  color: var(--bone-dim);
  margin-bottom: 2px;
}
.streaming-icons {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}
.streaming-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--bone-soft);
  transition: border-color 0.2s, color 0.2s;
}
.streaming-icons a:hover {
  border-color: var(--amber);
  color: var(--amber);
}
.streaming-icons svg { width: 15px; height: 15px; }
.purchase-link,
.about-narrative .purchase-link {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--midnight);
  background: var(--amber);
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.purchase-link:hover,
.about-narrative .purchase-link:hover {
  background: var(--bone);
  color: var(--midnight);
  transform: translateY(-1px);
}
.purchase-link svg {
  width: 13px;
  height: 13px;
  display: inline-block;
  vertical-align: -1px;
  margin-right: 6px;
}
.purchase-note {
  font-size: 12px;
  color: var(--bone-dim);
  margin-top: 6px;
  font-style: italic;
}

/* --- AUDIO PLAYER --- */
.track-entry {
  padding: 28px 24px;
  border-top: 1px solid var(--amber-dim);
}
.track-entry h3 {
  text-align: center;
  margin-bottom: 10px;
}
.track-entry audio {
  display: block;
  max-width: 450px;
  width: 100%;
  height: 36px;
  margin: 10px auto 0;
  border-radius: 4px;
  opacity: 0.85;
}
.track-entry audio:hover {
  opacity: 1;
}
.track-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--amber-dim);
  margin: 24px 0;
}
.track-grid img {
  width: 100%;
  border-bottom: 3px solid var(--amber-dim);
}
.track-grid audio {
  display: block;
  max-width: 320px;
  width: 100%;
  height: 36px;
  margin: 10px auto 0;
  border-radius: 4px;
  opacity: 0.85;
}
.track-grid audio:hover { opacity: 1; }
@media (max-width: 700px) {
  .track-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .track-grid > div {
    width: 100%;
  }
  .track-grid img {
    max-width: 300px;
    width: 100%;
    display: block;
  }
}

/* --- EVENTS --- */
.event-item {
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid var(--amber);
  padding: 28px 28px 28px 24px;
  background: var(--midnight);
  margin-bottom: 16px;
}
.event-date {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 10px;
}
.event-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--bone);
  margin-bottom: 8px;
}
.event-details {
  font-size: 14px;
  color: var(--bone-soft);
  line-height: 1.55;
  margin-bottom: 14px;
}
.event-link {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--amber);
  border-bottom: 1px solid var(--amber-dim);
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}
.event-link:hover { border-color: var(--amber); }

/* Past events (muted) */
.event-item.past {
  border-left-color: var(--bone-dim);
  opacity: 0.65;
}

/* --- NEWSLETTER SIGNUP --- */
.newsletter-box {
  background: var(--midnight-light);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 36px;
  margin: 32px 0;
  text-align: center;
}
.newsletter-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--bone);
  margin-bottom: 12px;
}
.newsletter-box p {
  font-size: 14px;
  color: var(--bone-soft);
  margin-bottom: 20px;
}
.newsletter-box a.btn {
  display: inline-block;
  padding: 12px 32px;
  background: var(--amber);
  color: var(--midnight);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease;
}
.newsletter-box a.btn:hover { background: #d4a84c; }

/* --- PRESS QUOTES --- */
.press-quote {
  border-left: 3px solid var(--amber);
  padding: 20px 24px;
  background: var(--midnight);
  margin-bottom: 16px;
}
.press-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--bone);
  line-height: 1.55;
  margin-bottom: 8px;
}
.press-quote cite {
  font-size: 13px;
  color: var(--bone-dim);
  font-style: normal;
}

/* --- CONTACT FORM --- */
.contact-form {
  max-width: 560px;
}
.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone-dim);
  font-weight: 500;
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  background: var(--midnight-light);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--bone);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  outline: none;
  transition: border-color 0.2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--amber);
}
.contact-form textarea { min-height: 160px; resize: vertical; }
.contact-form button {
  display: inline-block;
  padding: 14px 40px;
  background: var(--amber);
  color: var(--midnight);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}
.contact-form button:hover { background: #d4a84c; }

/* Social links grid */
.social-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.social-links a {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--bone-dim);
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}
.social-links a:hover {
  color: var(--amber);
  border-bottom-color: var(--amber-dim);
}

/* --- FOOTER --- */
footer {
  background: linear-gradient(160deg, var(--midnight) 0%, var(--blue-deep) 40%, var(--blue-mid) 70%, var(--blue-glow) 100%);
  padding: 56px 48px 40px;
  text-align: center;
  color: var(--bone-dim);
  font-size: 13px;
  border-top: 3px solid var(--amber);
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 0%, rgba(46, 79, 128, 0.25) 0%, transparent 60%);
  pointer-events: none;
}
footer .social {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
footer .social a {
  color: var(--bone);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  transition: all 0.25s ease;
  background: rgba(255,255,255,0.04);
}
footer .social a:hover {
  color: var(--amber);
  border-color: var(--amber);
  background: rgba(196, 154, 60, 0.08);
}
footer .social-icons-mobile {
  display: none;
}
footer .social-icons-mobile a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--bone);
  transition: all 0.25s ease;
  background: rgba(255,255,255,0.04);
}
footer .social-icons-mobile a:hover {
  color: var(--amber);
  border-color: var(--amber);
  background: rgba(196, 154, 60, 0.1);
}
footer .social-icons-mobile svg {
  width: 18px;
  height: 18px;
}
footer .copyright {
  margin-top: 28px;
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  position: relative;
  z-index: 1;
}

/* --- ABOUT PAGE SECTIONS --- */
.about-narrative {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 48px;
}
body.blue-wash .about-narrative {
  background: rgba(14,18,30,0.82);
}
.about-narrative .narrative-lead {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--bone);
  line-height: 1.65;
  margin-bottom: 28px;
  font-weight: 400;
}
.about-narrative p {
  font-size: 1rem;
  color: var(--bone-soft);
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-narrative a {
  color: var(--amber);
  text-decoration: underline;
  text-decoration-color: var(--amber-dim);
  text-underline-offset: 3px;
}
.about-narrative a:hover { text-decoration-color: var(--amber); }
.about-narrative .press-pull-quote {
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--bone);
  opacity: 0.85;
  line-height: 1.65;
  margin: 20px 0;
}
.about-narrative .pull-attr {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--amber);
  opacity: 0.8;
}
.about-narrative .self-quote {
  font-style: italic;
  border-left: 3px solid var(--amber);
  padding: 16px 24px;
  margin: 36px 0;
  background: linear-gradient(135deg, rgba(26,46,84,0.25) 0%, rgba(36,61,106,0.15) 100%);
  color: var(--bone);
  font-size: 1.02rem;
  line-height: 1.7;
  clear: both;
}

/* Photo break within about page */
.about-photo-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.about-photo-band img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.about-photo-band .photo-caption-overlay {
  position: relative;
}
.about-photo-band .photo-caption-overlay figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 16px;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
}

/* Blue accent divider band */
.blue-divider {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 50%, var(--blue-glow) 100%);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blue-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(46, 79, 128, 0.3) 0%, transparent 70%);
  pointer-events: none;
}
.blue-divider h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #fff;
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}
.blue-divider .rule {
  width: 50px;
  height: 2px;
  background: var(--amber);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Inline float photos within narrative */
.inline-photo {
  width: 340px;
  margin: 6px 0 20px 32px;
  float: right;
}
.inline-photo.left {
  float: left;
  margin: 6px 32px 20px 0;
}
.inline-photo.large {
  width: 420px;
}
.inline-photo img {
  width: 100%;
  display: block;
  box-shadow: 0 4px 24px rgba(26,46,84,0.5), 0 0 48px rgba(46,79,128,0.2);
}
.inline-photo figcaption {
  font-size: 12.5px;
  color: rgba(200, 192, 180, 0.7);
  font-style: italic;
  padding: 6px 0;
  line-height: 1.4;
}


/* Blue accent section — atmospheric stage-lighting wash */
.blue-accent-section {
  position: relative;
  padding: 44px 48px;
  margin: 24px 0;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
.blue-accent-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 100% at 15% 80%, rgba(26,46,84,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 80% 120% at 85% 20%, rgba(46,79,128,0.3) 0%, transparent 55%),
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(36,61,106,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.blue-accent-section p {
  position: relative;
  font-size: 1rem;
  color: var(--bone-soft);
  line-height: 1.75;
  margin-bottom: 16px;
}
.blue-accent-section p:last-of-type { margin-bottom: 0; }
.blue-accent-section a { color: var(--amber); text-decoration: underline; text-decoration-color: var(--amber-dim); text-underline-offset: 3px; }
.blue-accent-section a:hover { text-decoration-color: var(--amber); }

/* --- PROSE (for writings, blog archive content) --- */
.prose {
  font-size: 1rem;
  color: var(--bone-soft);
  line-height: 1.75;
}
.prose p { margin-bottom: 20px; }
.prose a {
  color: var(--amber);
  text-decoration: underline;
  text-decoration-color: var(--amber-dim);
  text-underline-offset: 3px;
}
.prose a:hover { text-decoration-color: var(--amber); }
.prose h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--bone);
  margin: 32px 0 12px;
}
.prose ul, .prose ol {
  margin: 0 0 20px 24px;
  color: var(--bone-soft);
}
.prose li { margin-bottom: 6px; }

/* --- RESPONSIVE --- */
@media (max-width: 800px) {
  header {
    padding: 18px 20px;
    flex-wrap: wrap;
  }
  .header-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 14px;
    text-align: center;
  }
  .header-nav.open { display: flex; }
  .header-nav > a,
  .header-nav > .nav-dropdown > a {
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    display: block;
  }
  .nav-dropdown > a::after { content: ' ▾'; font-size: 9px; opacity: 0.5; }
  .nav-dropdown-menu {
    position: static;
    display: none;
    padding-top: 0;
  }
  .nav-dropdown-menu ul {
    background: transparent;
    border: none;
    box-shadow: none;
    min-width: 0;
  }
  .nav-dropdown-menu li a {
    padding: 8px 0 8px 20px;
    font-size: 12px;
    color: var(--bone-dim);
    border-bottom: 1px solid rgba(255,255,255,0.03);
  }
  .nav-dropdown-menu li a:hover { padding-left: 24px; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .menu-toggle { display: block; }
  .nav-social {
    display: flex;
    justify-content: center;
    padding: 16px 0 10px;
    margin-top: 10px;
    gap: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
    width: 100%;
  }
  .nav-social a { width: 36px; height: 36px; color: var(--bone-dim); }
  .nav-social svg { width: 15px; height: 15px; }

  .hero { padding: 0 24px 36px; aspect-ratio: 3 / 4; max-height: 70vh; }
  .hero::before {
    background: linear-gradient(to top, rgba(20,24,38,0.85) 0%, rgba(20,24,38,0.5) 40%, rgba(20,24,38,0.15) 70%, transparent 100%);
  }
  .hero-content { max-width: 100%; }
  .hero-name { font-size: 2.4rem; }
  .hero-quote { font-size: 0.85rem; margin-top: 16px; max-width: 320px; }
  .hero-quote-attr { font-size: 10px; }

  .page-hero { padding: 48px 24px 36px; }

  .press-quote-band { padding: 40px 24px; }
  .featured-band { padding: 40px 20px; }
  .featured-inner { grid-template-columns: 1fr; }

  .intro-section { padding: 48px 24px; }

  .bio-section {
    padding: 48px 20px;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .bio-sidebar { max-width: 240px; }
  .bio-main {
    border-left: 2px solid var(--midnight-surface);
    padding-left: 20px;
  }

  .quote-band { padding: 40px 20px; }
  .bio-continued { padding: 48px 20px 56px; }

  .page-content { padding: 36px 20px 56px; }

  .card-grid { grid-template-columns: 1fr; }
  .album-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }

  .audio-item { flex-direction: column; align-items: flex-start; }
  .audio-photo-grid { grid-template-columns: 1fr; }
  .audio-item audio { max-width: 100%; width: 100%; }

  .about-narrative { padding: 48px 20px; }
  .about-photo-band { grid-template-columns: 1fr; }
  .about-photo-band img { height: 220px; }
  .blue-divider { padding: 36px 24px; }
  .inline-photo,
  .inline-photo.large {
    float: none;
    width: 100%;
    margin: 20px 0;
  }
  .inline-photo.left { float: none; margin: 20px 0; }
  .blue-accent-section { padding: 32px 20px; }

  footer { padding: 40px 20px 32px; }
  footer .social { display: none; }
  footer .social-icons-mobile {
    display: flex;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
  }
  footer .social-icons-mobile a { width: 38px; height: 38px; }
  footer .social-icons-mobile svg { width: 16px; height: 16px; }

  .section-heading { font-size: 1.45rem; }

  .album-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .album-detail-cover {
    max-width: 260px;
    width: 100%;
    display: block;
  }
  .album-detail-info {
    width: 100%;
  }
  .album-detail audio { display: block; max-width: 100%; margin: 10px auto 0; }
  .album-detail-info h3 { font-size: 1rem; }
  .album-detail-desc { text-align: left; }
  .album-detail .audio-track-label { text-align: center; }
  .streaming-icons { justify-content: center; }
  .purchase-link { display: inline-block; }

  .track-entry audio,
  .track-grid audio { max-width: 100%; }

  .track-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .track-grid > div {
    width: 100%;
  }
  .track-grid img {
    max-width: 300px;
    width: 100%;
    display: block;
  }
}
