/* ==========================================================================
   Reza Khan theme — main stylesheet
   Ported from homepage-mockup.html
   ========================================================================== */

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

:root {
  --midnight: #060d10;
  --deep-navy: #091218;
  --navy: #0d1e22;
  --teal: #00c4a0;
  --aurora-green: #2de8a0;
  --amber: #c8a045;
  --gold: #e0bc55;
  --cream: #e8f0ec;
  --warm-white: #f0f8f4;
  --muted: rgba(220, 240, 230, 0.55);
  --border: rgba(220, 240, 230, 0.12);
}

html { scroll-behavior: smooth; font-size: 18px; }
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  background-color: var(--midnight);
  color: var(--cream);
  overflow-x: hidden;
}
body:not(.home):not(.page-template-front-page) {
  background-color: #000;
  background-image:
    linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.72)),
    url('../images/reza-bg-4.jpg');
  background-size: min(68vw, 1080px) 100%, auto 100%;
  background-position: right top, right top;
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed, fixed;
}
body:not(.home):not(.page-template-front-page)::before {
  content: '';
  position: fixed;
  left: max(24px, calc((100vw - 1100px) / 2 - 260px));
  bottom: 0;
  z-index: -1;
  width: min(58vw, 780px);
  aspect-ratio: 649 / 488;
  background: url('../images/rk-logo-bg.jpg') center / contain no-repeat;
  opacity: 0.28;
  pointer-events: none;
}

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

/* NAV
   ========================================================================== */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: linear-gradient(to bottom,
    rgba(6, 13, 16, 0.98) 0%,
    rgba(6, 13, 16, 0.85) 40%,
    rgba(6, 13, 16, 0.4) 100%
  );
  transition: backdrop-filter 0.4s, background 0.4s;
}
.nav-inner {
  max-width: 1600px; margin: 0 auto; padding: 24px 220px 24px 60px;
  display: flex; justify-content: space-between; align-items: center;
}
.site-nav.scrolled { backdrop-filter: blur(20px); background: rgba(6,13,16,0.88); }
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; letter-spacing: 0.08em;
  color: var(--cream); text-decoration: none;
}
.nav-logo-mark {
  width: 34px;
  height: auto;
  flex: 0 0 auto;
}
.nav-logo-text {
  display: inline-block;
}
.nav-logo em { color: var(--teal); font-style: italic; }
.nav-right {
  display: flex; align-items: center; justify-content: flex-end;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.3s;
}
.nav-links a:hover { color: var(--cream); }
.nav-links .menu-item-new-single a,
.mobile-nav-links .menu-item-new-single a {
  color: var(--midnight);
  background: var(--teal);
  border-radius: 2px;
  box-shadow: 0 0 24px rgba(0,196,160,0.24);
}
.nav-links .menu-item-new-single a {
  padding: 9px 14px;
}
.nav-links .menu-item-new-single a:hover,
.mobile-nav-links .menu-item-new-single a:hover {
  color: var(--midnight);
  background: var(--aurora-green);
}
.nav-cta {
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--teal); text-decoration: none;
  border: 1px solid rgba(0,196,160,0.5); padding: 9px 20px; border-radius: 2px;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--teal); color: var(--midnight); }
.nav-social-links {
  position: fixed; top: 30px; right: 24px; z-index: 110;
  display: flex; align-items: center; gap: 12px;
}
.nav-social-links .social-link {
  width: 18px; height: 18px;
  border: 0; border-radius: 0;
  color: var(--teal);
  opacity: 0.9;
}
.nav-social-links .social-link:hover {
  color: var(--aurora-green);
  opacity: 1;
}
.nav-social-links .social-link svg { width: 18px; height: 18px; }
.mobile-menu-toggle,
.mobile-menu-panel {
  display: none;
}
.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* SUBMENU (dropdown on hover)
   ========================================================================== */
.nav-links .menu-item-has-children { position: relative; }

.nav-links .sub-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 180px;
  background: var(--midnight);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  list-style: none;
  padding: 20px 0 8px;
  margin: 0;
  z-index: 999;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.nav-links .menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-links .sub-menu li a {
  display: block;
  padding: 9px 20px;
  font-size: 10px;
  letter-spacing: 0.18em;
  white-space: nowrap;
  color: var(--muted);
}

.nav-links .sub-menu li a:hover { color: var(--cream); }

@media (max-width: 1320px) {
  .site-nav { padding: 18px 24px; }
  .nav-links { display: none; }
  .nav-inner { padding: 0; }
  .nav-right { display: none; }
  .nav-social-links { display: none; }
  .mobile-menu-toggle {
    width: 38px; height: 38px;
    border: 1px solid rgba(0,196,160,0.45);
    border-radius: 2px;
    background: rgba(6,13,16,0.66);
    color: var(--teal);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
  }
  .mobile-menu-toggle-line {
    width: 17px; height: 1px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .site-nav.menu-open .mobile-menu-toggle-line:nth-child(2) {
    transform: translateY(6px) rotate(45deg);
  }
  .site-nav.menu-open .mobile-menu-toggle-line:nth-child(3) {
    opacity: 0;
  }
  .site-nav.menu-open .mobile-menu-toggle-line:nth-child(4) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .mobile-menu-panel {
    position: fixed;
    top: 74px; left: 24px; right: 24px;
    z-index: 109;
    display: block;
    padding: 24px;
    background: rgba(6,13,16,0.96);
    border: 1px solid rgba(220,240,230,0.12);
    border-radius: 4px;
    box-shadow: 0 24px 70px rgba(0,0,0,0.55);
    backdrop-filter: blur(18px);
  }
  .mobile-menu-panel[hidden] {
    display: none;
  }
  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
  }
  .mobile-nav-links a {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid rgba(220,240,230,0.08);
    color: var(--cream);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
  }
  .mobile-nav-links .sub-menu {
    position: static;
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    min-width: 0;
    padding: 0 0 8px 14px;
    background: transparent;
    border: 0;
    list-style: none;
  }
  .mobile-nav-links .sub-menu a {
    padding: 8px 0;
    color: var(--muted);
    font-size: 10px;
  }
  .mobile-social-links {
    display: flex;
    gap: 18px;
    margin-top: 22px;
  }
  .mobile-social-links .social-link {
    width: 20px; height: 20px;
    border: 0;
    color: var(--teal);
  }
  .mobile-social-links .social-link svg {
    width: 20px; height: 20px;
  }
}

/* HERO
   ========================================================================== */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(4,8,12,0.72) 0%, transparent 55%),
    linear-gradient(to top, rgba(6,13,16,0.95) 0%, rgba(6,13,16,0.55) 38%, transparent 65%),
    linear-gradient(to left, rgba(6,13,16,0.25) 0%, transparent 50%);
  pointer-events: none;
}

