/* ============================================================
   TENDER ECHO SESSIONS — style.css
   Palette: parchment / warm cream / dusty mauve / amber gold
   Type: Lora (display/serif) + Nunito (ui/body)
   ============================================================ */

:root {
  --parchment:   #F5EFE0;
  --cream:       #FBF7EF;
  --warm-white:  #FFFDF8;
  --mauve:       #7B5EA7;
  --mauve-dim:   rgba(123, 94, 167, 0.15);
  --amber:       #C8813A;
  --amber-warm:  #E8A05A;
  --ink:         #2C2118;
  --ink-mid:     #5C4A38;
  --ink-soft:    #8C7A68;
  --ink-faint:   #C4B8A8;
  --border:      rgba(123, 94, 167, 0.2);

  --font-display: 'Lora', Georgia, serif;
  --font-ui:      'Nunito', system-ui, sans-serif;

  --max-w: 1160px;
  --section-pad: clamp(80px, 10vw, 130px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

.platform-links,
.nav-stream {
  display: flex;
  align-items: center;
  gap: 14px;
}
.platform-link {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: currentColor;
  opacity: .82;
  transition: opacity .2s, transform .2s, color .2s;
}
.platform-link svg { width: 22px; height: 22px; fill: currentColor; }
.platform-link:hover { opacity: 1; transform: translateY(-2px); }
.platform-link.is-disabled { opacity: .42; cursor: not-allowed; }
.platform-link.is-disabled:hover { transform: none; }
.platform-links--hero { color: var(--warm-white); gap: 18px; padding: 10px 4px; }
.platform-links--hero .platform-link { width: 34px; height: 34px; }
.platform-links--hero .platform-link svg { width: 25px; height: 25px; }

/* ---- NAV ---- */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  transition: background 0.3s, padding 0.3s, backdrop-filter 0.3s;
}

#nav.scrolled {
  background: rgba(251, 247, 239, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 40px;
  border-bottom: 1px solid var(--ink-faint);
  box-shadow: 0 1px 16px rgba(44,33,24,0.06);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  flex-shrink: 0;
}

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

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }

.nav-stream { margin-left: auto; color: #fffaf0; }

.stream-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 7px 14px;
  border-radius: 20px;
  border: 1px solid var(--ink-faint);
  color: var(--ink-soft);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.stream-btn.spotify:hover { border-color: #1DB954; color: #1DB954; }

/* ---- HAMBURGER ---- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  position: relative;
  z-index: 200;
}

.burger-line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease;
  transform-origin: center;
}
.menu-toggle.is-open .burger-line:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.menu-toggle.is-open .burger-line:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  pointer-events: none;
  visibility: hidden;
}
.mobile-menu.is-open { pointer-events: all; visibility: visible; }

.mobile-menu-bg {
  position: absolute;
  inset: 0;
  background: rgba(251, 247, 239, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu-bg::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(200,129,58,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.mobile-menu.is-open .mobile-menu-bg { opacity: 1; }

.mobile-menu-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px 36px 48px;
}

.mobile-nav-list { list-style: none; display: flex; flex-direction: column; }

.mobile-nav-item {
  border-bottom: 1px solid var(--ink-faint);
  overflow: hidden;
}

.mobile-nav-link {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 20px 0;
  text-decoration: none;
  transform: translateY(28px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.5s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.is-open .mobile-nav-link { opacity: 1; transform: translateY(0); }
.mobile-nav-link[data-index="0"] { transition-delay: 0.10s; }
.mobile-nav-link[data-index="1"] { transition-delay: 0.17s; }
.mobile-nav-link[data-index="2"] { transition-delay: 0.24s; }
.mobile-nav-link[data-index="3"] { transition-delay: 0.31s; }

.mobile-nav-num {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: var(--amber);
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.mobile-nav-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(44px, 13vw, 72px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  transition: color 0.2s;
}
.mobile-nav-link:hover .mobile-nav-text { color: var(--mauve); }

.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1) 0.42s, opacity 0.5s cubic-bezier(0.4,0,0.2,1) 0.42s;
}
.mobile-menu.is-open .mobile-menu-footer { opacity: 1; transform: translateY(0); }

.mobile-stream { display: flex; gap: 12px; }
.mobile-stream-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 9px 18px;
  border: 1px solid var(--ink-faint);
  border-radius: 24px;
  transition: border-color 0.2s, color 0.2s;
}
.mobile-stream-link:hover { border-color: #1DB954; color: #1DB954; }

.mobile-menu-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ink-faint);
}

body.menu-open { overflow: hidden; }

/* ---- HERO ---- */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img-mask {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* warm gradient over image — lighter at bottom to let parchment sections connect */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(44,33,24,0.62) 0%, rgba(44,33,24,0.2) 60%, transparent 100%),
    linear-gradient(to top, rgba(251,247,239,0.5) 0%, transparent 30%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--amber-warm);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 1.12;
  color: var(--warm-white);
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(44,33,24,0.3);
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--amber-warm);
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,253,248,0.82);
  margin-bottom: 36px;
  max-width: 360px;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--amber);
  color: var(--warm-white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 24px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--amber-warm); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 13px 26px;
  border: 1px solid rgba(255,253,248,0.45);
  color: rgba(255,253,248,0.85);
  font-size: 0.82rem;
  font-weight: 400;
  border-radius: 24px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--warm-white); color: var(--warm-white); }

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-scroll-hint span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(255,253,248,0.45);
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,253,248,0.4), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ---- SECTION SHARED ---- */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

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

.section-header h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}
.section-lead {
  font-size: 1rem;
  color: var(--ink-soft);
  font-weight: 300;
}

/* ---- MUSIC ---- */
#music {
  padding: var(--section-pad) 0;
  background: var(--parchment);
  position: relative;
}
#music::before {
  content: '';
  position: absolute;
  top: -2px; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, var(--cream), transparent);
  pointer-events: none;
}

.releases-shelf {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.release { display: flex; flex-direction: column; }

.release-art {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink-faint);
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(44,33,24,0.12);
}
.release-art img {
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.release:hover .release-art img { transform: none; opacity: 1; }


.release-year {
  font-size: 0.68rem;
  color: var(--amber);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 5px;
}
.release-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
  line-height: 1.3;
}
.release-type {
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.release-desc {
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.stream-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 36px;
  border-top: 1px solid var(--ink-faint);
}
.stream-bar p { font-size: 0.82rem; color: var(--ink-soft); }


/* ---- TOUR ---- */
#tour {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.tour-list { border-top: 1px solid var(--ink-faint); }

.tour-row {
  display: grid;
  grid-template-columns: 70px 1fr 160px 120px;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--ink-faint);
  transition: background 0.2s;
}
.tour-row--upcoming:hover { background: rgba(200,129,58,0.04); }
.tour-row--past { opacity: 0.4; }

.tour-day {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
  display: block;
}
.tour-month {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  display: block;
}
.tour-venue { font-size: 0.95rem; font-weight: 500; margin-bottom: 3px; }
.tour-location { font-size: 0.78rem; color: var(--ink-soft); }
.tour-note { font-size: 0.78rem; color: var(--ink-soft); font-style: italic; }

.tour-ticket {
  display: inline-flex;
  justify-content: center;
  padding: 9px 20px;
  border: 1px solid var(--amber);
  border-radius: 20px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.tour-ticket:hover { background: var(--amber); color: var(--warm-white); }

.tour-past-label {
  font-size: 0.72rem;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
  text-align: right;
}

/* ---- ABOUT ---- */
#about {
  padding: var(--section-pad) 0;
  background: var(--parchment);
}

.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

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

