/* ============================================
   Johnny Hayes Music — JohnnyHayes.com
   Americana Edition
   ============================================ */

:root {
  --color-bg: #faf6f0;
  --color-bg-alt: #f0e9dd;
  --color-bg-card: #ffffff;
  --color-bg-dark: #2c1810;
  --color-text: #2c1810;
  --color-text-muted: #7a6652;
  --color-accent: #b8860b;
  --color-accent-hover: #d4a017;
  --color-accent-light: rgba(184, 134, 11, 0.1);
  --color-border: #d4c5a9;
  --color-border-light: #e8dcc8;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent-hover);
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Navigation ---- */

#navbar {
  position: relative;
  z-index: 1000;
  background: var(--color-bg-dark);
  border-bottom: 2px solid var(--color-accent);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: #faf6f0;
  letter-spacing: 0.05em;
}

.nav-logo:hover {
  color: var(--color-accent);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: #c4b69c;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: #faf6f0;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #faf6f0;
  transition: var(--transition);
}

/* ---- Hero Nav (inline nav below title) ---- */

.hero-nav {
  margin: 8px 0 16px;
}

.hero-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.hero-nav a {
  color: #c4b69c;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--transition);
  text-decoration: none;
}

.hero-nav a:hover,
.hero-nav a.active {
  color: #faf6f0;
}

/* ---- Hero ---- */

#hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(135deg,
      rgba(44, 24, 16, 0.92) 0%,
      rgba(62, 38, 20, 0.88) 40%,
      rgba(44, 24, 16, 0.94) 100%
    ),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><circle cx="50" cy="50" r="1" fill="rgba(184,134,11,0.08)"/></svg>');
  background-color: #2c1810;
}

.hero-compact {
  min-height: 220px;
  padding: 60px 0 40px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(184, 134, 11, 0.12) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 24px 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  overflow: visible;
  color: #faf6f0;
}

.hero-tagline {
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c4b69c;
  margin-bottom: 40px;
}

.hero-announcement {
  text-align: center;
}

.announcement-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(184, 134, 11, 0.15);
  border: 1px solid rgba(184, 134, 11, 0.4);
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.announcement-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 24px;
  color: #faf6f0;
}

.announcement-artwork {
  max-width: 400px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(184, 134, 11, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.announcement-artwork .album-cover {
  display: block;
  width: 100%;
  height: auto;
}

.announcement-artwork .album-cover.framed {
  border: 4px solid var(--color-accent);
  box-shadow: 0 0 0 8px rgba(44, 24, 16, 0.6), 0 4px 24px rgba(0, 0, 0, 0.4);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #c4b69c;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #c4b69c, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ---- Hero Split Layout ---- */

.hero-split {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

/* Title row: name + tagline centered above the panels */
.hero-title-row {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}

/* Panels row: album left, shows right — symmetric */
.hero-panels-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 48px;
  width: 100%;
}

.hero-left {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  text-align: center;
}

.hero-right {
  flex: 0 0 640px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: stretch;
}

.hero-right .hero-shows-panel {
  flex: 1 1 0;
  min-width: 0;
}

/* Shrink the album artwork in split mode */
.hero-split .announcement-artwork {
  max-width: 280px;
}

/* Album panel — mirrors the visual weight of the shows panel */
.hero-album-panel {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(184, 134, 11, 0.3);
  border-radius: 10px;
  padding: 24px;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero compact shows panel — fills full height of the right flex column */
.hero-shows-panel {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(184, 134, 11, 0.3);
  border-radius: 10px;
  padding: 20px 24px;
  backdrop-filter: blur(4px);
}

.hero-shows-header {
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(184, 134, 11, 0.25);
  padding-bottom: 10px;
}

.hero-shows-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.05em;
}

.hero-shows-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-shows-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  line-height: 1.3;
}

.hero-shows-list li:last-child {
  border-bottom: none;
}

.hs-date {
  flex: 0 0 36px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  text-transform: uppercase;
  white-space: nowrap;
}

.hs-venue {
  flex: 1;
  color: #e8dcc8;
  font-size: 0.8rem;
}

.hs-venue em {
  font-style: normal;
  font-size: 0.7rem;
  color: #9a8a72;
  margin-left: 4px;
}

.hs-time {
  flex: 0 0 auto;
  font-size: 0.7rem;
  color: #9a8a72;
  white-space: nowrap;
}

.hero-shows-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  opacity: 0.8;
  transition: opacity var(--transition);
}

.hero-shows-more:hover {
  opacity: 1;
  color: var(--color-accent-hover);
}

/* Stack panels on mobile */
@media (max-width: 900px) {
  .hero-panels-row {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  .hero-left {
    width: 100%;
    max-width: 340px;
  }

  .hero-right {
    width: 100%;
    max-width: 420px;
    flex-direction: column;
    gap: 24px;
  }

  .hero-split .announcement-artwork {
    max-width: 240px;
  }
}

/* ---- Buttons ---- */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.8rem;
}

/* ---- Section Headers ---- */

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text);
}