.neon-glow {
  position: absolute; bottom: 18%; left: 60px; width: 180px; height: 40px;
  background: rgba(100,200,255,0.08);
  border: 1px solid rgba(100,200,255,0.3); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 0 12px rgba(100,200,255,0.4),
    0 0 30px rgba(100,200,255,0.2),
    inset 0 0 12px rgba(100,200,255,0.1);
  animation: neonFlicker 4s ease-in-out infinite;
}
.neon-glow span {
  font-size: 11px; font-weight: 600; letter-spacing: 0.25em;
  color: rgba(160,225,255,0.9); text-shadow: 0 0 8px rgba(100,200,255,0.8);
}
@keyframes neonFlicker {
  0%, 95%, 100% { opacity: 1; }
  96% { opacity: 0.7; }
  97% { opacity: 1; }
  98% { opacity: 0.5; }
  99% { opacity: 1; }
}

.hero-content { position: relative; z-index: 10; width: 100%; max-width: 1600px; margin: 0 auto; padding: 0 60px 160px; }
.hero-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 18px;
  opacity: 0; animation: fadeUp 1s 0.3s forwards;
}
.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(72px, 10vw, 130px); font-weight: 300; line-height: 0.9; letter-spacing: -0.01em;
  color: var(--warm-white);
  opacity: 0; animation: fadeUp 1s 0.5s forwards;
}
.hero-name em { font-style: italic; color: var(--teal); }
.hero-tagline {
  margin-top: 22px;
  font-size: 13px; font-weight: 300; letter-spacing: 0.15em;
  color: var(--muted); max-width: 480px; line-height: 1.8;
  opacity: 0; animation: fadeUp 1s 0.7s forwards;
}
.hero-actions {
  margin-top: 40px; display: flex; gap: 16px; align-items: center;
  opacity: 0; animation: fadeUp 1s 0.9s forwards;
}
.hero-quotes {
  position: absolute;
  top: 23%;
  left: clamp(700px, 47vw, 900px);
  right: 24px;
  max-width: 720px;
  z-index: 11;
  min-height: 270px;
  pointer-events: none;
}
.hero-quote {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-quote.is-active {
  opacity: 1;
  transform: translateY(0);
}
.hero-quote blockquote {
  color: rgba(232,240,236,0.78);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  font-style: normal;
  font-weight: 300;
  line-height: 1.8;
}
.hero-quote figcaption {
  margin-top: 18px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.6;
  text-transform: uppercase;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--teal); color: var(--midnight);
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 15px 32px; text-decoration: none; border-radius: 2px; transition: all 0.3s;
}
.btn-primary:hover {
  background: var(--aurora-green); transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(45,232,160,0.35);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--cream);
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none;
  padding: 15px 0; border-bottom: 1px solid rgba(220,240,230,0.3);
  transition: all 0.3s;
}
.btn-secondary:hover { color: var(--teal); border-bottom-color: var(--teal); }
.play-icon {
  width: 28px; height: 28px;
  border: 1.5px solid currentColor; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.play-icon::after {
  content: ''; display: block;
  width: 0; height: 0;
  border-style: solid; border-width: 5px 0 5px 9px;
  border-color: transparent transparent transparent currentColor;
  margin-left: 2px;
}
.scroll-hint {
  position: absolute; bottom: 32px; right: 60px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeIn 1s 1.5s forwards;
}
.scroll-hint span {
  font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--muted); writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.spotify-player-drawer {
  position: fixed;
  inset: 0;
  z-index: 250;
  pointer-events: none;
  visibility: hidden;
}

.spotify-player-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.spotify-player-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 13, 16, 0.62);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.spotify-player-drawer.is-open .spotify-player-backdrop {
  opacity: 1;
}

.spotify-player-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(430px, calc(100vw - 28px));
  height: 100%;
  padding: 92px 28px 28px;
  overflow-y: auto;
  background:
    radial-gradient(circle at top right, rgba(0,196,160,0.16), transparent 36%),
    rgba(9, 18, 24, 0.98);
  border-left: 1px solid rgba(220,240,230,0.14);
  box-shadow: -30px 0 80px rgba(0,0,0,0.45);
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.spotify-player-drawer.is-open .spotify-player-panel {
  transform: translateX(0);
}

.spotify-player-close {
  position: absolute;
  top: 26px;
  right: 24px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(220,240,230,0.22);
  border-radius: 50%;
  background: rgba(220,240,230,0.06);
  color: var(--cream);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.25s ease;
}

.spotify-player-close:hover,
.spotify-player-close:focus-visible {
  color: var(--midnight);
  background: var(--teal);
  border-color: var(--teal);
}

.spotify-player-heading {
  margin: 8px 0 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  line-height: 1;
  color: var(--warm-white);
}

.spotify-player-heading em {
  color: var(--teal);
}

.spotify-player-label {
  margin: 26px 0 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.spotify-player-heading + .spotify-player-label {
  margin-top: 0;
}

.spotify-player-panel iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 0;
  border-radius: 12px;
  background: rgba(0,0,0,0.3);
}

body.spotify-player-open {
  overflow: hidden;
}

/* NEW SINGLE POPOVER
   ========================================================================== */
.new-single-popover {
  position: fixed;
  inset: 0;
  z-index: 260;
  pointer-events: none;
  visibility: hidden;
}
.new-single-popover.is-open {
  pointer-events: auto;
  visibility: visible;
}
.new-single-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.new-single-popover.is-open .new-single-backdrop {
  opacity: 1;
}
.new-single-panel {
  position: absolute;
  inset: clamp(72px, 8vh, 96px) clamp(24px, 5vw, 72px) clamp(24px, 5vh, 56px);
  overflow-y: auto;
  background:
    radial-gradient(circle at 18% 18%, rgba(200,160,69,0.13), transparent 32%),
    linear-gradient(135deg, rgba(9,18,24,0.98), rgba(3,8,11,0.98));
  border: 1px solid rgba(220,240,230,0.12);
  border-radius: 5px;
  box-shadow: 0 40px 140px rgba(0,0,0,0.68);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.new-single-popover.is-open .new-single-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.new-single-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 12;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(220,240,230,0.22);
  border-radius: 50%;
  background: rgba(6,13,16,0.74);
  color: var(--cream);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.25s ease;
}
.new-single-close:hover,
.new-single-close:focus-visible {
  color: var(--midnight);
  background: var(--teal);
  border-color: var(--teal);
}
.new-single-panel .single-section {
  min-height: 100%;
  padding: clamp(48px, 6vw, 82px);
}
body.new-single-open {
  overflow: hidden;
}

/* NEW SINGLE — SUNSET WALK
   ========================================================================== */
