/* ============================================================
   EVENING RADIO — FULL CSS
   ============================================================ */

:root {
  --black: #070707;
  --dark: #0b0b0b;
  --surface: #111111;
  --surface2: #161616;
  --border: rgba(255,255,255,0.065);
  --red-bright: #d43040;
  --blue-bright: #2a6ad0;
  --offwhite: #e8e8e8;
  --text: #a0a0a0;
  --muted: #7a7a7a;
  --font: 'Quicksand', 'Century Gothic', 'Poppins', sans-serif;
  --r: 2px;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;

  --section-y: 4rem;
  --section-y-mobile: 2rem;
  --section-header-gap: 1.35rem;
  --section-header-gap-mobile: 1rem;
  --content-inline: 5vw;
  --nav-height: 64px;
}

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

html { scroll-behavior: smooth; font-size: 100%; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 65% 55% at 0% 70%, rgba(30,80,160,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 55% 45% at 100% 30%, rgba(192,37,53,0.09) 0%, transparent 60%);
}

/* Anchor targets should not hide under the sticky nav */
section[id], div[id] { scroll-margin-top: var(--nav-height); }

/* ============================================================
   Nav
   ============================================================ */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #070707;
  border-bottom: 1px solid var(--border);
}

.site-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--content-inline);
  position: relative;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.site-nav-links a {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--offwhite);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.18s, border-color 0.18s;
}

.site-nav-links a:hover {
  color: var(--red-bright);
  border-color: var(--red-bright);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle .bar {
  width: 100%;
  height: 2px;
  background: var(--offwhite);
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .site-nav-links {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #070707;
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
  }

  .site-nav-links.is-open { max-height: 400px; }

  .site-nav-links a {
    width: 100%;
    padding: 0.9rem var(--content-inline);
    border-bottom: 1px solid var(--border);
  }
}

/* ============================================================
   Buttons
   ============================================================ */

.btn-primary,
.btn-ghost {
  font-family: var(--font);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r);
  transition: background 0.22s, transform 0.15s, color 0.22s, border-color 0.22s;
  white-space: nowrap;
}

.btn-primary {
  font-weight: 600;
  padding: 0.9rem 1.35rem;
  background: var(--blue-bright);
  color: var(--offwhite);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #3278e0;
  transform: translateY(-1px);
}

.btn-primary.red { background: var(--red-bright); }
.btn-primary.red:hover { background: #e03848; }

.btn-ghost {
  font-weight: 500;
  padding: 0.88rem 1.35rem;
  color: rgba(232,232,232,0.82);
  border: 1px solid rgba(232,232,232,0.24);
  background: none;
}

.btn-ghost:hover {
  color: var(--offwhite);
  border-color: rgba(232,232,232,0.5);
}

/* ============================================================
   Sections
   ============================================================ */

.section,
.about-section,
#videos,
.photos-section,
#contact {
  margin: 0;
  padding-left: var(--content-inline);
  padding-right: var(--content-inline);
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.section-header { margin-bottom: var(--section-header-gap); }

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(42,106,208,0.85);
}

.section-eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: rgba(42,106,208,0.55);
}

.section-title {
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--offwhite);
}

hr.rule {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border) 15%, var(--border) 85%, transparent);
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-bottom: 5rem;
  height: calc(82vh - 60px);
  min-height: 600px;
  max-height: 820px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-video-wrap video {
  position: absolute;
  top: 65%;
  left: 50%;
  width: 100%;
  height: 140%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  filter: brightness(0.6) saturate(0) contrast(1.1);
  will-change: transform;
}

.hero-fade-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30%;
  z-index: 2;
  background: linear-gradient(to top, #070707 0%, transparent 100%);
}