/* ---- Decorative dividers ---- */

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--color-accent);
  margin: 16px auto 0;
}

/* ---- Bio Page ---- */

.bio-page {
  padding: 120px 0 80px;
  background: var(--color-bg);
}

/* ---- About ---- */

#about {
  padding: 120px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: start;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.about-lead {
  font-size: 1.15rem !important;
  color: var(--color-text) !important;
  font-weight: 400;
}

.about-accolades {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accolade {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--color-bg-card);
  border-radius: 8px;
  border: 1px solid var(--color-border-light);
  box-shadow: 0 2px 8px rgba(44, 24, 16, 0.06);
}

.accolade-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.accolade strong {
  display: block;
  color: var(--color-text);
  font-size: 0.9rem;
}

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

.about-image {
  position: sticky;
  top: 100px;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(44, 24, 16, 0.15);
}

.placeholder-text {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-text-muted);
  border-left: 3px solid var(--color-accent);
  padding-left: 20px;
  line-height: 1.7;
}

.about-quote cite {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--color-accent);
}

/* ---- New Release ---- */

#new-release {
  padding: 80px 0;
  background: var(--color-bg-alt);
}

.release-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 48px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(44, 24, 16, 0.08);
}

.release-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.release-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.release-desc {
  color: var(--color-text-muted);
  max-width: 500px;
  margin-bottom: 24px;
}

.album-art-placeholder {
  width: 240px;
  height: 240px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-text-muted);
}

/* ---- Music ---- */

#music {
  padding: 120px 0;
  background: var(--color-bg);
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.music-card {
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(44, 24, 16, 0.06);
}

.music-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  box-shadow: 0 12px 40px rgba(184, 134, 11, 0.12);
}

.music-card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.music-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.music-card:hover .music-card-thumb img {
  transform: scale(1.05);
}

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44, 24, 16, 0.5);
  opacity: 0;
  transition: opacity var(--transition);
}

.music-card:hover .play-btn {
  opacity: 1;
}

.play-btn svg {
  width: 40px;
  height: 40px;
  color: #fff;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.music-card-info {
  padding: 16px;
}

.music-card-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--color-text);
}

.music-card-info p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.spotify-section {
  text-align: center;
}

.spotify-section h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--color-text);
}

/* ---- Video Modal ---- */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(44, 24, 16, 0.92);
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #faf6f0;
  font-size: 2rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

.modal-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.modal-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* ---- Videos ---- */

#videos {
  padding: 120px 0;
  background: var(--color-bg-alt);
}

.video-grid-uniform {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1000px;
  margin: 0 auto;
}

.video-featured {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-accent-light);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.video-featured-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 16px;
  line-height: 1.3;
}

.video-featured-info p {
  color: var(--color-text-muted);
  line-height: 1.7;
}

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