.single-section-bg { background: linear-gradient(to bottom, var(--deep-navy), var(--midnight)); }
.single-section {
  padding: 120px 60px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 72px; align-items: center;
  max-width: 1600px; margin: 0 auto;
}
.single-video-wrap {
  position: relative; border-radius: 4px; overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.05);
  aspect-ratio: 1; background: #060d10;
}
.single-video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
.single-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,13,16,0.4) 0%, transparent 50%);
  pointer-events: none;
}
.single-info { padding: 10px 0; }
.single-cover-row { display: flex; align-items: flex-start; gap: 28px; margin-bottom: 32px; }
.single-cover { position: relative; width: 140px; flex-shrink: 0; }
.single-cover img {
  width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 3px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.05);
  display: block;
}
.single-cover-glow {
  position: absolute; inset: -15px;
  background: radial-gradient(ellipse at 50% 50%, rgba(200,160,69,0.22), transparent 70%);
  pointer-events: none; z-index: -1;
}
.single-badge {
  position: absolute; top: -10px; right: -10px;
  background: var(--amber); color: var(--midnight);
  font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 2px; white-space: nowrap;
}
.single-meta { padding-top: 6px; }
.eyebrow-amber {
  font-size: 10px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 12px;
}
.single-countdown {
  font-size: 11px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(200,160,69,0.7); margin-top: 6px;
}
.single-player-grid {
  display: grid;
  gap: 18px;
  margin: -8px 0 30px;
}
.single-player {
  min-width: 0;
}
.single-player-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}
.single-player iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 0;
  border-radius: 8px;
  background: rgba(0,0,0,0.3);
}
.single-apple-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(250,35,59,0.24);
  border-radius: 10px;
  background:
    radial-gradient(circle at 14% 8%, rgba(250,35,59,0.22), transparent 36%),
    linear-gradient(135deg, rgba(18,20,26,0.96), rgba(7,10,13,0.98));
  box-shadow: 0 22px 60px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.05);
}
.single-apple-art {
  width: 82px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.46);
}
.single-apple-body {
  min-width: 0;
}
.single-apple-kicker {
  margin: 0 0 6px;
  color: #fa233b;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}
.single-apple-title {
  margin: 0 0 4px;
  color: var(--warm-white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
}
.single-apple-artist {
  margin: 0 0 10px;
  color: rgba(220,240,230,0.66);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.55;
  text-transform: uppercase;
}
.single-apple-link {
  color: var(--cream);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
  text-decoration: none;
}
.single-apple-link:hover,
.single-apple-link:focus-visible {
  color: #fa233b;
}
.single-apple-controls {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 12px;
  align-items: center;
  margin-top: 2px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: rgba(0,0,0,0.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.single-apple-play {
  position: relative;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff375f, #fa233b);
  box-shadow: 0 12px 28px rgba(250,35,59,0.32);
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.single-apple-play:hover,
.single-apple-play:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(250,35,59,0.42);
}
.single-apple-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
  transform: translate(-36%, -50%);
}
.single-apple-card.is-playing .single-apple-play-icon {
  width: 12px;
  height: 15px;
  border: 0;
  border-left: 4px solid currentColor;
  border-right: 4px solid currentColor;
  transform: translate(-50%, -50%);
}
.single-apple-progress {
  width: 100%;
  height: 4px;
  border-radius: 999px;
  appearance: none;
  background: linear-gradient(to right, #fa233b var(--progress, 0%), rgba(255,255,255,0.16) var(--progress, 0%));
  accent-color: #fa233b;
  cursor: pointer;
}
.single-apple-progress::-webkit-slider-thumb {
  appearance: none;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.92);
  border-radius: 50%;
  background: #fa233b;
  box-shadow: 0 6px 16px rgba(250,35,59,0.35);
}
.single-apple-progress::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255,255,255,0.92);
  border-radius: 50%;
  background: #fa233b;
  box-shadow: 0 6px 16px rgba(250,35,59,0.35);
}
.single-apple-time {
  color: rgba(220,240,230,0.72);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.single-apple-audio {
  display: none;
}
.single-qr-card {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(220,240,230,0.12);
  border-radius: 4px;
  background: rgba(220,240,230,0.04);
}
.single-qr-card img {
  width: 104px;
  height: 104px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.single-qr-card p {
  max-width: 180px;
  color: var(--cream);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.6;
  text-transform: uppercase;
}
.video-mute-btn {
  position: absolute; bottom: 14px; right: 14px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(6,13,16,0.7); border: 1px solid rgba(220,240,230,0.2);
  color: var(--cream); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(6px);
}
.video-mute-btn:hover { background: rgba(6,13,16,0.9); border-color: rgba(220,240,230,0.4); }
.video-mute-btn svg { width: 16px; height: 16px; fill: currentColor; }

/* RELEASE
   ========================================================================== */
.release-section {
  padding: 120px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  max-width: 1600px; margin: 0 auto;
}
.album-cover-wrap { position: relative; }
.album-cover {
  width: 100%; aspect-ratio: 1; border-radius: 4px; overflow: hidden; position: relative;
  box-shadow: 0 40px 120px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.05);
}
.album-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.album-cover-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(ellipse at 50% 50%, rgba(45,232,160,0.18), transparent 70%);
  pointer-events: none; z-index: -1;
}
.album-badge {
  position: absolute; top: -14px; right: -14px;
  background: var(--teal); color: var(--midnight);
  font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 2px;
}
.release-info { padding: 20px 0; }
.section-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 20px;
}
.release-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5vw, 72px); font-weight: 300; line-height: 1;
  color: var(--warm-white); margin-bottom: 8px;
}
.release-title em { font-style: italic; color: var(--teal); }
.release-artist {
  font-size: 13px; font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 28px;
}
.release-desc {
  font-size: 13px; font-weight: 300; letter-spacing: 0.15em; line-height: 1.8;
  color: rgba(220,240,230,0.7); margin-bottom: 36px;
}
.stream-links { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.stream-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(220,240,230,0.06);
  border: 1px solid var(--border);
  color: var(--cream);
  font-size: 10px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 9px 16px; border-radius: 2px; text-decoration: none;
  transition: all 0.3s;
}
.stream-btn:hover { background: rgba(220,240,230,0.12); border-color: rgba(220,240,230,0.3); }
.collab-label {
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.collab-names {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-style: normal; font-weight: 300; letter-spacing: 0.15em; color: var(--cream); line-height: 1.8;
}

/* DIVIDER
   ========================================================================== */
.divider { height: 1px; background: var(--border); margin: 0 60px; }

/* ARTIST BIO
   ========================================================================== */
.artist-section {
  padding: 120px 60px; max-width: 1600px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px; align-items: center;
}
.artist-image {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy) 0%, #0d2a20 100%);
  border-radius: 4px; overflow: hidden; position: relative;
}
.artist-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.artist-frame-accent {
  position: absolute; bottom: -16px; right: -16px;
  width: 60%; height: 60%;
  border: 1px solid rgba(45,232,160,0.2); border-radius: 4px; pointer-events: none;
}
.artist-stat-card {
  position: absolute; bottom: 30px; left: -30px;
  background: rgba(6,13,10,0.92);
  border: 1px solid var(--border); backdrop-filter: blur(20px);
  padding: 18px 24px; border-radius: 4px;
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 300; color: var(--teal); line-height: 1;
}
.stat-label {
  font-size: 9px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-top: 4px;
}
.artist-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 4vw, 62px); font-weight: 300; line-height: 1.1;
  color: var(--warm-white); margin-bottom: 28px;
}
.artist-title em { font-style: italic; color: var(--teal); }
.artist-bio {
  font-size: 13px; font-weight: 300; letter-spacing: 0.15em; line-height: 1.8;
  color: rgba(220,240,230,0.7); margin-bottom: 20px;
}
.artist-bio strong { font-weight: 500; color: var(--cream); }
.press-quote {
  margin: 36px 0; padding: 24px 28px;
  border-left: 2px solid var(--teal);
  background: rgba(45,232,160,0.04); border-radius: 0 4px 4px 0;
}
.press-quote p {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-style: normal; font-weight: 300; letter-spacing: 0.15em; line-height: 1.8;
  color: var(--cream); margin-bottom: 10px;
}
.press-source {
  font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
}