.hero-fade-top {
  position: absolute;
  top: -120px;
  left: 0;
  right: 0;
  height: calc(35% + 120px);
  z-index: 2;
  background: linear-gradient(to bottom, #070707 0%, transparent 100%);
}

.hero-fade-left {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to right, rgba(7,7,7,0.42) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 900px;
  padding: 10vh var(--content-inline) 8.5vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.9rem;
}

.hero-logo {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  margin-bottom: 0;
  filter: brightness(0.9) drop-shadow(0 0 20px rgba(255,255,255,0.08));
  mix-blend-mode: screen;
}

.hero-tagline {
  margin-top: 0;
  max-width: 30rem;
  font-weight: 550;
  font-size: 1rem;
  line-height: 1.8;
  color: #999;
}

.hero-actions {
  margin-top: 0.55rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.hero-actions .btn-primary,
.hero-actions .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: auto;
  min-width: 150px;
  max-width: 190px;
  min-height: 40px;
  height: 40px;
  padding: 0 1rem;
  line-height: 1;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.56rem;
  letter-spacing: 0.18em;
}

.hero-actions .btn-primary {
  background: var(--blue-bright);
  color: var(--offwhite);
  border: none;
}

.hero-actions .btn-ghost {
  background: rgba(255,255,255,0.05);
  color: rgba(232,232,232,0.72);
  border: 1px solid rgba(232,232,232,0.22);
}

.hero-actions .btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--offwhite);
  border-color: rgba(232,232,232,0.4);
}

/* ============================================================
   About
   ============================================================ */

.about-section {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--black);
}

.about-row {
  display: flex;
  align-items: stretch;
  min-height: 620px;
  max-width: 1080px;
  margin: 0 auto;
}

.about-bio-panel {
  position: relative;
  z-index: 2;
  flex: 0 0 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.8rem 2rem;
  border-right: 1px solid var(--border);
  background: var(--black);
}

.about-bio-panel .section-title {
  margin-bottom: 0.8rem;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

.about-bio-copy {
  font-size: 1rem;
  line-height: 1.95;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.about-accordion {
  display: flex;
  overflow: hidden;
  flex: 1;
  min-height: 620px;
}

.about-panel {
  position: relative;
  flex: 1;
  min-width: 0;
  min-height: 620px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.52s cubic-bezier(0.4,0,0.2,1);
}

.about-accordion:hover .about-panel,
.about-accordion.has-active .about-panel:not(.is-active) {
  flex: 0.38;
}

.about-accordion:hover .about-panel:hover,
.about-panel.is-active {
  flex: 3.2;
}

.panel-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  filter: brightness(0.42) saturate(0.35);
  transition: filter 0.5s, transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.about-panel:hover .panel-img,
.about-panel.is-active .panel-img {
  filter: brightness(0.9) saturate(0.5);
  transform: scale(1.04);
}

.about-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(7,7,7,0.94) 0%, rgba(7,7,7,0.14) 42%, transparent 100%);
}

.about-panel:nth-child(1) .panel-img { background-color: #120909; }
.about-panel:nth-child(2) .panel-img { background-color: #090c14; }
.about-panel:nth-child(3) .panel-img { background-color: #110809; }
.about-panel:nth-child(4) .panel-img { background-color: #080b12; }
.about-panel:nth-child(5) .panel-img { background-color: #110809; }

.panel-label-vert {
  position: absolute;
  left: 50%;
  bottom: 3.5rem;
  z-index: 3;
  transform: translateX(-50%) rotate(-90deg);
  white-space: nowrap;
  font-weight: 600;
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(232,232,232,0.24);
  transition: opacity 0.22s;
}

.about-panel:hover .panel-label-vert,
.about-panel.is-active .panel-label-vert {
  opacity: 0;
}

.panel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 2rem 1.8rem 1.8rem;
  transform: translateY(10px);
  opacity: 0;
  transition: opacity 0.3s 0.08s, transform 0.36s 0.08s;
}

.about-panel:hover .panel-caption,
.about-panel.is-active .panel-caption {
  opacity: 1;
  transform: translateY(0);
}

.panel-caption-name {
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: 0.03em;
  color: var(--offwhite);
}

.panel-caption-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.panel-role-tag {
  color: rgba(42,96,184,0.9);
  background: rgba(30,74,138,0.18);
  border: 1px solid rgba(30,74,138,0.4);
  border-radius: var(--r);
  padding: 2px 8px;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   Music
   ============================================================ */

#music { background: var(--black); }

.player-wrap { max-width: 1080px; margin: 0 auto; }

.tracklist {
  overflow: hidden;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--r) var(--r);
}

.track-row {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 2.4rem 1fr auto;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  cursor: pointer;
  transition: background 0.18s;
}

.track-row:last-child { border-bottom: none; }
.track-row:hover { background: rgba(255,255,255,0.025); }
.track-row.is-active { background: rgba(30,80,160,0.1); }

.track-row.is-active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--blue-bright);
}

.track-num {
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--muted);
  text-align: center;
}

.track-num .t-idx { display: block; }
.track-num .t-play { display: none; color: var(--blue-bright); }
.track-row.is-active .t-idx { display: none; }
.track-row.is-active .t-play { display: block; }

.track-name-col { min-width: 0; }

.track-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--offwhite);
}