.video-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  overflow: hidden;
}

.video-card h4 {
  padding: 12px 16px;
  font-size: 0.85rem;
  font-weight: 500;
}

.video-more {
  text-align: center;
  margin-top: 48px;
}

/* ---- Shows ---- */

#shows {
  padding: 120px 0;
}

.shows-list {
  max-width: 700px;
  margin: 0 auto 48px;
}

.show-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border-light);
}

.show-item:first-child {
  border-top: 1px solid var(--color-border-light);
}

.show-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.show-month {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
}

.show-day {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.show-info {
  flex: 1;
}

.show-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

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

.show-time {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.shows-cta {
  text-align: center;
}

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

/* ---- Contact ---- */

#contact {
  padding: 120px 0;
  background: var(--color-bg-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-booking h3,
.contact-social h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.booking-company {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 8px;
}

.contact-booking p {
  margin-bottom: 8px;
  color: var(--color-text-muted);
}

.contact-booking .btn {
  margin-top: 16px;
}

.hero-social {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  margin: 0 0 24px;
  flex-wrap: wrap;
}

.hero-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.hero-social-link svg {
  width: 20px;
  height: 20px;
}

.hero-social-link:hover {
  color: var(--color-accent);
}

.hero-social-icons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 12px;
  flex-wrap: wrap;
}

.hero-social-icons .social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.8);
}

.hero-social-icons .social-link svg {
  width: 16px;
  height: 16px;
}

.hero-social-icons .social-link:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.social-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.social-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-text-muted);
  transition: all var(--transition);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ---- Footer ---- */

footer {
  padding: 32px 0;
  background: var(--color-bg-dark);
  text-align: center;
}

footer p {
  font-size: 0.8rem;
  color: #c4b69c;
}

/* ---- Press Quote ---- */

.press-quote-section {
  padding: 80px 0;
  background: var(--color-bg-alt);
  text-align: center;
}

.press-quote {
  max-width: 700px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text);
}

.press-quote cite {
  display: block;
  margin-top: 16px;
  font-size: 0.9rem;
  font-style: normal;
  color: var(--color-accent);
  font-family: var(--font-body);
}

/* ---- Responsive ---- */

@media (max-width: 1024px) {
  .music-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-grid-uniform {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(44, 24, 16, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 2px solid var(--color-accent);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

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

  .about-image {
    position: static;
    order: -1;
  }

  .about-photo {
    aspect-ratio: 3/4;
    max-width: 280px;
    margin: 0 auto 24px;
  }

  .bio-page {
    padding: 80px 0 60px;
  }

  .bio-page .section-header {
    margin-bottom: 40px;
  }

  .about-quote {
    font-size: 1rem;
    padding-left: 16px;
  }

  .accolade {
    padding: 12px 16px;
  }

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

  .video-grid {
    grid-template-columns: 1fr;
  }

  .release-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
  }

  .release-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .album-art-placeholder {
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .music-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .hero-content {
    padding: 24px 16px 0;
  }

  .announcement-artwork {
    max-width: 280px;
  }

  #music {
    padding: 80px 0;
  }

  #contact {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .social-links {
    justify-content: center;
  }

  .social-link {
    width: 44px;
    height: 44px;
  }

  .spotify-section iframe {
    height: 280px;
  }

  .press-quote {
    font-size: 1.2rem;
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .music-grid {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    flex-direction: column;
    gap: 8px;
  }

  .show-item {
    flex-wrap: wrap;
    gap: 12px;
  }

  .show-time {
    width: 100%;
    padding-left: 84px;
  }
}

.hero-tip {
  text-align: center;
  margin: -8px 0 24px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.hero-tip a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 1px;
  transition: color var(--transition), border-color var(--transition);
}

.hero-tip a:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

/* Featured Interview */
.hero-interview {
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
}
.interview-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  margin-top: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.interview-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}
.interview-caption {
  margin-top: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
}