/* DISCOGRAPHY
   ========================================================================== */
.disco-section { padding: 100px 60px; max-width: 1600px; margin: 0 auto; }
.section-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 60px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4vw, 56px); font-weight: 300;
  color: var(--warm-white); line-height: 1;
}
.section-title em { font-style: italic; color: var(--teal); }
.view-all {
  font-size: 12px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal); text-decoration: none;
  display: flex; align-items: center; gap: 8px; transition: gap 0.3s;
}
.view-all:hover { gap: 14px; }
.albums-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.album-card { position: relative; cursor: pointer; }
.album-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.album-card-link:focus-visible {
  outline: 1px solid var(--teal);
  outline-offset: 7px;
}
.album-thumb {
  aspect-ratio: 1; background: var(--navy);
  border-radius: 3px; overflow: hidden; margin-bottom: 14px; position: relative;
}
.album-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.album-thumb-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s;
}
.album-card:hover .album-thumb-inner { transform: scale(1.04); }
.album-thumb-overlay {
  position: absolute; inset: 0; background: rgba(6,13,10,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.album-card:hover .album-thumb-overlay { opacity: 1; }
.album-play-btn {
  width: 52px; height: 52px;
  border: 2px solid var(--teal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.album-play-btn::after {
  content: ''; display: block;
  width: 0; height: 0;
  border-style: solid; border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent var(--teal);
  margin-left: 4px;
}
.album-thumb-color { position: absolute; inset: 0; }
.album-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 400; color: var(--cream); margin-bottom: 4px;
}
.album-year {
  font-size: 11px; font-weight: 400; letter-spacing: 0.1em; color: var(--muted);
}
.album-label-inner {
  position: relative; z-index: 1;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-style: normal; font-weight: 300; letter-spacing: 0.15em; color: rgba(220,240,230,0.5);
  text-align: center; padding: 20px;
}
.album-shadow          .album-thumb-color { background: linear-gradient(135deg, #060e0a, #0d1e14, #060a06); }
.album-imaginary       .album-thumb-color { background: linear-gradient(135deg, #1a2808, #2a3810, #0d1008); }
.album-next-train      .album-thumb-color { background: linear-gradient(135deg, #0a1a28, #1a3040, #0a0e18); }
.album-wind            .album-thumb-color { background: linear-gradient(135deg, #1a1408, #2e2210, #100c04); }
.album-dreamwalker     .album-thumb-color { background: linear-gradient(135deg, #120a28, #1e1040, #0a0818); }
.album-simple-plan     .album-thumb-color { background: linear-gradient(135deg, #1a0e0e, #2e1818, #100808); }
.album-painted-diaries .album-thumb-color { background: linear-gradient(135deg, #0e0e1a, #181828, #080810); }

/* SHOWS
   ========================================================================== */
.shows-section { padding: 100px 60px; background: var(--deep-navy); }
.shows-inner { max-width: 1200px; margin: 0 auto; }
.shows-list { margin-top: 48px; display: flex; flex-direction: column; }
.show-row {
  display: grid; grid-template-columns: 110px 1fr 1fr auto;
  align-items: center; gap: 32px;
  padding: 36px 0; border-bottom: 1px solid var(--border);
  transition: all 0.3s; border-radius: 4px;
}
.show-row:hover {
  background: rgba(220,240,230,0.03);
  padding-left: 16px; padding-right: 16px;
}
.show-month {
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal);
}
.show-day {
  font-family: 'Montserrat', sans-serif;
  font-size: 52px; font-weight: 300; color: var(--cream); line-height: 1;
}
.show-venue { font-size: 13px; font-weight: 300; letter-spacing: 0.15em; color: var(--cream); margin-bottom: 6px; }
.show-city { font-size: 13px; font-weight: 300; color: var(--muted); letter-spacing: 0.08em; }
.show-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.show-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 2px;
  background: rgba(0,196,160,0.12); color: var(--teal);
  border: 1px solid rgba(0,196,160,0.2);
}
.show-tag.sold-out {
  background: rgba(200,160,69,0.12); color: var(--amber);
  border-color: rgba(200,160,69,0.2);
}
.ticket-btn {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--midnight); background: var(--cream);
  padding: 12px 24px; border-radius: 2px; text-decoration: none;
  white-space: nowrap; transition: all 0.3s;
}
.ticket-btn:hover { background: var(--teal); }
.ticket-btn.disabled {
  background: rgba(220,240,230,0.1); color: var(--muted); pointer-events: none;
}

/* PRESS
   ========================================================================== */
.press-section { padding: 80px 60px; max-width: 1600px; margin: 0 auto; text-align: center; }
.press-label {
  font-size: 9px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 40px;
}
.press-logos {
  display: flex; justify-content: center; align-items: center;
  gap: 60px; flex-wrap: wrap;
}
.press-logo-item {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-style: normal; font-weight: 300;
  color: rgba(220,240,230,0.25); letter-spacing: 0.15em;
  transition: color 0.3s;
}
.press-logo-item:hover { color: rgba(220,240,230,0.6); }
.press-logo-item.small {
  font-size: 13px; letter-spacing: 0.15em; font-style: normal; font-weight: 500;
}

/* CTA
   ========================================================================== */
.cta-section {
  padding: 100px 60px; text-align: center; position: relative; overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(45,232,160,0.06) 0%, transparent 60%);
}
.cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 60px); font-weight: 300;
  color: var(--warm-white); line-height: 1.1; margin-bottom: 16px;
}
.cta-title em { font-style: italic; color: var(--teal); }
.cta-subtitle {
  font-size: 13px; font-weight: 300; line-height: 1.8;
  color: var(--muted); margin-bottom: 40px;
}
.email-form { display: flex; max-width: 420px; margin: 0 auto; }
.email-input {
  flex: 1;
  background: rgba(220,240,230,0.06);
  border: 1px solid var(--border); border-right: none;
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 300; letter-spacing: 0.08em;
  padding: 14px 20px; outline: none; border-radius: 2px 0 0 2px;
  transition: border-color 0.3s;
}
.email-input::placeholder { color: var(--muted); }
.email-input:focus { border-color: rgba(220,240,230,0.3); }
.email-submit {
  background: var(--teal); border: none; color: var(--midnight);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 14px 24px; cursor: pointer; border-radius: 0 2px 2px 0;
  transition: background 0.3s;
}
.email-submit:hover { background: var(--aurora-green); }

/* FOOTER
   ========================================================================== */
.site-footer { padding: 60px 60px 40px; border-top: 1px solid var(--border); }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 50px; max-width: 1600px; margin-left: auto; margin-right: auto;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300; color: var(--cream);
}
.footer-logo em { font-style: italic; color: var(--teal); }
.footer-tagline {
  font-size: 11px; font-weight: 300; letter-spacing: 0.12em;
  color: var(--muted); margin-top: 6px;
}
.footer-nav { display: flex; gap: 60px; }
.footer-col h4 {
  font-size: 9px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 12px; font-weight: 300; color: var(--muted);
  text-decoration: none; transition: color 0.3s;
}
.footer-col a:hover { color: var(--cream); }
.social-links { display: flex; gap: 16px; margin-top: 20px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-decoration: none;
  font-size: 11px; font-weight: 500; transition: all 0.3s;
}
.social-link svg { width: 16px; height: 16px; fill: currentColor; display: block; }
.social-link:hover { border-color: var(--teal); color: var(--teal); }
.footer-bottom {
  
  padding-top: 30px; border-top: 1px solid var(--border);
  max-width: 1600px; margin: 0 auto;
}
.footer-copy {
  font-size: 10px; font-weight: 300; letter-spacing: 0.08em;
  color: rgba(220,240,230,0.3);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 10px; font-weight: 300; color: rgba(220,240,230,0.25); text-decoration: none;
}
.footer-legal a:hover { color: var(--muted); }

/* RESPONSIVE
   ========================================================================== */
@media (min-width: 961px) and (max-height: 840px) {
  .hero-content {
    padding-bottom: clamp(48px, 8vh, 76px);
  }
  .hero-name {
    font-size: clamp(68px, 8.2vw, 112px);
  }
  .hero-eyebrow {
    margin-bottom: 14px;
  }
  .hero-tagline {
    margin-top: 18px;
  }
  .hero-actions {
    margin-top: 30px;
  }
  .hero-quotes {
    top: 21%;
    left: clamp(660px, 47vw, 840px);
    right: 24px;
    max-width: 680px;
    min-height: 230px;
  }
  .hero-quote blockquote {
    font-size: 13px;
    line-height: 1.8;
  }
  .hero-quote figcaption {
    margin-top: 14px;
  }
}
@media (max-width: 960px) {
  body:not(.home):not(.page-template-front-page) {
    background-attachment: scroll, scroll;
  }
  body:not(.home):not(.page-template-front-page)::before {
    left: -22vw;
    bottom: -20vw;
    width: min(92vw, 620px);
  }
  .hero {
    min-height: 100svh;
  }
  .hero-bg {
    background-position: left top;
  }
  .hero-quotes {
    display: none;
  }
  .hero-content { padding: 0 24px 60px; }
  .new-single-panel {
    inset: 76px 14px 14px;
  }
  .new-single-close {
    top: 14px;
    right: 14px;
  }
  .new-single-panel .single-section {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 58px 20px 26px;
  }
  .new-single-panel .single-cover-row {
    flex-direction: column;
    gap: 18px;
  }
  .single-qr-card {
    width: 100%;
    align-items: flex-start;
  }
  .scroll-hint { right: 24px; }
  .single-section,
  .release-section,
  .artist-section { grid-template-columns: 1fr; gap: 48px; padding: 80px 24px; }
  .disco-section,
  .shows-section,
  .press-section,
  .cta-section { padding: 80px 24px; }
  .albums-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .show-row { grid-template-columns: 70px 1fr; gap: 16px; }
  .show-row .show-tags,
  .show-row .ticket-btn { grid-column: 2 / -1; }
  .site-footer { padding: 40px 24px; }
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-nav { gap: 40px; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 16px; }
  .divider { margin: 0 24px; }
}
@media (max-width: 560px) {
  .hero {
    min-height: 720px;
    min-height: 100svh;
  }
  .hero-bg {
    background-position: 0 top;
  }
  .albums-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 20px; }
  .single-apple-card {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    padding: 13px;
  }
  .single-apple-art {
    width: 64px;
  }
  .single-apple-title {
    font-size: 22px;
  }
  .single-apple-controls {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 10px;
    padding: 8px 10px;
  }
  .single-apple-play {
    width: 38px;
    height: 38px;
  }
}

/* ==========================================================================
   PAGE / POST TEMPLATES (page.php, singular.php, single.php, index.php)
   Styles for WordPress-rendered `the_content()` on the dark theme.
   ========================================================================== */

.site-content {
  padding-top: 140px; /* clear fixed nav */
}

.page-hero {
  padding: 60px 60px 40px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.page-hero-inner { max-width: 820px; }
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 300; line-height: 1; color: var(--warm-white);
  margin: 10px 0 0;
  font-synthesis-weight: none;
}
.page-title em { font-style: italic; color: var(--teal); }
.page-dek {
  margin-top: 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-style: normal; font-weight: 300; letter-spacing: 0.15em;
  line-height: 1.8; color: var(--muted); max-width: 720px;
}

.page-article {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 60px 120px;
}

body.page-id-24 .page-hero,
body.page-id-24 .page-article {
  max-width: 1500px;
}

body.page-id-24 .page-hero-inner {
  max-width: 980px;
}

body.page-id-24 .wp-content {
  max-width: none;
}

body.page-id-24 .bit-widget {
  width: 100% !important;
  max-width: none !important;
}

.page-featured {
  margin: 0 auto 48px;
  max-width: 1200px;
  padding: 0 60px;
}
.page-featured img,
.page-featured picture { border-radius: 4px; box-shadow: 0 20px 60px rgba(0,0,0,0.6); }

/* WordPress content styling
   - Typography tuned for prose on midnight background
   - Handles core block output (paragraphs, headings, lists, images, quotes, etc.) */

.wp-content {
  color: rgba(220,240,230,0.82);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.15em;
  line-height: 1.8;
}

/* Paragraphs */
.wp-content p {
  margin-top: 0;
  margin-bottom: 1.5em;
}
.wp-content p:last-child { margin-bottom: 0; }

/* Links */
.wp-content a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,196,160,0.3);
  transition: border-color 0.2s, color 0.2s;
}
.wp-content a:hover { color: var(--aurora-green); border-bottom-color: var(--aurora-green); }
.wp-content strong { color: var(--cream); font-weight: 500; }
.wp-content em { font-style: italic; }

/* Headings — shared base
   Margins use rem (= 18px root) not em, so they don't scale
   with each heading's own font-size and blow out. */
.wp-content h1,
.wp-content h2,
.wp-content h3,
.wp-content h4,
.wp-content h5,
.wp-content h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
  color: var(--warm-white);
  font-synthesis-weight: none;
  margin-top: 2.5rem;   /* 45px — consistent gap above every heading */
  margin-bottom: 0.6rem; /* 11px — stays close to the text it introduces */
}
.wp-content h1:first-child,
.wp-content h2:first-child,
.wp-content h3:first-child,
.wp-content h4:first-child,
.wp-content h5:first-child,
.wp-content h6:first-child { margin-top: 0; }

/* h1 — display, very light, cinematic */
.wp-content h1 {
  font-size: clamp(42px, 5.5vw, 64px);
  line-height: 1.05;
}

/* h2 — section title, elegant serif */
.wp-content h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.1;
}

/* h3 — same light display family, smaller scale */
.wp-content h3 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.12;
}

/* h4 — same light display family, smaller scale */
.wp-content h4 {
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.16;
}

/* h5 — same light display family, smaller scale */
.wp-content h5 {
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.2;
  color: var(--cream);
}

/* h6 — same light display family, smallest scale */
.wp-content h6 {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.22;
  color: var(--cream);
}

/* Teal italic accent inside headings — use <em> */
.wp-content h1 em,
.wp-content h2 em,
.wp-content h3 em {
  color: var(--teal);
  font-style: italic;
}

/* Lists */
.wp-content ul,
.wp-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}
.wp-content li { margin-bottom: 0.5em; }
.wp-content li:last-child { margin-bottom: 0; }
.wp-content li::marker { color: var(--teal); }

/* Nested lists */
.wp-content li > ul,
.wp-content li > ol { margin-top: 0.5em; margin-bottom: 0; }

/* Blockquote */
.wp-content blockquote,
.wp-content .wp-block-quote {
  margin: 2.5em 0;
  padding: 24px 32px;
  border-left: 2px solid var(--teal);
  background: rgba(45,232,160,0.04);
  border-radius: 0 4px 4px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-style: normal; font-weight: 300; letter-spacing: 0.15em;
  color: var(--cream);
  line-height: 1.8;
}
.wp-content blockquote p,
.wp-content .wp-block-quote p { margin-bottom: 0; }
.wp-content blockquote cite,
.wp-content .wp-block-quote cite {
  display: block;
  margin-top: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-style: normal; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}

/* Images */
.wp-content img,
.wp-content figure img,
.wp-content .wp-block-image img {
  max-width: 100%; height: auto; display: block;
  border-radius: 3px;
}
.wp-content figure { margin: 2em 0; }
.wp-content figcaption {
  margin-top: 12px;
  font-size: 13px; line-height: 1.5; letter-spacing: 0.04em; color: var(--muted);
}

/* Horizontal rule */
.wp-content hr,
.wp-content .wp-block-separator {
  border: 0;
  height: 1px;
  background: var(--border);
  margin: 3.5em 0;
}

/* Code */
.wp-content pre,
.wp-content code,
.wp-content .wp-block-code {
  background: rgba(220,240,230,0.06);
  border: 1px solid var(--border);
  border-radius: 3px;
}
.wp-content code { padding: 2px 6px; font-size: 0.88em; }
.wp-content pre { padding: 20px; overflow-x: auto; font-size: 14px; line-height: 1.6; }

/* Buttons */
.wp-content .btn-container {
  display: inline-flex;
  margin: 0.5rem 0 1.5rem;
}

.wp-content .btn-container br,
.wp-content a.btn br {
  display: none;
}

.wp-content .wp-block-button__link,
.wp-content a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--teal);
  color: var(--midnight);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 32px;
  border: 0;
  border-radius: 2px;
  transition: all 0.3s;
}

.wp-content .wp-block-button__link:hover,
.wp-content .wp-block-button__link:focus-visible,
.wp-content a.btn:hover,
.wp-content a.btn:focus-visible {
  background: var(--aurora-green);
  color: var(--midnight);
  border-bottom-color: transparent;
  box-shadow: 0 12px 40px rgba(45,232,160,0.35);
  transform: translateY(-2px);
}

body.page-id-38 .wp-content p:has(> .btn-container.btn-inline) {
  display: inline-flex;
  align-items: center;
  margin: 0 12px 1.5rem 0;
}

body.page-id-38 .wp-content p:has(> .btn-container.btn-inline) + p:has(> .btn-container.btn-inline) {
  margin-right: 0;
}

body.page-id-38 .wp-content p:has(> .btn-container.btn-inline) .btn-container {
  margin: 0;
}

.wp-content .wp-block-embed,
.wp-content .wp-block-video { margin: 2em 0; }
.wp-content .wp-block-embed iframe,
.wp-content .wp-block-video video { width: 100%; border-radius: 3px; display: block; }

.wp-content .wp-block-gallery { gap: 16px; }
.wp-content .wp-block-table { width: 100%; border-collapse: collapse; }
.wp-content .wp-block-table th,
.wp-content .wp-block-table td {
  padding: 12px 14px; border-bottom: 1px solid var(--border); text-align: left;
}
.wp-content .wp-block-table th { color: var(--teal); font-weight: 600; letter-spacing: 0.08em; }

.wp-content .aligncenter { margin-left: auto; margin-right: auto; }
.wp-content .alignleft  { float: left;  margin: 0.5em 1.4em 1em 0; }
.wp-content .alignright { float: right; margin: 0.5em 0 1em 1.4em; }

/* Wide and full alignments (supported via add_theme_support('align-wide')) */
.wp-content .alignwide { margin-left: -80px; margin-right: -80px; }
.wp-content .alignfull {
  margin-left:  calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
}

/* Post navigation on single.php */
.post-nav {
  max-width: 1100px; margin: 0 auto; padding: 20px 60px 80px;
  display: flex; justify-content: space-between; gap: 24px;
  border-top: 1px solid var(--border);
}
.post-nav a {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color 0.3s;
}
.post-nav a:hover { color: var(--teal); }
.post-nav-next { text-align: right; }

.entry-footer { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--border); }
.post-tag {
  display: inline-block;
  margin: 4px 8px 0 0;
  padding: 4px 10px;
  font-size: 9px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  background: rgba(0,196,160,0.12); color: var(--teal);
  border: 1px solid rgba(0,196,160,0.2); border-radius: 2px;
}