.track-row.is-active .track-name { color: rgba(80,140,220,0.95); }

.track-tag {
  margin-top: 0.1rem;
  font-size: 0.56rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.track-dur {
  white-space: nowrap;
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.player-bar {
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--border);
  border-bottom: 1px solid rgba(42,106,208,0.2);
  border-radius: var(--r) var(--r) 0 0;
  background: var(--surface);
}

.player-now {
  margin-bottom: 0.3rem;
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(42,106,208,0.75);
}

.player-title {
  margin-bottom: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--offwhite);
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.p-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: none;
  color: var(--offwhite);
  cursor: pointer;
  flex-shrink: 0;
  transition: color 0.18s, transform 0.14s;
}

.p-btn:hover {
  color: var(--blue-bright);
  transform: scale(1.1);
}

.p-play {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue-bright);
  color: var(--offwhite);
}

.p-play:hover {
  background: #3278e0;
  transform: scale(1.06);
}

.p-progress-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.p-progress,
.p-vol {
  width: 100%;
  height: 2px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r);
  outline: none;
}

.p-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 11px;
  height: 11px;
  margin-top: -4.5px;
  border-radius: 50%;
  background: var(--blue-bright);
  cursor: pointer;
}

.p-progress::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--blue-bright);
  border: none;
  cursor: pointer;
}

.p-times {
  display: flex;
  justify-content: space-between;
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.p-vol-wrap {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.p-vol { width: 60px; }

.p-vol::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
  cursor: pointer;
}

.p-vol::-moz-range-thumb {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
  border: none;
  cursor: pointer;
}

/* ============================================================
   Videos
   ============================================================ */

#videos {
  background: var(--black);
  border-top: 1px solid var(--border);
}

.video-feature-meta {
  padding: 1.1rem 0 0;
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.video-feature-title {
  flex: 1;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--offwhite);
}

.video-theater {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 1080px;
  margin: 0 auto;
}

.video-theater-main { width: 100%; min-width: 0; }

.video-theater-main .video-embed {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--r);
}

.video-theater-main .video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-theater-queue-wrap { position: relative; }

.video-theater-queue-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0.25rem;
  width: 60px;
  pointer-events: none;
  background: linear-gradient(to right, transparent, var(--black));
}

.video-theater-queue {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}

.video-theater-queue::-webkit-scrollbar { display: none; }

.video-queue-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 160px;
  padding: 0.4rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--dark);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.video-queue-item:hover {
  border-color: rgba(42,106,208,0.35);
  background: var(--surface);
  transform: translateY(-2px);
}

.video-queue-item.is-active {
  border-color: rgba(42,106,208,0.5);
  background: rgba(30,80,160,0.1);
}

.video-queue-item img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 1px;
  flex-shrink: 0;
}

.video-queue-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--offwhite);
  letter-spacing: 0.03em;
  line-height: 1.3;
}

/* ============================================================
   Photos
   ============================================================ */

.photos-section {
  background: var(--black);
  border-top: 1px solid var(--border);
}

.photo-accordion {
  display: flex;
  overflow: hidden;
  height: 500px;
  max-width: 1080px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--r);
}

.photo-panel {
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.52s cubic-bezier(0.4,0,0.2,1);
}

.photo-accordion:hover .photo-panel,
.photo-accordion.has-active .photo-panel:not(.is-active) {
  flex: 0.2;
}

.photo-accordion:hover .photo-panel:hover,
.photo-panel.is-active {
  flex: 5;
}

.photo-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  filter: brightness(0.55) saturate(0.3) contrast(1.05);
  transition: filter 0.5s, transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.photo-panel:hover .photo-img,
