/* Website UI Kit — uses tokens from ../../colors_and_type.css */

:root {
  color-scheme: dark;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 3px;
}

.jjnb-page {
  position: relative;
  min-height: 100vh;
  background: #050812;
  color: var(--fg-1);
  overflow-x: hidden;
}

/* Persistent paint background spanning the whole page */
.jjnb-page__bg {
  position: absolute; inset: 0;
  background-image: url('../../assets/page-paint-bg.svg');
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-position: top center;
  pointer-events: none;
  z-index: 0;
}
.jjnb-page::after {
  /* extra darkening so text remains readable */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,8,18,0.35) 0%, rgba(5,8,18,0.55) 50%, rgba(5,8,18,0.45) 100%);
  pointer-events: none; z-index: 0;
}
.jjnb-main { position: relative; z-index: 1; }

/* ---------- Logo wordmark (Playfair italic with cyan plus) ---------- */
.jjnb-logo {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.jjnb-logo--button {
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.jjnb-logo .quote { color: var(--accent-cyan); margin: 0 1px; }
.jjnb-logo .plus { color: var(--accent-cyan); font-style: normal; font-weight: 700; margin-left: 2px; }
.jjnb-logo.big { font-size: 38px; }

/* ---------- Header ---------- */
.jjnb-header {
  position: sticky; top: 0; z-index: 50;
  padding: 14px clamp(18px, 3vw, 32px);
  background: linear-gradient(180deg, rgba(5,8,18,0.85), rgba(5,8,18,0.55));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(247, 247, 247, 0.08);
}
.jjnb-header__inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px;
}
.jjnb-links { display: flex; gap: 28px; justify-content: center; }
.jjnb-links a {
  color: var(--fg-2); font-size: 14px; font-weight: 500;
  text-decoration: none; position: relative; padding: 10px 2px;
  cursor: pointer; transition: color var(--dur-fast);
}
.jjnb-links a:hover { color: #fff; }
.jjnb-links a.active { color: var(--accent-cyan); }
.jjnb-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--accent-cyan); border-radius: 2px;
  box-shadow: 0 0 8px var(--accent-cyan);
}
.jjnb-social { display: flex; gap: 14px; justify-content: flex-end; }
.jjnb-social a {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--fg-2); transition: all var(--dur-fast);
}
.jjnb-social a:hover {
  color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.04);
}