.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 10px;
  box-shadow: 0 12px 48px rgba(44,33,24,0.15);
}

.about-text-col h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 28px;
}

.about-body {
  font-size: 1rem;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 18px;
  max-width: 52ch;
}

.about-listen { margin-top: 36px; }

/* ---- CONTACT ---- */
#contact {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-faint);
  border: 1px solid var(--ink-faint);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
}

.contact-card {
  background: var(--parchment);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--amber);
  font-weight: 500;
}

.contact-card a {
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.contact-card a:hover { color: var(--ink); }

.social-row {
  display: flex;
  gap: 28px;
  padding-top: 36px;
  border-top: 0;
}
.social-row a {
  font-size: 0.8rem;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.social-row a:hover { color: var(--ink); }

/* ---- FOOTER ---- */
footer {
  background: var(--ink);
  padding: 28px 40px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-faint);
}
.footer-copy { font-size: 0.72rem; color: var(--ink-soft); }
.footer-credit { font-size: 0.72rem; color: var(--ink-soft); }
.footer-credit a { color: var(--amber-warm); transition: color 0.2s; }
.footer-credit a:hover { color: var(--warm-white); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  #nav { padding: 16px 24px; }
  #nav.scrolled { padding: 12px 24px; }
  .nav-links, .nav-stream { display: none; }
  .menu-toggle { display: flex; }
  .hero-content, .section-inner { padding: 0 24px; }
  .releases-shelf { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .tour-row { grid-template-columns: 60px 1fr 100px; }
  .tour-note { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .about-img-col { position: static; }
  .about-img { aspect-ratio: 9/16; max-height: 70vw; }
  .contact-grid { grid-template-columns: 1fr; }
  footer { padding: 24px; }
}

@media (max-width: 600px) {
  .releases-shelf { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .tour-row { grid-template-columns: 50px 1fr 80px; gap: 12px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .stream-bar { flex-wrap: wrap; }
  .social-row { flex-wrap: wrap; gap: 16px; }
  .footer-inner { flex-direction: column; text-align: center; }
}

/* ============================================================
   HOLLOW SIGNAL PALETTE — deep ink, violet, acid and ivory
   ============================================================ */
:root {
  --parchment: #10101b;
  --cream: #10101b;
  --warm-white: #f4f0e8;
  --mauve: #7658ff;
  --mauve-dim: rgba(118,88,255,.16);
  --amber: #d8ff5f;
  --amber-warm: #d8ff5f;
  --ink: #080810;
  --ink-mid: #9b98a8;
  --ink-soft: #9b98a8;
  --ink-faint: rgba(244,240,232,.18);
  --border: rgba(244,240,232,.16);
}

html, body { background: var(--ink); color: var(--warm-white); }
::selection { background: var(--amber); color: var(--ink); }
.page-grain { opacity: .055; mix-blend-mode: screen; }

#music {
  background:
    radial-gradient(circle at 18% 24%, rgba(118,88,255,.14), transparent 29%),
    var(--cream);
  color: var(--warm-white);
}
.section-kicker, .release-year { color: var(--amber); }
.section-lead { color: var(--ink-soft); border-color: var(--border); }
.release-art {
  background: var(--panel, #151522);
  box-shadow: 0 18px 52px rgba(0,0,0,.34);
  border: 1px solid rgba(244,240,232,.12);
}
.release-title { color: var(--warm-white); }
.release-type, .release-desc { color: var(--ink-soft); }

.availability-strip {
  background: linear-gradient(118deg, #151522, #21173d 72%, #151522);
  border: 1px solid rgba(216,255,95,.18);
  box-shadow: 0 18px 54px rgba(0,0,0,.32);
}
.availability-copy span { color: var(--amber); }

.listen-now-btn {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--ink);
  box-shadow: 0 0 0 0 rgba(216,255,95,.42);
}
.listen-now-btn:hover {
  background: var(--warm-white);
  color: var(--ink);
  box-shadow: 0 7px 24px rgba(216,255,95,.22);
}
@keyframes listenPulse {
  0% { box-shadow: 0 0 0 0 rgba(216,255,95,.48); }
  60% { box-shadow: 0 0 0 8px rgba(216,255,95,0); }
  100% { box-shadow: 0 0 0 0 rgba(216,255,95,0); }
}

#about { background: var(--warm-white); color: var(--ink); }
#about .section-kicker { color: var(--violet-hot, #7658ff); }
#about .about-body { color: rgba(8,8,16,.7); }
#about .about-body:first-of-type::first-letter { color: #7658ff; }
#about .platform-link { color: var(--ink); }

#contact { background: #7658ff; color: var(--warm-white); }
#contact .section-kicker { color: var(--amber); }
#contact .contact-card a { color: var(--warm-white); }
#contact .platform-link { color: var(--warm-white); }
#contact .platform-link:hover { color: var(--amber); }

footer { background: var(--ink); border-color: var(--border); }
.footer-copy, .footer-credit { color: var(--ink-soft); }
.footer-credit a:hover { color: var(--amber); }

.mobile-menu-bg { background: rgba(8,8,16,.98); }
.mobile-menu-bg::after { background: #7658ff; }
.mobile-nav-num { color: var(--amber); }
.mobile-nav-item { border-color: var(--border); }
.mobile-menu-close { background: var(--amber); border-color: var(--amber); }
.mobile-menu-close span { background: var(--ink); }

.listen-modal-backdrop { background: rgba(8,8,16,.68); }
.listen-modal-balloon {
  background: #151522;
  color: var(--warm-white);
  border-color: rgba(216,255,95,.25);
  box-shadow: 0 24px 72px rgba(0,0,0,.5);
}
.listen-modal-title { color: var(--warm-white); }
.listen-modal-eyebrow { color: var(--amber); }
.listen-modal-close { color: var(--ink-soft); }
.listen-modal-close:hover { background: rgba(244,240,232,.1); color: var(--warm-white); }

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

/* ============================================================
   EDITORIAL REFRESH — warm indie record journal
   ============================================================ */
:root {
  --parchment: #efe6d3;
  --cream: #f8f3e9;
  --warm-white: #fffaf0;
  --mauve: #5a3d59;
  --amber: #bd713d;
  --amber-warm: #edb06d;
  --ink: #281c22;
  --ink-mid: #5c4d4e;
  --ink-soft: #817174;
  --ink-faint: #c9baad;
  --border: rgba(90,61,89,.2);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'Manrope', system-ui, sans-serif;
  --max-w: 1240px;
  --section-pad: clamp(96px, 11vw, 160px);
}

body { overflow-x: hidden; }
::selection { background: var(--mauve); color: var(--warm-white); }
.page-grain {
  position: fixed; inset: 0; z-index: 999; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.84' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Navigation is legible over the artwork, then becomes parchment on scroll. */
#nav {
  z-index: 200;
  padding: 18px clamp(24px,4vw,52px);
  background: linear-gradient(to bottom, rgba(27,18,28,.78), rgba(27,18,28,.2), transparent);
}
#nav::after {
  content: ''; position: absolute; left: clamp(24px,4vw,52px); right: clamp(24px,4vw,52px); bottom: 0;
  height: 1px; background: rgba(255,250,240,.22);
}
#nav.scrolled {
  background: rgba(248,243,233,.92); color: var(--ink); border: 0;
  padding: 12px clamp(24px,4vw,52px); box-shadow: 0 8px 34px rgba(40,28,34,.08);
}
#nav.scrolled::after { left: 0; right: 0; background: rgba(90,61,89,.16); }
.nav-inner { max-width: var(--max-w); }
.nav-logo { color: var(--warm-white); font-size: 1.4rem; font-weight: 600; letter-spacing: -.025em; }
.nav-links a { color: rgba(255,250,240,.76); text-transform: uppercase; letter-spacing: .14em; font-size: .64rem; }
.nav-links a:hover { color: var(--warm-white); }
.stream-btn { color: var(--warm-white); border-color: rgba(255,250,240,.35); text-transform: uppercase; letter-spacing: .1em; }
.burger-line { background: var(--warm-white); }
#nav.scrolled .nav-logo, #nav.scrolled .nav-links a, #nav.scrolled .stream-btn { color: var(--ink); }
#nav.scrolled .stream-btn { border-color: rgba(40,28,34,.25); }
#nav.scrolled .burger-line { background: var(--ink); }
body.menu-open #nav .nav-logo { color: var(--ink); }
body.menu-open #nav .burger-line { background: var(--ink); }
body.menu-open #nav { background: transparent; box-shadow: none; }
body.menu-open #nav::after { background: rgba(40,28,34,.16); }

/* Hero */
#hero { min-height: 720px; height: 100svh; align-items: flex-end; isolation: isolate; }
.hero-img { object-position: center 48%; transform: scale(1.015); animation: tenderHero 1.4s cubic-bezier(.22,1,.36,1) both; }
.hero-img-mask::after {
  content: none;
}
.hero-overlay {
  background:
    linear-gradient(to top, rgba(30,18,30,.9) 0%, rgba(42,25,39,.46) 43%, rgba(30,18,30,.08) 78%),
    linear-gradient(to right, rgba(34,20,32,.5), transparent 60%);
}
.hero-content { max-width: var(--max-w); padding: 0 clamp(24px,5vw,72px) clamp(82px,9vh,118px); }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 22px;
  color: var(--amber-warm); text-transform: uppercase; letter-spacing: .2em; font-size: .62rem;
}
.hero-eyebrow::before { content: ''; width: 34px; height: 1px; background: currentColor; }
.hero-title {
  max-width: 850px; font-size: clamp(58px,7.4vw,110px); line-height: .88; letter-spacing: -.045em;
  font-weight: 500; margin-bottom: 28px; text-shadow: 0 4px 36px rgba(24,13,23,.45);
}
.hero-title em { color: var(--warm-white); font-weight: 400; }
.hero-sub { max-width: 430px; font-size: clamp(.95rem,1.3vw,1.1rem); line-height: 1.7; }
.btn-primary, .btn-ghost { border-radius: 0; min-height: 50px; padding: 0 23px; text-transform: uppercase; letter-spacing: .12em; font-size: .66rem; }
.btn-primary { background: var(--amber-warm); color: var(--ink); }
.btn-primary:hover { background: var(--warm-white); }
.hero-note {
  position: absolute; right: clamp(24px,5vw,72px); bottom: clamp(84px,9vh,118px); z-index: 2;
  width: 250px; padding: 18px 0 0; border-top: 1px solid rgba(255,250,240,.55); color: var(--warm-white);
}
.hero-note span { display: block; margin-bottom: 10px; color: var(--amber-warm); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; }
.hero-note strong { font: italic 400 1.42rem/1.15 var(--font-display); }
.hero-scroll-hint { left: auto; right: 42px; bottom: 22px; flex-direction: row; transform: rotate(90deg); transform-origin: right center; }
.scroll-line { width: 44px; height: 1px; background: rgba(255,250,240,.35); }
@keyframes tenderHero { from { opacity: 0; transform: scale(1.08); } to { opacity: 1; transform: scale(1.015); } }

/* Shared editorial headings */
.section-header { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: end; margin-bottom: clamp(52px,7vw,88px); }
.section-kicker { grid-column: 1/-1; color: var(--amber); text-transform: uppercase; letter-spacing: .18em; font-size: .61rem; margin-bottom: 17px; }
.section-header h2, .about-text-col h2 { font-size: clamp(56px,8vw,100px); line-height: .82; letter-spacing: -.045em; font-weight: 500; }
.section-lead { max-width: 280px; padding-left: 24px; border-left: 1px solid var(--ink-faint); }

/* Music: untouched square album covers in an equal two-column layout. */
#music { background: var(--cream); }
#music::before { display: none; }
.releases-shelf { grid-template-columns: repeat(2,minmax(0,1fr)); gap: clamp(38px,5vw,68px) clamp(28px,4vw,56px); }
.release:first-child { grid-column: auto; }
.release-art { border-radius: 0; aspect-ratio: 1 / 1; margin-bottom: 19px; box-shadow: 0 15px 42px rgba(40,28,34,.12); background: transparent; }
.release-art img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; transition: none; }
.release:hover .release-art img { opacity: 1; transform: none; filter: none; }
.release:last-child:nth-child(odd) { grid-column: 1 / -1; width: calc((100% - clamp(28px,4vw,56px)) / 2); justify-self: center; }
.release-meta { position: relative; padding-left: 0; text-align: center; }
.release-year { position: static; color: var(--amber); margin-bottom: 8px; }
.release-title { font-size: clamp(1.2rem,2vw,1.65rem); line-height: 1.05; font-weight: 500; letter-spacing: -.025em; }
.release-type { text-transform: uppercase; letter-spacing: .11em; font-size: .58rem; margin-top: 8px; }
.release-desc { max-width: 42ch; margin: 11px auto 0; }
.availability-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: calc(clamp(52px,7vw,88px) * -0.42) 0 clamp(48px,5vw,72px);
  padding: clamp(24px,3vw,34px) clamp(24px,3.5vw,44px);
  background: var(--ink);
  color: var(--warm-white);
  box-shadow: 0 16px 44px rgba(40,28,34,.13);
}
.availability-copy span { display: block; color: var(--amber-warm); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 8px; }
.availability-copy p { font: italic 400 clamp(1.35rem,2.5vw,2rem)/1.15 var(--font-display); }
.availability-strip .platform-links { gap: clamp(18px,2.5vw,30px); }
.availability-strip .platform-link {
  width: clamp(32px,3vw,42px);
  height: clamp(32px,3vw,42px);
  opacity: 1;
  animation: platformPulse 2.7s ease-in-out infinite;
  transform-origin: center;
}
.availability-strip .platform-link:nth-child(1) { color: #1ed760; }
.availability-strip .platform-link:nth-child(2) { color: #fa243c; animation-delay: .35s; }
.availability-strip .platform-link:nth-child(3) { color: #ff0033; animation-delay: .7s; }
.availability-strip .platform-link:hover { filter: brightness(1.18); }
.availability-strip .platform-link.is-disabled { opacity: 1; }
@keyframes platformPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 transparent); }
  50% { transform: scale(1.1); filter: drop-shadow(0 0 9px currentColor); }
}
@media (prefers-reduced-motion: reduce) {
  .availability-strip .platform-link { animation: none; }
}

@media (min-width: 901px) {
  .release-desc { max-width: none; white-space: nowrap; }
}

/* About */
#about { background: var(--parchment); }
.about-inner { max-width: var(--max-w); grid-template-columns: 1.13fr .87fr; gap: clamp(50px,8vw,120px); padding: 0 clamp(24px,5vw,72px); }
.about-img { border-radius: 0; aspect-ratio: 4/5; box-shadow: 18px 18px 0 rgba(90,61,89,.13); }
.about-text-col { padding-top: 30px; }
.about-text-col .section-kicker { display: block; }
.about-text-col h2 { margin-bottom: 44px; }
.about-body { font-size: clamp(.96rem,1.2vw,1.07rem); }
.about-body:first-of-type::first-letter { float: left; font: 500 4.7rem/.72 var(--font-display); color: var(--mauve); margin: 12px 10px 0 0; }
.story-gallery {
  max-width: var(--max-w);
  margin: clamp(72px,8vw,110px) auto 0;
  padding: 0 clamp(24px,5vw,72px);
  columns: 3;
  column-gap: clamp(10px,1.2vw,16px);
  height: auto !important;
}
.story-gallery figure {
  display: block;
  overflow: hidden;
  background: var(--ink-faint);
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  break-inside: avoid;
  margin-bottom: clamp(10px,1.2vw,16px);
}
/* Natural aspect ratio — let height follow image */
.story-gallery img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: unset;
  opacity: 1 !important;
  visibility: visible !important;
}
/* Column order: force specific images into specific columns */
.story-gallery__wide    { order: 1; }
.story-gallery__detail  { order: 3; }  /* col 3 top */
.story-gallery__portrait { order: 2; } /* col 2 */
.story-gallery__sq      { }
.story-gallery__land    { }
/* Fine-tune object positions no longer needed — natural crop */