.photo-panel.is-active .photo-img {
  filter: brightness(0.88) saturate(0.5) contrast(1.06);
  transform: scale(1.04);
}

.photo-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(7,7,7,0.85) 0%, rgba(7,7,7,0.1) 40%, transparent 100%);
}

.photo-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.2rem;
  z-index: 2;
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(232,232,232,0.7);
  transition: opacity 0.3s 0.08s, transform 0.3s 0.08s;
}

.photo-panel:hover .photo-caption,
.photo-panel.is-active .photo-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Merch
   ============================================================ */

#merch { background: var(--black); padding: 64px 20px; }

.merch-inner { max-width: 1080px; margin: 0 auto; }

.merch-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  margin-top: 28px;
}

.merch-card {
  text-decoration: none;
  color: inherit;
  display: block;
  background: #151517;
  border: 1px solid #232326;
  border-radius: 6px;
  overflow: hidden;
  transition: border-color .2s ease, transform .15s ease;
}

.merch-card:hover {
  border-color: #4a4a4f;
  transform: translateY(-2px);
}

.merch-card-img {
  aspect-ratio: 1;
  background: #1b1b1e;
  overflow: hidden;
}

.merch-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.merch-card-body { padding: 16px 18px 20px; }

.merch-card-title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
  color: #f4f3ef;
}

.merch-card-variants {
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.45;
  color: #8a8a8f;
}

.merch-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.merch-card-price {
  font-size: 15px;
  font-weight: 600;
  color: #f4f3ef;
}

.merch-card-buy {
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #f4f3ef;
  border: 1px solid #3a3a3e;
  border-radius: 4px;
  padding: 7px 12px;
}

@media (max-width: 860px) {
  .merch-grid { grid-template-columns: repeat(2,1fr); gap: 18px; }
}

@media (max-width: 560px) {
  #merch { padding: 48px 16px; }
  .merch-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ============================================================
   Contact
   ============================================================ */

#contact {
  position: relative;
  overflow: hidden;
  background: var(--black);
  border-top: 1px solid var(--border);
  text-align: center;
}

#contact::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(30,80,160,0.07) 0%, transparent 65%);
  pointer-events: none;
}

#contact::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(42,106,208,0.3) 30%, rgba(192,37,53,0.3) 70%, transparent);
}

#contact .section-eyebrow { justify-content: center; }
#contact .section-eyebrow::before { display: none; }
#contact .section-title { margin: 0.2rem 0 0.6rem; }

.contact-desc {
  max-width: 500px;
  margin: 0 auto 1.2rem;
  font-size: 1rem;
  line-height: 1.95;
  color: var(--text);
}

.contact-email-link {
  display: inline-block;
  margin-bottom: 1.2rem;
  padding-bottom: 3px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(122,122,122,0.3);
  transition: color 0.2s, border-color 0.2s;
}

.contact-email-link:hover {
  color: var(--text);
  border-color: rgba(122,122,122,0.55);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 1.8rem var(--content-inline);
  border-top: 1px solid var(--border);
  background: var(--black);
}

.footer-logo {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
}

.footer-copy {
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
}


/* ============================================================
   Kartra visual match + section alignment overrides
   ============================================================ */

:root {
  --section-max: 1080px;
}

/* Keep all post-hero sections on the same black base */
.about-section,
.section,
#music,
#photos,
#videos,
#merch,
#contact {
  background: var(--black);
}

/* Music / Photos / Videos headings and content align to Merch */
#music,
#photos,
#videos {
  padding-left: 20px;
  padding-right: 20px;
}

#music > .section-header,
#photos > .section-header,
#videos > .section-header,
#merch .section-header,
#contact > .section-header {
  max-width: var(--section-max);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--section-header-gap);
}

#music .player-wrap,
#photos .photo-accordion,
#videos .video-theater,
#merch .merch-inner {
  max-width: var(--section-max);
  margin-left: auto;
  margin-right: auto;
}

/* Desktop nav stays centered, but matches the larger live Kartra typography */
.site-nav-inner {
  justify-content: center;
}