/* ---------- Hero ---------- */
.jjnb-hero {
  max-width: 1200px; margin: 0 auto;
  padding: clamp(36px, 7vw, 64px) clamp(18px, 3vw, 32px) clamp(56px, 9vw, 88px);
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(280px, 1fr); gap: clamp(28px, 4vw, 46px);
  align-items: center;
}
.jjnb-hero__content { position: relative; }
.jjnb-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(64px, 9vw, 130px);
  line-height: 0.85;
  margin: 0 0 12px;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.55);
}
.jjnb-hero__title .word { display: block; }
.jjnb-hero__title .w-manifest {
  font-size: 1em;
  color: #fff;
  filter: drop-shadow(0 0 24px rgba(0,229,255,0.18));
}
.jjnb-hero__title .w-your {
  font-size: 0.55em;
  margin-top: -6px;
  margin-left: 24px;
  color: var(--accent-cyan);
}
.jjnb-hero__artist {
  font-family: var(--font-script);
  font-size: clamp(36px, 4vw, 56px);
  color: #fff;
  margin: 0 0 22px;
  line-height: 1;
}
.jjnb-hero__artist .q { color: var(--accent-cyan); margin: 0 2px; }
.jjnb-hero__artist .plus { color: var(--accent-cyan); font-family: var(--font-serif); font-style: italic; }
.jjnb-hero__intro {
  font-size: 15px; line-height: 1.72; color: var(--fg-2);
  max-width: 46ch; margin-bottom: 26px;
}
.jjnb-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Duo portrait placeholder (right side) */
.jjnb-hero__duo { position: relative; }
.duo-ph {
  position: relative;
  aspect-ratio: 4/4.4;
  border-radius: 18px;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(255,177,43,0.4) 0%, rgba(216,30,60,0.25) 30%, transparent 60%), #08111F;
  border: 1px solid var(--border-1);
}
.duo-ph__splash {
  position: absolute; inset: -10%;
  background:
    radial-gradient(circle at 20% 30%, #D92CFF 0%, transparent 25%),
    radial-gradient(circle at 80% 25%, #FF6A00 0%, transparent 28%),
    radial-gradient(circle at 15% 80%, #00E5FF 0%, transparent 25%),
    radial-gradient(circle at 85% 75%, #D81E3C 0%, transparent 25%),
    radial-gradient(circle at 50% 50%, #FFB12B 0%, transparent 30%);
  filter: blur(40px); opacity: 0.55;
}
.duo-ph__notes { position: absolute; inset: 0; pointer-events: none; }
.duo-ph__notes .n { position: absolute; width: 28px; opacity: 0.85; }
.duo-ph__notes .n1 { top: 12%; right: 12%; transform: rotate(15deg); }
.duo-ph__notes .n2 { top: 28%; right: 4%; transform: rotate(-10deg); width: 22px; }
.duo-ph__notes .n3 { top: 8%; left: 18%; transform: rotate(-15deg); width: 24px; }
.duo-ph__notes .n4 { bottom: 15%; right: 18%; transform: rotate(20deg); width: 30px; }
.duo-ph__figures {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: center; gap: 4%;
  padding: 0 8% 4%;
}
.fig {
  flex: 1; height: 78%;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.85) 100%);
  border-radius: 50% 50% 12px 12px / 35% 35% 12px 12px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 56px; color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.08);
}
.ph-tag {
  position: absolute; bottom: 8px; left: 0; right: 0; text-align: center;
  font-family: var(--font-body);
  font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ---------- Generic section ---------- */
.jjnb-section {
  max-width: 1200px; margin: 0 auto; padding: clamp(28px, 4vw, 44px) clamp(18px, 3vw, 32px);
}
.jjnb-section .eyebrow {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--accent-cyan); margin-bottom: 12px;
}
.jjnb-section__head { margin-bottom: 24px; }
.jjnb-section__head--center {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 32px;
}
.jjnb-section__head--center .eyebrow { margin: 0; white-space: nowrap; }
.divider-flourish {
  width: 120px; height: 24px;
  background: url('../../assets/divider-flourish.svg') center/contain no-repeat;
  opacity: 0.85;
}
.divider-flourish.flip { transform: scaleX(-1); }

/* ---------- Featured Release ---------- */
.jjnb-release {
  display: grid; grid-template-columns: 320px 1fr; gap: 32px;
  padding: clamp(20px, 3vw, 28px);
  align-items: center;
}
.jjnb-release__art { position: relative; }
.album-ph {
  position: relative; aspect-ratio: 1;
  border-radius: 14px; overflow: hidden;
  background: #050812;
}
.album-ph__swirls {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 75% 30%, #FF6A00 0%, transparent 35%),
    radial-gradient(ellipse at 25% 80%, #D92CFF 0%, transparent 40%),
    radial-gradient(ellipse at 80% 75%, #00E5FF 0%, transparent 35%),
    radial-gradient(ellipse at 30% 25%, #004CFF 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, #FFB12B 0%, transparent 35%);
  filter: blur(8px);
}
.album-ph__inner {
  position: relative; z-index: 1; height: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 18px;
}
.album-ph__title {
  font-family: var(--font-display); font-size: 36px; line-height: 0.9;
  color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.album-ph__figure {
  align-self: center;
  width: 60%; aspect-ratio: 1;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 42px; color: rgba(255,255,255,0.7);
  border: 2px solid rgba(255,255,255,0.1);
}
.album-ph__credit {
  font-family: var(--font-script); font-size: 22px;
  color: #fff; text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.album-ph__tag {
  position: absolute; top: 10px; right: 12px; z-index: 2;
  font-family: var(--font-body);
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.jjnb-release__title {
  font-family: var(--font-serif); font-style: italic; font-weight: 700;
  font-size: 36px; line-height: 1.05; margin: 4px 0 8px;
  color: #fff; letter-spacing: -0.005em;
}
.jjnb-release__meta {
  font-family: var(--font-body);
  font-size: 13px; color: var(--fg-3);
  letter-spacing: 0.04em; margin-bottom: 14px;
}
.jjnb-release__body p { font-size: 14px; line-height: 1.65; color: var(--fg-2); margin: 0 0 18px; }
.waveform {
  display: flex; align-items: center; gap: 2px; height: 36px;
  margin-bottom: 18px;
}
.waveform span { display: block; width: 3px; border-radius: 2px; }

.jjnb-release__platforms {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px;
}
.btn--platform .dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.jjnb-link {
  color: var(--accent-cyan); text-decoration: none;
  font-weight: 600; font-size: 13px;
  border-bottom: 1px solid rgba(0,229,255,0.4);
  padding-bottom: 1px;
}
.jjnb-link:hover { text-shadow: 0 0 12px var(--accent-cyan); }

/* ---------- Artists ---------- */
.jjnb-artists { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.jjnb-artist {
  padding: clamp(16px, 2vw, 20px);
  display: grid; grid-template-columns: 160px 1fr; gap: 18px;
  align-items: center;
}
.jjnb-artist__portrait {
  --hue: #00E5FF; --hue2: #D92CFF;
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 40%, color-mix(in srgb, var(--hue) 50%, transparent), transparent 60%),
    radial-gradient(ellipse at 70% 60%, color-mix(in srgb, var(--hue2) 50%, transparent), transparent 60%),
    #08111F;
  border: 1px solid var(--border-1);
}
.jjnb-artist__portrait .splash {
  position: absolute; inset: -10%;
  background:
    radial-gradient(circle at 20% 30%, color-mix(in srgb, var(--hue) 80%, transparent), transparent 30%),
    radial-gradient(circle at 75% 70%, color-mix(in srgb, var(--hue2) 70%, transparent), transparent 28%);
  filter: blur(20px); opacity: 0.6;
}
.jjnb-artist__portrait .figure {
  position: absolute; inset: 8% 12% 4%;
  background: linear-gradient(180deg, rgba(0,0,0,0.5), rgba(0,0,0,0.85));
  border-radius: 50% 50% 8px 8px / 35% 35% 8px 8px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 32px; color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.08);
}
.jjnb-artist__body h3 {
  font-family: var(--font-serif); font-style: italic; font-weight: 700;
  font-size: 32px; line-height: 1; margin: 0 0 4px;
  color: #fff;
}
.jjnb-artist__sub {
  font-family: var(--font-body);
  font-size: 13px; color: var(--accent-cyan);
  font-weight: 600; letter-spacing: 0.02em;
  margin: 0 0 10px;
}
.jjnb-artist__body p { font-size: 13px; line-height: 1.6; margin: 0 0 12px; color: var(--fg-2); }
.jjnb-artist__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.jjnb-social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--fg-1);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-2);
  font-size: 13px;
  font-weight: 600;
  transition: color var(--dur-fast), border-color var(--dur-fast), background var(--dur-fast), transform var(--dur-fast);
}
.jjnb-social-pill:hover {
  color: var(--accent-cyan);
  border-color: rgba(0, 229, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

/* ---------- Live Performance ---------- */
.jjnb-live {
  display: grid; grid-template-columns: 1.1fr 1fr auto; gap: 24px;
  padding: clamp(18px, 2vw, 24px);
  align-items: center;
}
.stage-ph {
  position: relative; aspect-ratio: 16/9;
  border-radius: 12px; overflow: hidden;
  background: #050812;
}
.stage-ph__lights {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 30% 20%, rgba(216,30,60,0.65), transparent 65%),
    radial-gradient(ellipse 50% 80% at 70% 25%, rgba(0,76,255,0.55), transparent 65%),
    linear-gradient(180deg, rgba(255,177,43,0.18), transparent 60%);
}
.stage-ph__silhouette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 22% 32% at 32% 70%, rgba(0,0,0,0.9), transparent 70%),
    radial-gradient(ellipse 22% 32% at 64% 70%, rgba(0,0,0,0.9), transparent 70%);
}
.stage-ph__mic-l, .stage-ph__mic-r {
  position: absolute; width: 4px; height: 18%; bottom: 30%;
  background: linear-gradient(180deg, #aaa, #333);
  border-radius: 2px;
}
.stage-ph__mic-l { left: 28%; transform: rotate(-8deg); }
.stage-ph__mic-r { left: 60%; transform: rotate(6deg); }

.jjnb-live__title {
  font-family: var(--font-serif); font-style: italic; font-weight: 700;
  font-size: 30px; line-height: 1.1; margin: 4px 0 10px;
  color: #fff;
}
.jjnb-live__body p { font-size: 14px; line-height: 1.6; margin: 0 0 16px; max-width: 320px; color: var(--fg-2); }
.jjnb-live__mic { width: 90px; align-self: center; opacity: 0.95; }
.jjnb-live__mic img { width: 100%; display: block; }

/* ---------- Footer ---------- */
.jjnb-footer {
  position: relative; z-index: 1;
  padding: clamp(40px, 6vw, 56px) clamp(18px, 3vw, 32px) 24px;
  border-top: 1px solid var(--border-1);
  background: linear-gradient(180deg, rgba(5,8,18,0.4), rgba(5,8,18,0.85));
}
.jjnb-footer__clef {
  position: absolute; left: 16px; top: 8px; bottom: 8px;
  width: 60px; opacity: 0.18; pointer-events: none;
}
.jjnb-footer__clef img { width: 100%; height: 100%; object-fit: contain; }

.jjnb-footer__inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 32px;
  align-items: start;
}
.jjnb-footer__brand p { font-size: 13px; color: var(--fg-3); margin: 14px 0 0; line-height: 1.55; }
.jjnb-footer__col { display: flex; flex-direction: column; gap: 10px; }
.col-head {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--fg-1); margin-bottom: 4px;
}
.jjnb-footer__col a {
  color: var(--fg-2); text-decoration: none;
  font-size: 14px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
}
.jjnb-footer__col a:hover { color: var(--accent-cyan); }
.email-pill {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-2);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px !important;
  align-self: flex-start;
}
.email-pill:hover { border-color: var(--accent-cyan); }