/* Page links (for paginated pages via wp_link_pages) */
.page-links {
  margin-top: 2em;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}
.page-links a { color: var(--teal); margin: 0 6px; text-decoration: none; }
.page-links-title { margin-right: 10px; }

/* YouTube video gallery
   ========================================================================== */
.videos-page-article {
  max-width: 1300px;
}
.youtube-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 28px;
}
.youtube-card {
  min-width: 0;
}
.youtube-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  background: var(--navy);
  border: 1px solid rgba(220,240,230,0.08);
  box-shadow: 0 24px 70px rgba(0,0,0,0.35);
}
.youtube-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.youtube-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(6,13,16,0.48), transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(0,196,160,0.12), transparent 46%);
  opacity: 0.74;
  transition: opacity 0.35s ease;
}
.youtube-card-media:hover img {
  transform: scale(1.055);
}
.youtube-card-media:hover::after {
  opacity: 0.95;
}
.youtube-card-media.is-playing::after,
.youtube-card-media.is-playing .youtube-card-play,
.youtube-card-media.is-playing img {
  display: none;
}
.youtube-card-media iframe {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #000;
}
.youtube-card-play {
  position: absolute;
  left: 50%; top: 50%;
  width: 58px; height: 58px;
  transform: translate(-50%, -50%);
  z-index: 2;
  border: 1px solid rgba(0,196,160,0.75);
  border-radius: 50%;
  background: rgba(6,13,16,0.74);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 34px rgba(0,196,160,0.24);
}
.youtube-card-play::after {
  content: '';
  position: absolute;
  left: 23px; top: 18px;
  width: 0; height: 0;
  border-style: solid;
  border-width: 11px 0 11px 17px;
  border-color: transparent transparent transparent var(--teal);
}
.youtube-card-title {
  margin-top: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
}
.youtube-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.youtube-card-title a:hover {
  color: var(--teal);
}
.youtube-gallery-empty {
  color: var(--muted);
}
.youtube-view-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}
.youtube-view-more {
  border: 0;
  cursor: pointer;
}
.youtube-view-more[hidden] {
  display: none;
}