.site-nav-links a {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

/* Section headings: larger visual scale like live Kartra */
.section-title,
.about-bio-panel .section-title {
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.03em;
}

/* About copy: live Kartra uses much larger readable copy */
.about-bio-copy {
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  line-height: 1.95;
  letter-spacing: 0.01em;
}

.about-bio-panel {
  flex: 0 0 430px;
}

/* Supporting readable copy */
.hero-tagline,
.contact-desc {
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  line-height: 1.8;
}

/* Buttons */
.btn-primary,
.btn-ghost {
  font-size: 0.82rem;
}

.hero-actions .btn-primary,
.hero-actions .btn-ghost {
  font-size: 0.78rem;
}

/* Music */
.player-now {
  font-size: 0.72rem;
}

.player-title {
  font-size: 1.35rem;
}

.track-name {
  font-size: 1.2rem;
}

.track-tag,
.track-dur,
.track-num,
.p-times {
  font-size: 0.82rem;
}

/* Videos */
.video-feature-title {
  font-size: 1.3rem;
}

.video-queue-title {
  font-size: 0.95rem;
}

/* Photos */
.photo-caption {
  font-size: 0.85rem;
}

/* About panels */
.panel-label-vert {
  font-size: 0.72rem;
}

.panel-caption-name {
  font-size: 1.4rem;
}

.panel-role-tag {
  font-size: 0.76rem;
}

/* Merch / footer readable scale */
.merch-card-title,
.merch-card-price {
  font-size: 1rem;
}

.merch-card-variants,
.merch-card-buy {
  font-size: 0.82rem;
}

.contact-email-link {
  font-size: 1rem;
}

.footer-logo {
  font-size: 1.05rem;
}

.footer-copy {
  font-size: 0.78rem;
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 900px) {
  .about-row { flex-direction: column; min-height: 0; }

  .about-bio-panel {
    flex: none;
    padding: 1.4rem 1.4rem 1.25rem;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .about-accordion, .about-panel { min-height: 420px; }
}

@media (max-width: 768px) {
  :root {
    --content-inline: 1.05rem;
    --section-y: var(--section-y-mobile);
    --section-header-gap: var(--section-header-gap-mobile);
  }

  .hero {
    height: auto;
    min-height: 420px;
    max-height: none;
    margin-bottom: 3rem;
    padding-top: 0;
    padding-bottom: 1rem;
    overflow: hidden;
  }

  .hero-content { padding: 0.8rem var(--content-inline) 1.4rem; gap: 1.5rem; }
  .hero-logo { max-width: 160px; margin-bottom: 0; }
  .hero-tagline { max-width: 26rem; margin-top: 0; font-size: 1rem; line-height: 1.65; }
  .hero-actions { margin-top: 0.4rem; flex-direction: row; gap: 1rem; width: 100%; }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    min-width: 145px;
    max-width: 180px;
    min-height: 38px;
    height: 38px;
    font-size: 0.75rem;
    letter-spacing: 0.17em;
  }

  .hero-fade-top { top: 0; height: 22%; }
  .hero-video-wrap video { top: 55%; width: 145%; height: 100%; animation: none; }
  .hero-video-wrap video.is-playing { animation: heropan 15s ease-in-out infinite alternate; }

  .section, .about-section, #contact, #videos, .photos-section {
    padding-top: var(--section-y);
    padding-bottom: var(--section-y);
  }

  .section-header { margin-bottom: var(--section-header-gap); }
  .section-title, .about-bio-panel .section-title { font-size: clamp(1.2rem, 6vw, 1.7rem); }
  .section-eyebrow { font-size: 0.52rem; letter-spacing: 0.34em; gap: 0.55rem; }
  .section-eyebrow::before { width: 14px; }

  .about-bio-panel { padding: 1rem 1rem 0.95rem; }
  .about-bio-copy, .contact-desc { margin-bottom: 0.7rem; font-size: 1rem; line-height: 1.75; }
  .about-accordion, .about-panel { min-height: 250px; }
  .panel-caption { padding: 1rem 0.9rem 0.9rem; }
  .panel-caption-name { margin-bottom: 0.25rem; font-size: 0.96rem; }
  .panel-label-vert { bottom: 2rem; font-size: 0.45rem; letter-spacing: 0.28em; }

  .photo-accordion, .photo-panel { min-height: 240px; height: 240px; }
  .photo-caption { bottom: 0.75rem; font-size: 0.5rem; letter-spacing: 0.28em; }

  .video-theater { gap: 0.75rem; }
  .video-theater-main .video-embed { min-height: 175px; }
  .video-feature-meta { padding-top: 0.8rem; gap: 0.45rem; }
  .video-feature-title { font-size: 1rem; }
  .video-queue-item { min-width: 160px; padding: 0.45rem; }
  .video-queue-title { font-size: 0.72rem; }

  .track-row { grid-template-columns: 2rem 1fr auto; gap: 0.55rem; padding: 0.95rem 0.85rem; }
  .track-name { font-size: 0.95rem; }
  .track-tag, .track-dur, .track-num { font-size: 0.52rem; }
  .player-bar { padding: 1rem 0.9rem; }
  .player-title { font-size: 1rem; margin-bottom: 0.8rem; }
  .p-vol-wrap { display: none; }

  #contact {
    padding-top: var(--section-y);
    padding-bottom: var(--section-y);
    padding-left: var(--content-inline);
    padding-right: var(--content-inline);
  }

  .contact-email-link { font-size: 0.88rem; margin-bottom: 0.8rem; }

  footer { flex-direction: column; gap: 0.45rem; text-align: center; padding: 1.2rem var(--content-inline); }
}