.jjnb-footer__copy {
  max-width: 1200px; margin: 32px auto 0; padding-top: 18px;
  border-top: 1px solid var(--border-1);
  font-size: 12px; color: var(--fg-3); text-align: center;
}

/* ---------- Responsive (base) ---------- */
@media (max-width: 900px) {
  .jjnb-hero { grid-template-columns: 1fr; padding-top: 40px; }
  .jjnb-release, .jjnb-artists { grid-template-columns: 1fr; }
  .jjnb-live { grid-template-columns: 1fr; }
  .jjnb-live__mic { display: none; }
  .jjnb-footer__inner { grid-template-columns: 1fr 1fr; }
  .jjnb-header__inner { grid-template-columns: 1fr auto; gap: 16px; }
  .jjnb-links { display: none; }
}

/* =========================================================
   EXTENDED STYLES — New sections added May 2026
   ========================================================= */

/* ---------- Section title & subtitle ---------- */
.jjnb-section__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  color: #fff;
  margin: 4px 0 0;
}
.jjnb-section__sub {
  font-size: 15px;
  color: var(--fg-2);
  max-width: 560px;
  margin: 10px 0 0;
  line-height: 1.65;
}

/* ---------- Header right cluster + mobile toggle ---------- */
.jjnb-header__right {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}
.jjnb-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid rgba(247, 247, 247, 0.12);
  cursor: pointer;
  padding: 10px 8px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 999px;
  color: var(--fg-1);
  justify-content: center;
  align-items: center;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.jjnb-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg-1);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease-soft), opacity var(--dur-fast);
}
.jjnb-nav-toggle:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 229, 255, 0.3);
}
.jjnb-nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.jjnb-nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.jjnb-nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.jjnb-mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 10px 0 6px;
  border-top: 1px solid var(--border-1);
  gap: 0;
}
.jjnb-mobile-nav a {
  color: var(--fg-2);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 15px clamp(18px, 3vw, 32px);
  border-bottom: 1px solid var(--border-1);
  cursor: pointer;
  transition: color var(--dur-fast);
}
.jjnb-mobile-nav a:last-child { border-bottom: none; }
.jjnb-mobile-nav a:hover,
.jjnb-mobile-nav a.active { color: var(--accent-cyan); }