/* Contact */
#contact { background: var(--cream); }
.contact-inner .section-header { display: block; text-align: center; }
.contact-inner .section-kicker { text-align: center; }
.contact-grid { display: block; border-radius: 0; background: transparent; border: 0; }
.contact-card { background: transparent; padding: 8px 24px; border: 0; text-align: center; align-items: center; }
.contact-card + .contact-card { padding-left: 24px; border-left: 1px solid var(--ink-faint); }
.contact-label { text-transform: uppercase; letter-spacing: .15em; font-size: .6rem; }
.contact-card a { color: var(--ink); font: 500 clamp(1rem,1.7vw,1.3rem) var(--font-display); }
.social-row a,.social-row span { border: 1px solid var(--ink-faint); border-radius: 99px; padding: 9px 16px; text-transform: uppercase; letter-spacing: .1em; font-size: .6rem; }
.social-row a:hover { background: var(--mauve); border-color: var(--mauve); color: var(--warm-white); }
.social-row span { opacity: .55; cursor: not-allowed; }
.social-row .platform-links { gap: 14px; }
.social-row .platform-link,
.social-row .platform-link.is-disabled {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.social-row .platform-link:hover { background: transparent; color: var(--mauve); }
.contact-inner .social-row { justify-content: center; padding-top: 28px; }

footer { background: var(--ink); }
.footer-name { color: var(--warm-white); font-size: 1.1rem; }

/* Reveal rules used by the existing script. */
.reveal-ready .release,.reveal-ready .tour-row,.reveal-ready .about-img-col,.reveal-ready .about-text-col,.reveal-ready .contact-card { opacity: 0; transform: translateY(28px); transition: opacity .75s,transform .75s cubic-bezier(.22,1,.36,1); }
.reveal-ready .is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  #nav, #nav.scrolled { padding-left: 24px; padding-right: 24px; }
  #nav::after { left: 24px; right: 24px; }
  .hero-content { padding: 0 24px 76px; }
  .hero-note { display: none; }
  .hero-title { font-size: clamp(54px,11vw,82px); max-width: 680px; }
  .releases-shelf { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .release:first-child { grid-column: auto; }
  .release:last-child:nth-child(odd) { grid-column: 1 / -1; width: calc((100% - clamp(28px,4vw,56px)) / 2); }
  .tour-row { grid-template-columns: 70px minmax(0,1fr) 100px; }
  .about-inner { padding-inline: 24px; grid-template-columns: 1fr; }
  .about-img { aspect-ratio: 9/16; box-shadow: 12px 12px 0 rgba(90,61,89,.13); }
  .story-gallery { padding-inline: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card,.contact-card+.contact-card { padding: 24px 0; border-left: 0; }
}

@media (max-width: 600px) {
  html,body { max-width: 100%; overflow-x: hidden; }
  #hero { min-height: 700px; }
  .hero-img { object-position: 82% center; }
  .hero-overlay { background: linear-gradient(to top,rgba(30,18,30,.94),rgba(42,25,39,.4) 62%,rgba(30,18,30,.16)); }
  .hero-content { padding-bottom: 64px; }
  .hero-title { font-size: clamp(49px,14vw,64px); line-height: .91; }
  .hero-sub { max-width: 310px; margin-bottom: 28px; }
  .hero-ctas { align-items: stretch; max-width: 275px; }
  .hero-ctas a { justify-content: center; }
  .hero-scroll-hint { display: none; }
  .section-header { display: block; }
  .section-header h2,.about-text-col h2 { font-size: clamp(54px,18vw,72px); }
  .section-lead { margin-top: 26px; max-width: 100%; }
  .availability-strip { align-items: flex-start; flex-direction: column; margin-top: -22px; padding: 24px; }
  .releases-shelf { display: block; }
  .release,.release:first-child { margin-bottom: 52px; }
  .release:last-child:nth-child(odd) { width: 100%; }
  .release-meta { padding-left: 0; }
  .stream-bar { margin-top: 15px; }
  .tour-row { grid-template-columns: 54px minmax(0,1fr) 74px; padding-inline: 0; gap: 10px; }
  .tour-row--upcoming:hover { padding-inline: 10px; }
  .tour-day { font-size: 1.8rem; }
  .tour-ticket { padding-inline: 7px; }
  .about-img { aspect-ratio: 4/5; }
  .about-text-col { padding-top: 15px; }
  .story-gallery { columns: 2; column-gap: 8px; padding-inline: 16px; margin-top: 26px; }
  .story-gallery figure { margin-bottom: 8px; }
  .story-gallery__sq:nth-child(8) { display: block; }
  .contact-card a { font-size: clamp(1rem,5vw,1.2rem); overflow-wrap: anywhere; }
  .mobile-menu-inner { padding-inline: 24px; }
  .mobile-nav-text { font-size: clamp(44px,15vw,62px); }
}

/* High-contrast navigation and fail-safe menu close control */
#nav,
#nav.scrolled {
  padding: 14px clamp(18px,3vw,34px);
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
#nav::after,
#nav.scrolled::after { display: none; }
.nav-inner {
  max-width: var(--max-w);
  min-height: 54px;
  padding: 10px 14px 10px 20px;
  border: 1px solid rgba(255,250,240,.26);
  border-radius: 8px;
  background: rgba(34,22,33,.82);
  box-shadow: 0 10px 32px rgba(24,14,23,.22);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
}
.nav-logo,
#nav.scrolled .nav-logo { color: #fffaf0; text-shadow: 0 1px 10px rgba(0,0,0,.25); }
.nav-links a,
#nav.scrolled .nav-links a { color: rgba(255,250,240,.86); font-weight: 500; }
.nav-links a:hover,
#nav.scrolled .nav-links a:hover { color: #fff; }
.stream-btn,
#nav.scrolled .stream-btn {
  color: #fffaf0;
  border-color: rgba(255,250,240,.55);
  background: rgba(255,250,240,.1);
  font-weight: 600;
}
.stream-btn.spotify:hover,
#nav.scrolled .stream-btn.spotify:hover { color: #16251c; border-color: #bde8c9; background: #bde8c9; }
.burger-line,
#nav.scrolled .burger-line { background: #fffaf0; }

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(40,28,34,.3);
  border-radius: 50%;
  background: rgba(255,250,240,.75);
  cursor: pointer;
}
.mobile-menu-close span {
  position: absolute;
  left: 11px;
  top: 21px;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
}
.mobile-menu-close span:first-child { transform: rotate(45deg); }
.mobile-menu-close span:last-child { transform: rotate(-45deg); }
.mobile-menu-close:hover { background: var(--mauve); border-color: var(--mauve); }
.mobile-menu-close:hover span { background: var(--warm-white); }