@media (max-width: 420px) {
  .section-title, .about-bio-panel .section-title { font-size: 1.1rem; }

  .hero { min-height: 340px; padding-bottom: 0.9rem; }
  .hero-content { padding: 0.45rem var(--content-inline) 1.15rem; gap: 1rem; }
  .hero-logo { max-width: 136px; }
  .hero-tagline { font-size: 0.9rem; margin-top: 0; }
  .hero-video-wrap video { top: 55%; width: 145%; height: 100%; animation: none; }
  .hero-video-wrap video.is-playing { animation: heropan 15s ease-in-out infinite alternate; }

  .hero-actions { flex-direction: column; gap: 0.75rem; width: 100%; align-items: center; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost {
    min-width: 150px; max-width: 200px; min-height: 34px; height: 34px;
    padding: 0 0.9rem; font-size: 0.75rem; letter-spacing: 0.15em;
  }

  .about-bio-panel { padding: 0.9rem 0.85rem 0.85rem; }
  .about-accordion, .about-panel { min-height: 190px; }
  .photo-accordion, .photo-panel { min-height: 180px; height: 180px; }
  .video-queue-item { min-width: 150px; }
}


/* ============================================================
   Final mobile overrides
   ============================================================ */

@media (max-width: 768px) {
  /* Desktop nav remains centered; mobile hamburger is right-aligned */
  .site-nav-inner {
    justify-content: flex-end;
  }

  .nav-toggle {
    margin-left: auto;
  }

  .site-nav-links {
    align-items: flex-end;
    text-align: right;
  }

  .site-nav-links a {
    text-align: right;
    font-size: 1rem;
    letter-spacing: 0;
    text-transform: none;
  }

  #music,
  #photos,
  #videos,
  #merch {
    padding-left: 16px;
    padding-right: 16px;
  }

  #music > .section-header,
  #photos > .section-header,
  #videos > .section-header,
  #merch .section-header,
  #contact > .section-header {
    margin-bottom: 1rem;
  }

  .section-title,
  .about-bio-panel .section-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
    line-height: 1;
  }

  .about-bio-copy {
    font-size: 1.18rem;
    line-height: 1.75;
  }

  .hero-tagline,
  .contact-desc {
    font-size: 1.05rem;
  }

  .track-name {
    font-size: 1.05rem;
  }

  .track-tag,
  .track-dur,
  .track-num,
  .p-times {
    font-size: 0.68rem;
  }

  .video-queue-title {
    font-size: 0.84rem;
  }

  .photo-caption {
    font-size: 0.7rem;
  }
}

@media (max-width: 420px) {
  .section-title,
  .about-bio-panel .section-title {
    font-size: 1.85rem;
  }

  .about-bio-copy {
    font-size: 1.05rem;
  }

  .hero-tagline {
    font-size: 0.98rem;
  }
}

@keyframes heropan {
  from { transform: translate(-30%, -50%); }
  to   { transform: translate(-70%, -50%); }
}