/* ---------- Hero duo photo frame ---------- */
.duo-frame {
  position: relative;
  aspect-ratio: 4 / 4.4;
  border-radius: 18px;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(255,177,43,0.4) 0%, rgba(216,30,60,0.25) 30%, transparent 60%), #08111F;
  border: 1px solid var(--border-1);
}
/* Colour splash sits behind the photo */
.duo-frame .duo-ph__splash {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 20% 30%, #D92CFF 0%, transparent 25%),
    radial-gradient(circle at 80% 25%, #FF6A00 0%, transparent 28%),
    radial-gradient(circle at 15% 80%, #00E5FF 0%, transparent 25%),
    radial-gradient(circle at 85% 75%, #D81E3C 0%, transparent 25%),
    radial-gradient(circle at 50% 50%, #FFB12B 0%, transparent 30%);
  filter: blur(40px);
  opacity: 0.55;
  z-index: 0;
}
.duo-frame .duo-ph__figures {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4%;
  padding: 0 8% 4%;
  z-index: 1;
}
.duo-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.duo-frame__notes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.duo-frame__notes .n { position: absolute; width: 28px; opacity: 0.85; }
.duo-frame__notes .n1 { top: 12%; right: 12%; transform: rotate(15deg); }
.duo-frame__notes .n2 { top: 28%; right: 4%;  transform: rotate(-10deg); width: 22px; }
.duo-frame__notes .n3 { top: 8%;  left: 18%; transform: rotate(-15deg); width: 24px; }
.duo-frame__notes .n4 { bottom: 15%; right: 18%; transform: rotate(20deg); width: 30px; }

/* ---------- Artist portrait photo ---------- */
.portrait-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: inherit;
  z-index: 1;
  display: block;
}

/* ---------- Live stage photo frame ---------- */
.stage-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
}
/* Make stage-ph fill the frame absolutely when inside stage-frame */
.stage-frame .stage-ph {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
  border-radius: 0;
  width: auto;
  height: auto;
}
.stage-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 2;
  display: block;
}

/* ---------- Album art frame ---------- */
.album-frame {
  position: relative;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
}
.album-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 2;
  display: block;
  border-radius: inherit;
}
/* Album placeholder sits behind photo */
.album-frame .album-ph {
  position: absolute;
  inset: 0;
  border-radius: 0;
  z-index: 1;
}