body.menu-open #nav { visibility: hidden; }

@media (min-width: 901px) {
  .mobile-menu-close { display: none; }
}

@media (max-width: 900px) {
  #nav,
  #nav.scrolled { padding: 12px 14px; }
  .nav-inner { min-height: 52px; padding: 8px 10px 8px 16px; }
  .nav-logo { font-size: 1.28rem; }
  .menu-toggle { display: flex; }
}

/* ============================================================
   LISTEN NOW BUTTON + BALLOON MODAL
   ============================================================ */

/* --- Pulsing "Listen Now" button on album art --- */
.listen-now-btn {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 18px;
  margin: 22px auto 0;
  background: var(--ink, #2C2118);
  border: 1px solid rgba(200, 129, 58, 0.5);
  border-radius: 24px;
  color: var(--parchment, #F5EFE0);
  font-family: var(--font-ui, 'Nunito', sans-serif);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  cursor: pointer;
  z-index: 3;
  width: fit-content;
  box-shadow: 0 0 0 0 rgba(200, 129, 58, 0.5);
  animation: listenPulse 2.2s ease-in-out infinite;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.listen-now-btn:hover {
  background: var(--amber, #C8813A);
  border-color: transparent;
  transform: translateY(-2px);
  animation: none;
  box-shadow: 0 6px 20px rgba(200, 129, 58, 0.4);
}

.headset-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  stroke: currentColor;
}

@keyframes listenPulse {
  0%   { box-shadow: 0 0 0 0 rgba(200, 129, 58, 0.55); }
  60%  { box-shadow: 0 0 0 8px rgba(200, 129, 58, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 129, 58, 0); }
}

/* --- Modal backdrop --- */
.listen-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  visibility: hidden;
}
.listen-modal.is-open {
  pointer-events: all;
  visibility: visible;
}

.listen-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(44, 33, 24, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.listen-modal.is-open .listen-modal-backdrop { opacity: 1; }

/* --- Balloon card --- */
.listen-modal-balloon {
  position: relative;
  background: var(--cream, #FBF7EF);
  border: 1px solid rgba(200, 129, 58, 0.25);
  border-radius: 20px;
  padding: 32px 36px 28px;
  width: min(380px, calc(100vw - 48px));
  box-shadow:
    0 24px 64px rgba(44,33,24,0.22),
    0 4px 16px rgba(44,33,24,0.1);
  transform: scale(0.88) translateY(12px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
  z-index: 1;
}
.listen-modal.is-open .listen-modal-balloon {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* tail removed */

/* Close button */
.listen-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--ink-soft, #8C7A68);
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.listen-modal-close:hover { background: rgba(44,33,24,0.08); color: var(--ink, #2C2118); }

.listen-modal-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--amber, #C8813A);
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
  text-align: center;
}

.listen-modal-title {
  font-family: var(--font-display, 'Lora', serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink, #2C2118);
  margin-bottom: 24px;
  line-height: 1.3;
  text-align: center;
}

/* --- Three platform buttons inside modal --- */
.listen-modal-platforms {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.modal-platform-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 84px;
  padding: 14px 8px 12px;
  border-radius: 14px;
  border: 1.5px solid transparent;
  font-family: var(--font-ui, 'Nunito', sans-serif);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.modal-platform-btn:hover { transform: translateY(-3px); }

.modal-platform-btn svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* Apple icon needs a touch more vertical nudge to sit optically centred */
.modal-apple svg {
  margin-top: 3px;
}

.modal-platform-btn span:not(.modal-pulse-ring) {
  position: relative;
  z-index: 1;
  line-height: 1;
  white-space: nowrap;
}

/* Spotify */
.modal-spotify {
  background: rgba(29, 215, 84, 0.1);
  border-color: rgba(29, 215, 84, 0.35);
  color: #1a7a3a;
}
.modal-spotify svg { fill: #1DB954; }
.modal-spotify:hover {
  background: rgba(29, 215, 84, 0.18);
  box-shadow: 0 6px 20px rgba(29, 215, 84, 0.25);
}

/* Apple */
.modal-apple {
  background: rgba(250, 36, 60, 0.08);
  border-color: rgba(250, 36, 60, 0.3);
  color: #8a1a22;
}
.modal-apple svg { fill: #fa243c; }
.modal-apple.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.modal-apple.is-disabled:hover { transform: none; box-shadow: none; }

/* YouTube Music */
.modal-ytm {
  background: rgba(255, 0, 51, 0.08);
  border-color: rgba(255, 0, 51, 0.28);
  color: #8a0019;
}
.modal-ytm svg { stroke: #ff0033; }
.modal-ytm:hover {
  background: rgba(255, 0, 51, 0.15);
  box-shadow: 0 6px 20px rgba(255, 0, 51, 0.2);
}

/* Pulsing ring per platform */
.modal-pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  animation: modalRingPulse 2.4s ease-in-out infinite;
  pointer-events: none;
}
.modal-spotify .modal-pulse-ring  { background: radial-gradient(circle, rgba(29,215,84,0.18) 0%, transparent 70%); animation-delay: 0s; }
.modal-apple .modal-pulse-ring    { background: radial-gradient(circle, rgba(250,36,60,0.15) 0%, transparent 70%); animation-delay: 0.8s; }
.modal-ytm .modal-pulse-ring      { background: radial-gradient(circle, rgba(255,0,51,0.15) 0%, transparent 70%); animation-delay: 1.6s; }

.modal-apple.is-disabled .modal-pulse-ring { animation: none; }

@keyframes modalRingPulse {
  0%   { opacity: 0; transform: scale(0.8); }
  40%  { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.15); }
}

/* Mobile: ensure button visible on smaller album art */
@media (max-width: 600px) {
  .listen-now-btn {
    font-size: 0.65rem;
    padding: 6px 12px;
    gap: 5px;
    bottom: 8px;
  }
  .headset-icon { width: 13px; height: 13px; }
  .listen-modal-balloon { padding: 28px 24px 24px; }
  .modal-platform-btn { width: 76px; }
}

/* Final Hollow Signal palette layer */
:root {
  --parchment:#10101b;
  --cream:#10101b;
  --warm-white:#f4f0e8;
  --mauve:#7658ff;
  --mauve-dim:rgba(118,88,255,.16);
  --amber:#d8ff5f;
  --amber-warm:#d8ff5f;
  --ink:#080810;
  --ink-mid:#9b98a8;
  --ink-soft:#9b98a8;
  --ink-faint:rgba(244,240,232,.18);
  --border:rgba(244,240,232,.16);
}
html,body{background:var(--ink);color:var(--warm-white)}
::selection{background:var(--amber);color:var(--ink)}
.page-grain{opacity:.055;mix-blend-mode:screen}
#music{background:radial-gradient(circle at 18% 20%,rgba(118,88,255,.15),transparent 30%),var(--cream);color:var(--warm-white)}
.section-kicker,.release-year{color:var(--amber)}
.section-lead{color:var(--ink-soft);border-color:var(--border)}
.release-art{background:#151522;border:1px solid rgba(244,240,232,.12);box-shadow:0 18px 52px rgba(0,0,0,.34)}
.release-title{color:var(--warm-white)}
.release-type,.release-desc{color:var(--ink-soft)}
.availability-strip{background:linear-gradient(118deg,#151522,#21173d 72%,#151522);border:1px solid rgba(216,255,95,.18);box-shadow:0 18px 54px rgba(0,0,0,.32)}
.availability-copy span{color:var(--amber)}
.listen-now-btn{background:var(--amber);border-color:var(--amber);color:var(--ink);box-shadow:0 0 0 0 rgba(216,255,95,.42)}
.listen-now-btn:hover{background:var(--warm-white);color:var(--ink);box-shadow:0 7px 24px rgba(216,255,95,.22)}
@keyframes listenPulse{0%{box-shadow:0 0 0 0 rgba(216,255,95,.48)}60%{box-shadow:0 0 0 8px rgba(216,255,95,0)}100%{box-shadow:0 0 0 0 rgba(216,255,95,0)}}
#about{background:var(--warm-white);color:var(--ink)}
#about .section-kicker{color:#7658ff}
#about .about-body{color:rgba(8,8,16,.7)}
#about .about-body:first-of-type::first-letter{color:#7658ff}
#about .platform-link{color:var(--ink)}
#contact{background:#7658ff;color:var(--warm-white)}
#contact .section-kicker{color:var(--amber)}
#contact .contact-card a,#contact .platform-link{color:var(--warm-white)}
#contact .platform-link:hover{color:var(--amber)}
footer{background:var(--ink);border-color:var(--border)}
.footer-name{color:var(--warm-white)}
.footer-copy,.footer-credit{color:var(--ink-soft)}
.footer-credit a:hover{color:var(--amber)}
.mobile-menu-bg{background:rgba(8,8,16,.98)}
.mobile-menu-bg::after{background:#7658ff}
.mobile-nav-num{color:var(--amber)}
.mobile-nav-item{border-color:var(--border)}
.mobile-menu-close{background:var(--amber);border-color:var(--amber)}
.mobile-menu-close span{background:var(--ink)}
.listen-modal-backdrop{background:rgba(8,8,16,.68)}
.listen-modal-balloon{background:#151522;color:var(--warm-white);border-color:rgba(216,255,95,.25);box-shadow:0 24px 72px rgba(0,0,0,.5)}
.listen-modal-title{color:var(--warm-white)}
.listen-modal-eyebrow{color:var(--amber)}
.listen-modal-close{color:var(--ink-soft)}
.listen-modal-close:hover{background:rgba(244,240,232,.1);color:var(--warm-white)}

/* Seamless lower-page composition */
#about {
  position: relative;
  padding: clamp(92px,9vw,132px) 0 clamp(86px,8vw,120px);
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 15%,rgba(118,88,255,.18),transparent 31%),
    linear-gradient(180deg,#10101b 0%,#151522 55%,#11111d 100%);
  color: var(--warm-white);
  border-top: 1px solid rgba(244,240,232,.1);
}
#about::before {
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(115deg,transparent 58%,rgba(216,255,95,.035));
}
.about-inner {
  position:relative;
  z-index:1;
  grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);
  align-items:center;
  gap:clamp(48px,7vw,100px);
}
.about-img-col { top: 104px; }
.about-img {
  aspect-ratio:4/5;
  border:1px solid rgba(244,240,232,.16);
  box-shadow:18px 18px 0 rgba(118,88,255,.2),0 28px 70px rgba(0,0,0,.34);
}
.about-text-col { padding-top:0; }
#about .section-kicker { color:var(--amber); }
#about .about-text-col h2 { color:var(--warm-white);margin-bottom:clamp(30px,4vw,48px); }
#about .about-body { color:rgba(244,240,232,.7);font-size:clamp(1rem,1.25vw,1.08rem);line-height:1.86; }
#about .about-body:first-of-type::first-letter { color:var(--amber); }
#about .platform-links { margin-top:30px; }
#about .platform-link { color:var(--warm-white); }
#about .platform-link:hover { color:var(--amber); }

.story-gallery {
  position:relative;
  z-index:1;
  height:clamp(430px,43vw,600px);
  margin-top:clamp(62px,7vw,92px);
  gap:clamp(12px,1.5vw,18px);
}
.story-gallery figure {
  border:1px solid rgba(244,240,232,.12);
  background:#080810;
  box-shadow:0 18px 50px rgba(0,0,0,.2);
}
.story-gallery img { filter:saturate(.88) contrast(1.04); }

#contact {
  position:relative;
  overflow:hidden;
  padding:clamp(84px,8vw,116px) 0 clamp(74px,7vw,100px);
  background:
    radial-gradient(circle at 50% 0,rgba(118,88,255,.36),transparent 45%),
    #0c0c16;
  color:var(--warm-white);
  border-top:1px solid rgba(216,255,95,.18);
}
#contact::before {
  content:'';
  position:absolute;
  width:min(720px,82vw);
  height:min(720px,82vw);
  left:50%;
  top:-58%;
  transform:translateX(-50%);
  border:1px solid rgba(216,255,95,.08);
  border-radius:50%;
  pointer-events:none;
}
.contact-inner { position:relative;z-index:1; }
.contact-inner .section-header { margin-bottom:clamp(34px,4vw,48px); }
#contact .section-kicker { color:var(--amber);margin-bottom:14px; }
#contact .section-header h2 { color:var(--warm-white);font-size:clamp(56px,7vw,92px); }
.contact-grid { max-width:720px;margin:0 auto; }
.contact-card {
  padding:24px clamp(20px,4vw,44px);
  border:1px solid rgba(244,240,232,.16);
  background:rgba(244,240,232,.035);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}
#contact .contact-card a {
  color:var(--warm-white);
  font-size:clamp(1.18rem,2.2vw,1.62rem);
  transition:color .2s;
}
#contact .contact-card a:hover { color:var(--amber); }
.contact-inner .social-row { padding-top:30px; }
#contact .platform-links { gap:20px; }
#contact .platform-link { color:var(--warm-white);opacity:.74; }
#contact .platform-link:hover { color:var(--amber);opacity:1; }

footer {
  padding:30px clamp(24px,5vw,72px);
  background:#080810;
  border-top:1px solid rgba(244,240,232,.1);
}
.footer-inner { min-height:36px;gap:24px; }
.footer-name { color:var(--warm-white);font-size:1.18rem; }
.footer-copy,.footer-credit { color:rgba(244,240,232,.5);font-size:.72rem; }
.footer-credit a { color:var(--amber); }

@media (max-width:900px) {
  .about-inner { grid-template-columns:1fr;align-items:start; }
  .about-img-col { position:relative;top:0;max-width:720px;margin:0 auto;width:100%; }
  .about-img { aspect-ratio:9/16;box-shadow:12px 12px 0 rgba(118,88,255,.2),0 20px 50px rgba(0,0,0,.28); }
}

@media (max-width:600px) {
  #about { padding:78px 0 72px; }
  .about-inner { gap:46px; }
  .about-img { aspect-ratio:4/5; }
  #about .about-text-col h2 { margin-bottom:30px; }
  .story-gallery {
    columns: 2;
    column-gap: 8px;
    margin-top: 52px;
    padding-inline: 16px;
  }
  .story-gallery figure {
    margin-bottom: 8px;
    break-inside: avoid;
  }
  .story-gallery img {
    width: 100%;
    height: auto;
    object-fit: unset;
  }
  #contact { padding:72px 0 64px; }
  .contact-card { padding:20px 16px; }
  footer { padding:28px 24px; }
  .footer-inner { gap:10px; }
}

/* Crisp, high-contrast listen modal */
.listen-modal-backdrop {
  background:rgba(5,5,12,.74);
  backdrop-filter:blur(2px);
  -webkit-backdrop-filter:blur(2px);
}
.listen-modal-balloon {
  width:min(430px,calc(100vw - 36px));
  padding:38px 40px 34px;
  background:#11111d;
  background-image:linear-gradient(145deg,rgba(118,88,255,.12),transparent 42%);
  border:1px solid rgba(216,255,95,.42);
  border-radius:18px;
  box-shadow:0 28px 90px rgba(0,0,0,.68),0 0 0 1px rgba(244,240,232,.04) inset;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}
.listen-modal-eyebrow {
  color:#d8ff5f;
  font-size:.72rem;
  letter-spacing:.16em;
}
.listen-modal-title {
  color:#f4f0e8;
  font-size:clamp(1.35rem,3vw,1.65rem);
  margin-bottom:28px;
  text-shadow:none;
}
.listen-modal-close {
  top:14px;
  right:16px;
  color:rgba(244,240,232,.72);
  border:1px solid rgba(244,240,232,.15);
}
.listen-modal-close:hover { color:#080810;background:#d8ff5f;border-color:#d8ff5f; }
.listen-modal-platforms { gap:12px; }
.modal-platform-btn {
  width:98px;
  min-height:106px;
  padding:16px 10px 14px;
  border-width:1px;
  border-radius:12px;
  color:#f4f0e8;
  font-size:.7rem;
  background-color:#181826;
  box-shadow:0 10px 28px rgba(0,0,0,.2);
}
.modal-platform-btn svg { width:34px;height:34px; }
.modal-spotify { color:#f4f0e8;background:rgba(29,215,84,.12);border-color:rgba(29,215,84,.58); }
.modal-spotify:hover { color:#fff;background:rgba(29,215,84,.2); }
.modal-apple,
.modal-apple.is-disabled {
  color:#f4f0e8;
  background:rgba(250,36,60,.12);
  border-color:rgba(250,36,60,.58);
  opacity:1;
  cursor:default;
}
.modal-apple.is-disabled:hover { transform:none;box-shadow:0 10px 28px rgba(0,0,0,.2); }
.modal-apple.is-disabled .modal-pulse-ring {
  animation:modalRingPulse 2.4s ease-in-out infinite;
  animation-delay:.8s;
}
.modal-ytm { color:#f4f0e8;background:rgba(255,0,51,.12);border-color:rgba(255,0,51,.58); }
.modal-ytm:hover { color:#fff;background:rgba(255,0,51,.2); }

@media (max-width:600px) {
  .listen-modal-balloon { padding:34px 20px 26px; }
  .listen-modal-platforms { gap:8px; }
  .modal-platform-btn { width:88px;min-height:98px;padding-inline:6px; }
}

/* Mobile contrast and navigation polish */
#music .section-header h2 {
  color:#f4f0e8;
}

.mobile-nav-text {
  color:#f4f0e8;
  text-shadow:0 2px 18px rgba(0,0,0,.38);
}

.mobile-nav-link:hover .mobile-nav-text,
.mobile-nav-link:focus-visible .mobile-nav-text {
  color:#d8ff5f;
}

.mobile-menu-bg::after {
  background:radial-gradient(circle,rgba(118,88,255,.24) 0%,rgba(118,88,255,.08) 38%,transparent 72%);
}

.mobile-menu-tagline {
  color:rgba(244,240,232,.68);
}

/* Hollow Signal-style floating navigation */
#nav,
#nav.scrolled {
  padding:clamp(22px,3vw,38px) clamp(26px,5vw,72px);
  background:transparent;
  border:0;
  box-shadow:none;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}

.nav-inner {
  max-width:var(--max-w);
  min-height:auto;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}

.nav-logo,
#nav.scrolled .nav-logo,
.nav-links a,
#nav.scrolled .nav-links a,
.nav-stream,
#nav.scrolled .nav-stream {
  color:#f4f0e8;
}

.nav-logo {
  font-size:clamp(1.32rem,2vw,1.65rem);
  text-shadow:0 2px 18px rgba(0,0,0,.55);
}

.nav-links a {
  text-shadow:0 2px 14px rgba(0,0,0,.55);
}

.nav-stream .platform-link {
  opacity:.92;
  filter:drop-shadow(0 2px 8px rgba(0,0,0,.55));
}

.burger-line,
#nav.scrolled .burger-line {
  background:#f4f0e8;
  box-shadow:0 2px 8px rgba(0,0,0,.55);
}

.hero-overlay {
  top:0;
  right:0;
  bottom:0;
  left:0;
  width:100%;
  height:100%;
  background:
    linear-gradient(to top,rgba(5,5,14,.76) 0%,rgba(8,8,20,.3) 48%,rgba(4,4,12,.18) 100%),
    rgba(5,5,14,.24);
}

@media (max-width:900px) {
  #nav,
  #nav.scrolled {
    padding:28px 30px;
  }
  .nav-inner {
    min-height:44px;
    padding:0;
  }
  .nav-logo { font-size:1.42rem; }
  .menu-toggle { width:42px;height:42px;padding:5px 0 5px 8px; }
  .hero-overlay {
    background:
      linear-gradient(to top,rgba(5,5,14,.88) 0%,rgba(8,8,20,.4) 60%,rgba(4,4,12,.2) 100%),
      rgba(5,5,14,.28);
  }
}

/* Full-colour streaming icons across the landing page */
.platform-links > .platform-link {
  opacity:1;
  animation:platformPulse 2.7s ease-in-out infinite;
  transform-origin:center;
}

.platform-links > .platform-link:nth-child(1) {
  color:#1ed760;
}

.platform-links > .platform-link:nth-child(2) {
  color:#fa243c;
  animation-delay:.35s;
}

.platform-links > .platform-link:nth-child(2) svg {
  transform:scale(1.14);
}

.platform-links > .platform-link:nth-child(3) {
  color:#ff0033;
  animation-delay:.7s;
}

/* YouTube Music's circular artwork has more built-in whitespace than the
   Spotify glyph, so enlarge it optically while preserving the same box. */
.platform-links > .platform-link:nth-child(3) svg {
  transform:scale(1.17);
  transform-origin:center;
}

.platform-links > .platform-link:hover {
  opacity:1;
  filter:brightness(1.18) drop-shadow(0 0 10px currentColor);
}

.modal-apple {
  cursor:pointer;
}

.modal-apple:hover {
  color:#fff;
  background:rgba(250,36,60,.2);
  box-shadow:0 8px 28px rgba(250,36,60,.3);
}

@media (prefers-reduced-motion:reduce) {
  .platform-links > .platform-link {
    animation:none;
  }
}

/* Distinct Apple Music card, coloured About links, solid sticky nav */
.modal-apple {
  color:#f4f0e8;
  background:rgba(244,240,232,.1);
  border-color:rgba(244,240,232,.42);
  box-shadow:0 10px 30px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.08);
}

.modal-apple svg {
  fill:#fa243c;
  filter:drop-shadow(0 0 8px rgba(250,36,60,.38));
}

.modal-apple:hover {
  color:#fff;
  background:rgba(244,240,232,.17);
  border-color:rgba(244,240,232,.68);
  box-shadow:0 10px 34px rgba(0,0,0,.24), 0 0 18px rgba(244,240,232,.1);
}

.modal-ytm svg {
  transform:scale(1.17);
  transform-origin:center;
}

#about .platform-links > .platform-link:nth-child(1) {
  color:#1ed760;
}

#about .platform-links > .platform-link:nth-child(2) {
  color:#fa243c;
}

#about .platform-links > .platform-link:nth-child(3) {
  color:#ff0033;
}

/* Amazon Music joins every platform group using its original brand artwork. */
.platform-link--amazon img {
  display:block;
  width:27px;
  height:27px;
  border-radius:6px;
  object-fit:cover;
  box-shadow:0 0 13px rgba(37,209,219,.36);
}
.modal-amazon {
  color:#f4f0e8;
  background:rgba(37,209,219,.1);
  border-color:rgba(37,209,219,.5);
}
.modal-amazon img { width:40px;height:40px;border-radius:8px;object-fit:cover; }
.modal-amazon:hover { background:rgba(37,209,219,.18);box-shadow:0 8px 28px rgba(37,209,219,.22); }
.platform-links > .platform-link:nth-child(4) {
  animation-delay:1.05s;
}
.nav-stream .platform-link--amazon img { width:23px;height:23px;border-radius:5px; }
.platform-links--hero .platform-link--amazon img { width:29px;height:29px; }
#about .platform-links > .platform-link:nth-child(4) { color:#25d1db; }

/* Editorial split for the newest and most-played releases. */
.featured-releases {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:clamp(24px,4vw,56px);
  margin:clamp(44px,6vw,76px) 0 clamp(64px,8vw,108px);
  padding:clamp(24px,3vw,40px);
  border:1px solid rgba(216,255,95,.22);
  background:linear-gradient(125deg,rgba(21,21,34,.94),rgba(33,23,61,.88));
  box-shadow:0 22px 60px rgba(0,0,0,.28);
}
.featured-release {
  display:grid;
  grid-template-columns:minmax(150px,44%) 1fr;
  align-items:center;
  gap:clamp(20px,3vw,36px);
  min-width:0;
}
.featured-release + .featured-release {
  border-left:1px solid rgba(244,240,232,.14);
  padding-left:clamp(24px,4vw,52px);
}
.featured-release__art { aspect-ratio:1;overflow:hidden; }
.featured-release__art img { width:100%;height:100%;object-fit:cover;display:block; }
.featured-release__label {
  display:block;
  margin-bottom:14px;
  color:var(--amber);
  font-size:.68rem;
  font-weight:600;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.featured-release h3 {
  color:var(--warm-white);
  font:500 clamp(1.55rem,2.4vw,2.35rem)/1.02 var(--font-display);
}
.featured-release h3 em { display:block;font-weight:400; }
.featured-release__meta {
  margin-top:16px;
  color:rgba(244,240,232,.62);
  font-size:.72rem;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.featured-release__meta span { color:var(--amber); }
.featured-release__desc {
  margin-top:14px;
  max-width:30ch;
  color:rgba(244,240,232,.72);
  font-size:.92rem;
  font-weight:300;
  line-height:1.65;
}

@media (max-width:900px) {
  .featured-releases { grid-template-columns:1fr; }
  .featured-release + .featured-release {
    border-left:0;
    border-top:1px solid rgba(244,240,232,.14);
    padding:24px 0 0;
  }
}
@media (max-width:560px) {
  .featured-releases { padding:20px; }
  .featured-release { grid-template-columns:1fr; }
  .featured-release__copy { text-align:center; }
  .featured-release__desc { margin-inline:auto; }
}

#about .platform-links > .platform-link:hover {
  filter:brightness(1.18) drop-shadow(0 0 10px currentColor);
}

#nav.scrolled {
  padding:15px clamp(26px,5vw,72px);
  background:rgba(8,8,16,.96);
  border-bottom:1px solid rgba(244,240,232,.12);
  box-shadow:0 10px 30px rgba(0,0,0,.24);
  backdrop-filter:blur(14px) saturate(1.12);
  -webkit-backdrop-filter:blur(14px) saturate(1.12);
}

@media (max-width:900px) {
  #nav.scrolled {
    padding:14px 30px;
  }
}

/* Keep every streaming platform in its recognisable brand colour, including
   the transparent header, sticky header, mobile menu, About and footer. */
.platform-link[href*="spotify.com"],
#nav .platform-link[href*="spotify.com"],
#nav.scrolled .platform-link[href*="spotify.com"] {
  color:#1ed760 !important;
  opacity:1;
  filter:drop-shadow(0 0 8px rgba(30,215,96,.34));
}
.platform-link[href*="music.apple.com"],
#nav .platform-link[href*="music.apple.com"],
#nav.scrolled .platform-link[href*="music.apple.com"] {
  color:#fa243c !important;
  opacity:1;
  filter:drop-shadow(0 0 8px rgba(250,36,60,.32));
}
.platform-link[href*="music.youtube.com"],
#nav .platform-link[href*="music.youtube.com"],
#nav.scrolled .platform-link[href*="music.youtube.com"] {
  color:#ff0033 !important;
  opacity:1;
  filter:drop-shadow(0 0 8px rgba(255,0,51,.34));
}
.platform-link--amazon,
#nav .platform-link--amazon,
#nav.scrolled .platform-link--amazon {
  color:#25d1db !important;
  opacity:1;
  filter:none;
}
.platform-link--amazon img {
  filter:saturate(1.08) drop-shadow(0 0 8px rgba(37,209,219,.36));
}