/* Gallery mosaic and lightbox
   ========================================================================== */
.wp-content .rk-mosaic {
  width: min(1180px, calc(100vw - 80px));
  max-width: none;
  margin: 18px calc(50% - min(590px, calc(50vw - 40px))) 0;
  columns: 3;
  column-gap: 12px;
}
.wp-content .rk-mosaic-item {
  position: relative;
  display: block;
  margin: 0 0 12px;
  overflow: hidden;
  break-inside: avoid;
  background: var(--navy);
  border: 1px solid rgba(220,240,230,0.08);
  text-decoration: none;
}
.wp-content .rk-mosaic-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(6,13,16,0.36), transparent 46%),
    radial-gradient(circle at 50% 42%, rgba(0,196,160,0.12), transparent 42%);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.wp-content .rk-mosaic-item img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.01);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.wp-content .rk-mosaic-item:hover img,
.wp-content .rk-mosaic-item:focus-visible img {
  transform: scale(1.045);
  opacity: 0.86;
}
.wp-content .rk-mosaic-item:hover::after,
.wp-content .rk-mosaic-item:focus-visible::after {
  opacity: 1;
}
.wp-content .rk-mosaic-item:focus-visible {
  outline: 1px solid var(--teal);
  outline-offset: 5px;
}
.rk-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  grid-template-rows: 72px minmax(0, 1fr) 72px;
  align-items: center;
  justify-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 42%, rgba(0,196,160,0.1), transparent 34%),
    rgba(3,8,11,0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
.rk-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.rk-lightbox-media {
  grid-column: 2;
  grid-row: 2;
  max-width: min(1180px, 100%);
  max-height: calc(100vh - 170px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.rk-lightbox-media img {
  max-width: 100%;
  max-height: calc(100vh - 170px);
  width: auto;
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(220,240,230,0.12);
  box-shadow: 0 32px 100px rgba(0,0,0,0.7);
}
.rk-lightbox-button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(220,240,230,0.2);
  border-radius: 50%;
  background: rgba(6,13,16,0.72);
  color: var(--cream);
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  font-size: 30px;
  line-height: 1;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.rk-lightbox-button:hover,
.rk-lightbox-button:focus-visible {
  border-color: rgba(0,196,160,0.8);
  color: var(--teal);
  background: rgba(0,196,160,0.08);
  outline: none;
}
.rk-lightbox-close {
  grid-column: 3;
  grid-row: 1;
}
.rk-lightbox-prev {
  grid-column: 1;
  grid-row: 2;
}
.rk-lightbox-next {
  grid-column: 3;
  grid-row: 2;
}
.rk-lightbox-count {
  grid-column: 2;
  grid-row: 3;
  color: rgba(220,240,230,0.58);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
body.rk-lightbox-open {
  overflow: hidden;
}

/* Album detail template
   ========================================================================== */
.album-page {
  min-height: 100vh;
  padding: 150px 0 95px;
  background: transparent;
}
.album-page .album-detail {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
}
.album-page .album-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 38px;
  color: rgba(220,240,230,0.42);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.8;
  text-transform: uppercase;
}
.album-page .album-breadcrumb a {
  color: rgba(220,240,230,0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}
.album-page .album-breadcrumb a:hover {
  color: var(--teal);
}
.album-page .album-hero {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 82px);
  align-items: start;
}
.album-page .album-cover-wrap {
  position: sticky;
  top: 118px;
}
.album-page .album-cover-wrap::before {
  content: '';
  position: absolute;
  inset: 7% -5% -6% 9%;
  border: 1px solid rgba(0,196,160,0.18);
  pointer-events: none;
}
.album-page .album-cover {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(220,240,230,0.12);
  box-shadow: 0 34px 92px rgba(0,0,0,0.52);
}
.album-page .album-purchase-link {
  display: block;
  margin-top: 18px;
  text-align: center;
  color: var(--teal);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 0.24s ease, opacity 0.24s ease;
}
.album-page .album-purchase-link:hover,
.album-page .album-purchase-link:focus-visible {
  color: var(--cream);
  opacity: 1;
}
.album-page .album-hero-copy {
  min-width: 0;
  padding-top: 10px;
}
.album-page .album-title {
  margin: 0;
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(58px, 7.2vw, 116px);
  font-weight: 300;
  line-height: 0.88;
}
.album-page .album-title span {
  display: block;
  margin-top: 14px;
  color: var(--teal);
  font-size: clamp(26px, 3vw, 42px);
  font-style: italic;
  line-height: 1;
}
.album-page .album-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  color: rgba(220,240,230,0.7);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.8;
  list-style: none;
  text-transform: uppercase;
}
.album-page .album-meta-row li {
  display: inline-flex;
  align-items: center;
}
.album-page .album-meta-row li:not(:last-child)::after {
  content: '';
  width: 4px;
  height: 4px;
  margin: 0 14px;
  border-radius: 50%;
  background: rgba(0,196,160,0.72);
}
.album-page .album-description {
  max-width: 670px;
  margin: 28px 0 0;
  color: rgba(232,240,236,0.78);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.15em;
  line-height: 1.8;
}
.album-page .album-stream-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}
.album-page .album-stream-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(220,240,230,0.1);
  background: rgba(7,16,20,0.72);
}
.album-page .album-stream-card h2,
.album-page .album-side-section h2 {
  margin: 0;
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
}
.album-page .album-stream-card h2 {
  margin-bottom: 14px;
  color: var(--teal);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.album-page .album-stream-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.album-page .album-stream-embed {
  overflow: hidden;
  border-radius: 4px;
  background: rgba(255,255,255,0.03);
}
.album-page .album-stream-embed iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}
.album-page .album-lower {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: clamp(42px, 6vw, 78px);
  margin-top: 92px;
  padding-top: 54px;
  border-top: 1px solid rgba(220,240,230,0.12);
}
.album-page .album-notes-column,
.album-page .album-more-albums {
  min-width: 0;
}
.album-page .album-notes-column {
  max-width: 700px;
}
.album-page .album-more-albums {
  justify-self: end;
  width: min(100%, 420px);
}
.album-page .album-more-albums .album-side-section {
  padding-bottom: 0;
}
.album-page .album-side-section {
  padding: 0 0 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(220,240,230,0.1);
}
.album-page .album-side-section p,
.album-page .album-credits {
  margin: 18px 0 0;
  color: rgba(232,240,236,0.7);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.15em;
  line-height: 1.8;
}
.album-page .album-details-list {
  margin: 20px 0 0;
}
.album-page .album-details-list div {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid rgba(220,240,230,0.08);
}
.album-page .album-details-list dt {
  color: rgba(0,196,160,0.82);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.album-page .album-details-list dd {
  margin: 0;
  color: rgba(232,240,236,0.76);
  font-size: 13px;
  line-height: 1.6;
}
.album-page .album-discography-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.album-page .album-discography-list li {
  border-top: 1px solid rgba(220,240,230,0.08);
}
.album-page .album-discography-list a {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  color: inherit;
  text-decoration: none;
}
.album-page .album-discography-list img {
  display: block;
  width: 64px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(220,240,230,0.1);
  background: var(--navy);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.album-page .album-discography-list span {
  min-width: 0;
}
.album-page .album-discography-list strong {
  display: block;
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(21px, 1.65vw, 28px);
  font-weight: 400;
  line-height: 1.08;
  transition: color 0.2s ease;
}
.album-page .album-discography-list small {
  display: block;
  margin-top: 5px;
  color: rgba(220,240,230,0.52);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}
.album-page .album-discography-list a:hover img,
.album-page .album-discography-list a:focus-visible img {
  opacity: 0.78;
  transform: scale(1.04);
}
.album-page .album-discography-list a:hover strong,
.album-page .album-discography-list a:focus-visible strong {
  color: var(--teal);
}
.album-page .album-discography-list a:focus-visible {
  outline: 1px solid var(--teal);
  outline-offset: 5px;
}

@media (max-width: 960px) {
  .page-hero { padding: 40px 24px 24px; }
  .page-article { padding: 20px 24px 80px; }
  .page-featured { padding: 0 24px; }
  .post-nav { padding: 20px 24px 60px; }
  .wp-content .alignwide { margin-left: 0; margin-right: 0; }
  .youtube-gallery {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .youtube-card-title {
    font-size: 22px;
  }
  .wp-content .rk-mosaic {
    width: min(100%, calc(100vw - 48px));
    margin: 14px auto 0;
    columns: 2;
  }
  .rk-lightbox {
    grid-template-columns: 56px minmax(0, 1fr) 56px;
    padding: 14px;
  }
  .rk-lightbox-media,
  .rk-lightbox-media img {
    max-height: calc(100vh - 138px);
  }
  .album-page {
    padding: 118px 0 72px;
  }
  .album-page .album-detail {
    width: min(100% - 40px, 680px);
  }
  .album-page .album-breadcrumb {
    margin-bottom: 28px;
  }
  .album-page .album-hero,
  .album-page .album-lower {
    grid-template-columns: 1fr;
  }
  .album-page .album-cover-wrap {
    position: relative;
    top: auto;
    width: min(100%, 440px);
  }
  .album-page .album-stream-grid {
    grid-template-columns: 1fr;
  }
  .album-page .album-lower {
    margin-top: 62px;
    padding-top: 38px;
  }
  .album-page .album-details-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 560px) {
  .wp-content .rk-mosaic {
    width: min(100%, calc(100vw - 30px));
    columns: 1;
    column-gap: 0;
  }
  .wp-content .rk-mosaic-item {
    margin-bottom: 14px;
  }
  .rk-lightbox {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    grid-template-rows: 58px minmax(0, 1fr) 58px;
    padding: 10px;
  }
  .rk-lightbox-button {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }
  .rk-lightbox-media,
  .rk-lightbox-media img {
    max-height: calc(100vh - 120px);
  }
  .album-page .album-detail {
    width: min(100% - 30px, 680px);
  }
  .album-page .album-title {
    font-size: clamp(48px, 16vw, 68px);
  }
  .album-page .album-meta-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .album-page .album-meta-row li:not(:last-child)::after {
    display: none;
  }
  .album-page .album-description {
    font-size: 24px;
  }
  .album-page .album-stream-card {
    padding: 14px;
  }
}

/* ==========================================================================
   BANDSINTOWN WIDGET
   ========================================================================== */

/* Font */
.bit-widget,
.bit-widget * { font-family: 'Montserrat', sans-serif !important; }

/* Let show text wrap without disrupting the widget grid. */
.bit-widget [style*="text-overflow"],
.bit-widget [class*="truncate"],
.bit-widget [class*="ellipsis"] {
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
}

.bit-widget [class*="event-title"],
.bit-widget [class*="eventTitle"],
.bit-widget [class*="event-name"],
.bit-widget [class*="eventName"],
.bit-widget [class*="venue"],
.bit-widget [class*="location"] {
  white-space: normal !important;
}

/* Hide: "Track" CTA, Upcoming/Past tabs, Request a Show button, branding */
.bit-follow-section,
.bit-nav-bar,
.bit-tabs-container,
.bit-filter,
[class*="bit-request"],
[class*="bit-follow"],
[class*="bit-track"],
[class*="bit-powered"],
[class*="bit-logo"] { display: none !important; }