/* Featured release CTAs row */
.jjnb-release__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

/* Waveform pulse animation */
@keyframes waveBar {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.45; }
}
.wave-bar--active {
  animation: waveBar 1.8s ease-in-out infinite;
}
.wave-bar--active:nth-child(even) { animation-delay: 0.35s; }
.wave-bar--active:nth-child(3n)   { animation-delay: 0.7s; }

/* ---------- Videos section ---------- */
.featured-embed {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  padding: 20px;
  margin-bottom: 28px;
  align-items: center;
}
/* Responsive 16:9 wrapper for iframes */
.yt-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #000;
}
.yt-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
/* Smaller version used inside video cards */
.yt-embed--sm { border-radius: var(--radius-md) var(--radius-md) 0 0; }

.featured-embed__meta { padding: 4px 8px; }
.featured-embed__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin: 8px 0 10px;
  line-height: 1.25;
}
.featured-embed__desc {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.6;
  margin: 0 0 18px;
}
.jjnb-inline-note {
  color: var(--accent-cyan);
  font-weight: 700;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.video-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-soft),
              box-shadow var(--dur-base) var(--ease-soft);
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-lift), 0 0 0 1px var(--border-accent);
}
.video-card__body { padding: 14px 16px 16px; }
.video-card__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--fg-1);
  margin: 0 0 5px;
  line-height: 1.35;
}
.video-card__desc {
  font-size: 12px;
  color: var(--fg-3);
  margin: 0 0 14px;
  line-height: 1.5;
}
.video-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--accent-cyan);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
}
.video-card__link:hover { text-shadow: 0 0 12px var(--accent-cyan); }