/* Selected identity: Option B */
.nav-logo {
  display:flex;
  align-items:center;
  width:clamp(145px,12vw,190px);
  height:auto;
  line-height:0;
}
.nav-logo img {
  display:block;
  width:100%;
  height:auto;
  max-height:58px;
  object-fit:contain;
  object-position:left center;
}
.footer-name {
  display:inline-flex;
  align-items:center;
  width:170px;
  line-height:0;
}
.footer-name img {
  display:block;
  width:100%;
  height:auto;
  max-height:52px;
  object-fit:contain;
  object-position:left center;
}
@media (max-width:900px) {
  .nav-logo { width:148px; }
  .nav-logo img { max-height:48px; }
}
@media (max-width:640px) {
  .footer-name { width:150px; }
  .footer-name img { margin-inline:auto;object-position:center; }
}

/* Compact collection: three square covers per row on larger screens. */
.releases-shelf {
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:clamp(34px,4vw,58px) clamp(22px,2.8vw,40px);
}
@media (max-width:980px) {
  .releases-shelf {
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media (max-width:640px) {
  .releases-shelf { display:block; }
}

/* Release card repair: cancel the earlier two-column orphan treatment and
   keep copy comfortably inside each three-column card. */
.releases-shelf .release,
.releases-shelf .release:first-child,
.releases-shelf .release:last-child:nth-child(odd) {
  grid-column:auto;
  width:100%;
  min-width:0;
  justify-self:stretch;
}
.releases-shelf .release-art {
  width:100%;
  aspect-ratio:1 / 1;
}
.releases-shelf .release-art img {
  width:100%;
  height:100%;
  object-fit:contain;
}
.releases-shelf .release-meta {
  width:100%;
  min-width:0;
  padding-inline:6px;
}
.releases-shelf .release-desc {
  width:100%;
  max-width:34ch;
  min-height:3em;
  margin:11px auto 0;
  white-space:normal;
  overflow-wrap:break-word;
  line-height:1.5;
}
@media (max-width:980px) {
  .releases-shelf .release-desc { max-width:38ch; }
}
@media (max-width:640px) {
  .releases-shelf .release,
  .releases-shelf .release:first-child,
  .releases-shelf .release:last-child:nth-child(odd) {
    width:100%;
  }
  .releases-shelf .release-desc {
    max-width:36ch;
    min-height:0;
  }
}

/* Tablet hero focal point: keep both musicians visible without changing the
   established desktop and phone crops. */
@media (min-width:601px) and (max-width:1180px) {
  #hero .hero-img {
    object-position:82% 48%;
  }
  #about .about-img {
    object-position: center 15%;
  }
}

/* Tablet: show the complete about portrait without cropping either end. */
@media (min-width:601px) and (max-width:1024px) {
  #about .about-img {
    width:100%;
    height:auto;
    max-height:none;
    aspect-ratio:auto !important;
    object-fit:contain;
  }
}
#hero .hero-ctas {
  column-gap:30px;
  row-gap:18px;
}
@media (max-width:600px) {
  #hero .hero-ctas { gap:20px; }
}