.lyrics-block {
  padding: 14px;
  border-radius: 12px;
  background: rgba(8, 17, 31, 0.82);
  border: 1px solid rgba(255,255,255,0.08);
}
.lyrics-block--featured {
  margin: 0 0 18px;
}
.lyrics-block__label {
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}
.lyrics-block__text {
  max-height: 260px;
  overflow: auto;
  white-space: pre-line;
  font-size: 12px;
  line-height: 1.65;
  color: var(--fg-2);
  padding-right: 6px;
  overscroll-behavior: contain;
}
.lyrics-block--featured .lyrics-block__text {
  max-height: 360px;
  font-size: 13px;
}
.lyrics-block__text::-webkit-scrollbar {
  width: 8px;
}
.lyrics-block__text::-webkit-scrollbar-thumb {
  background: rgba(0,229,255,0.28);
  border-radius: 999px;
}

/* Thumbnail facade (click-to-play) */
.yt-facade {
  position: absolute;
  inset: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
}
.yt-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity var(--dur-fast);
}
.yt-facade:hover .yt-thumb { opacity: 1; }
.yt-play-btn {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.65));
  transition: transform var(--dur-fast) var(--ease-pop);
}
.yt-facade:hover .yt-play-btn { transform: scale(1.15); }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: #08111F;
}
.gallery-item--wide { grid-column: span 2; }

.gallery-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform var(--dur-slow) var(--ease-soft);
}
.gallery-item:hover .gallery-item__img { transform: scale(1.05); }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5,8,18,0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity var(--dur-base);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item:hover {
  box-shadow: 0 0 0 2px rgba(0,229,255,0.5), var(--glow-cyan);
}

.gallery-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  border: 1px solid rgba(0,229,255,0.45);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: rgba(0,229,255,0.08);
}

/* Placeholder fill styles for gallery items without a photo */
.gallery-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-ph--album {
  background:
    radial-gradient(ellipse at 75% 30%, rgba(255,106,0,0.45) 0%, transparent 40%),
    radial-gradient(ellipse at 25% 80%, rgba(217,44,255,0.35) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(255,177,43,0.3) 0%, transparent 50%),
    #050812;
}
.gallery-ph--live {
  background:
    radial-gradient(ellipse 50% 80% at 30% 20%, rgba(216,30,60,0.45), transparent 60%),
    radial-gradient(ellipse 50% 80% at 70% 25%, rgba(0,76,255,0.35), transparent 60%),
    #050812;
}
.gallery-ph--bts {
  background:
    radial-gradient(circle at 50% 50%, rgba(0,229,255,0.18) 0%, transparent 60%),
    #08111F;
}

/* ---------- Booking / Contact ---------- */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 20px;
  align-items: start;
}
.contact-form {
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form--thanks {
  align-items: center;
  text-align: center;
  padding: 48px 32px;
  gap: 14px;
}
.contact-form--thanks h3 {
  font-size: 24px;
  color: #fff;
  margin: 0;
}
.contact-form--thanks p {
  color: var(--fg-2);
  margin: 0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-2);
  letter-spacing: 0.02em;
}
.form-field input,
.form-field textarea {
  width: 100%;
  background: rgba(8,17,31,0.85);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  color: var(--fg-1);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  resize: vertical;
  box-sizing: border-box;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--fg-3); }
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(0,229,255,0.12);
}
.reason-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}
.reason-chip {
  background: rgba(8,17,31,0.7);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-pill);
  color: var(--fg-2);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: pointer;
  transition: border-color var(--dur-fast), color var(--dur-fast), background var(--dur-fast);
}
.reason-chip:hover {
  border-color: var(--accent-cyan);
  color: var(--fg-1);
}
.reason-chip.active {
  background: rgba(0,229,255,0.1);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}
.form-submit { align-self: flex-start; }

.booking-side { display: flex; flex-direction: column; gap: 14px; }
.booking-info-card { padding: 20px 22px; }
.booking-info-card .eyebrow { margin-bottom: 12px; display: block; }
.booking-email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fg-1);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 14px;
  background: rgba(0,229,255,0.05);
  border: 1px solid rgba(0,229,255,0.25);
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast);
  word-break: break-all;
}
.booking-email-link:hover {
  background: rgba(0,229,255,0.12);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}
.booking-social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.booking-social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fg-2);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--dur-fast);
}
.booking-social-links a:hover { color: var(--accent-cyan); }

/* ---------- Responsive additions ---------- */
@media (max-width: 900px) {
  /* Show hamburger, hide desktop social */
  .jjnb-nav-toggle { display: flex; }
  .jjnb-social { display: none; }

  .jjnb-header {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .jjnb-logo {
    font-size: clamp(22px, 6vw, 26px);
  }

  .jjnb-hero__content {
    max-width: 42rem;
  }

  .jjnb-hero__intro,
  .jjnb-live__body p {
    max-width: none;
  }

  .jjnb-section__head--center {
    gap: 12px;
  }

  /* Videos */
  .featured-embed { grid-template-columns: 1fr; }
  .featured-embed__meta { padding: 4px 0; }
  .video-grid { grid-template-columns: 1fr 1fr; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .gallery-item--wide { grid-column: span 2; }

  /* Booking */
  .booking-layout { grid-template-columns: 1fr; }
  .booking-side { flex-direction: row; }
  .booking-info-card { flex: 1; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .jjnb-header {
    padding-left: 14px;
    padding-right: 14px;
  }

  .jjnb-hero {
    padding-top: 28px;
    gap: 22px;
  }

  .video-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item--wide { grid-column: span 1; }
  .booking-side { flex-direction: column; }
  .jjnb-hero__title {
    font-size: clamp(52px, 16vw, 90px);
    line-height: 0.9;
  }
  .jjnb-hero__title .w-your {
    margin-left: 0;
    margin-top: 4px;
  }
  .jjnb-hero__artist {
    font-size: clamp(30px, 12vw, 44px);
    margin-bottom: 18px;
  }
  .jjnb-hero__ctas .btn,
  .jjnb-release__ctas .btn,
  .featured-embed__meta .btn,
  .form-submit {
    width: 100%;
    justify-content: center;
  }
  .jjnb-section__head--center {
    flex-direction: column;
  }
  .divider-flourish {
    width: 92px;
  }
  .jjnb-artist {
    grid-template-columns: 1fr;
  }
  .jjnb-artist__portrait {
    max-width: 260px;
  }
  .jjnb-release {
    gap: 20px;
  }
  .jjnb-release__title,
  .jjnb-live__title {
    font-size: clamp(26px, 8vw, 34px);
  }
  .lyrics-block {
    padding: 12px;
  }
  .lyrics-block__text {
    max-height: 220px;
  }
  .jjnb-footer {
    padding-left: 16px;
    padding-right: 16px;
  }
  .jjnb-footer__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .jjnb-footer__clef {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .video-card:hover,
  .gallery-item:hover .gallery-item__img,
  .yt-facade:hover .yt-play-btn,
  .btn:hover {
    transform: none;
  }
}
