/* ===========================
   Layana Calissa — Style Sheet
   =========================== */

/* -- CSS Variables -- */
:root {
  --deep: #4A148C;
  --med: #7B1FA2;
  --light: #9C27B0;
  --soft: #CE93D8;
  --pale: #F3E5F5;
  --ultra: #F9F0FB;
  --gold: #FFB300;
  --gold-l: #FFD54F;
  --dk: #212121;
  --mdt: #424242;
  --lt: #757575;
  --w: #FFFFFF;
  --off: #FAFAFA;
  --brd: #E1BEE7;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Cormorant Garamond', serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-display);
  background: var(--off);
  color: var(--dk);
  min-height: 100vh;
  overflow-x: hidden;
}

::selection {
  background: rgba(74, 20, 140, 0.2);
  color: var(--deep);
}

input::placeholder {
  color: #BDBDBD;
}

/* -- Animations -- */
@keyframes orbFloat {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-30px) scale(1.05); }
}

@keyframes floatNote {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-20px) rotate(10deg); }
}

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

@keyframes shakeGate {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-12px); }
  40% { transform: translateX(10px); }
  60% { transform: translateX(-8px); }
  80% { transform: translateX(6px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* -- Fade-In (JS-driven) -- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(.4, 0, .2, 1), transform 0.8s cubic-bezier(.4, 0, .2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   NAVIGATION
   ============================ */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 24px;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
}

#main-nav.scrolled {
  padding: 10px 24px;
  background: rgba(26, 0, 51, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(206, 147, 216, 0.15);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-l);
  cursor: pointer;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s;
}

.nav-public {
  color: rgba(206, 147, 216, 0.5);
}

.nav-public:hover {
  color: var(--gold-l) !important;
}

.nav-private {
  color: rgba(255, 179, 0, 0.6);
}

.nav-private:hover {
  color: var(--gold-l) !important;
}

/* ============================
   PASSWORD GATE
   ============================ */
.gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(26, 0, 51, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.gate-card {
  background: var(--w);
  border-radius: 16px;
  padding: 40px 36px;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 24px 80px rgba(74, 20, 140, 0.3);
  text-align: center;
}

.gate-card.shake {
  animation: shakeGate 0.4s ease;
}

.gate-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--deep), var(--med));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.gate-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 8px;
}

.gate-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--mdt);
  line-height: 1.6;
  margin-bottom: 24px;
}

.gate-input-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.gate-input-row input {
  flex: 1;
  padding: 13px 16px;
  border-radius: 8px;
  border: 2px solid var(--brd);
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
  color: var(--dk);
}

.gate-input-row input:focus {
  border-color: var(--med);
}

.gate-input-row input.error {
  border-color: #e53935;
}

.gate-unlock-btn {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--deep), var(--med));
  border: none;
  color: var(--w);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(74, 20, 140, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.gate-unlock-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(74, 20, 140, 0.3);
}

.gate-error {
  font-family: var(--font-body);
  font-size: 13px;
  color: #e53935;
  margin-top: 4px;
}

.gate-back-btn {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--lt);
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.gate-back-btn:hover {
  color: var(--med);
}

/* ============================
   HERO SECTION
   ============================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #1A0033 0%, #4A148C 30%, #7B1FA2 60%, #2D0A4E 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  text-align: center;
  padding: 100px 24px 70px;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  opacity: 0.18;
  z-index: 0;
  filter: blur(1px) saturate(0.7);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,0,51,0.75) 0%, rgba(74,20,140,0.55) 30%, rgba(123,31,162,0.45) 60%, rgba(45,10,78,0.7) 100%);
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 179, 0, 0.07) 0%, transparent 70%);
  top: -15%;
  right: -12%;
  animation: orbFloat 8s ease-in-out infinite alternate;
}

.hero-orb-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(206, 147, 216, 0.09) 0%, transparent 70%);
  bottom: -10%;
  left: -8%;
  animation: orbFloat 10s ease-in-out infinite alternate-reverse;
}

.hero-note {
  position: absolute;
  color: rgba(255, 213, 79, 0.08);
  animation: floatNote ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.3s cubic-bezier(.22, 1, .36, 1);
}

.hero-content.loaded {
  opacity: 1;
  transform: translateY(0);
}

.hero-presents {
  font-family: var(--font-body);
  font-size: 13px;
  font-style: italic;
  color: rgba(206, 147, 216, 0.75);
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  font-weight: 700;
  color: var(--w);
  letter-spacing: 3px;
  line-height: 1.05;
  margin-bottom: 12px;
  text-shadow: 0 0 60px rgba(123, 31, 162, 0.5);
}

.hero-divider {
  width: 80px;
  height: 3px;
  margin: 20px auto 18px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l), var(--gold));
  border-radius: 2px;
}

.hero-genre {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 10px;
}

.hero-roles {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(206, 147, 216, 0.6);
  letter-spacing: 2px;
  margin-bottom: 36px;
}

.hero-cta {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  padding: 15px 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-l), var(--gold));
  border: none;
  color: #1A0033;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(255, 179, 0, 0.35);
  letter-spacing: 1px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 179, 0, 0.45);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transition: opacity 2s 1.8s ease;
}

.hero-scroll-indicator.loaded {
  opacity: 0.4;
}

.scroll-text {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--soft);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 24px;
  background: linear-gradient(180deg, var(--soft), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================
   ABOUT SECTION
   ============================ */
.about-section {
  background: var(--off);
  padding: 80px 24px;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-eyebrow.gold {
  color: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
}

.section-title.deep {
  color: var(--deep);
}

.section-title.white {
  color: var(--w);
  margin-bottom: 32px;
}

.about-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}

/* Artist Card */
.artist-card {
  background: linear-gradient(135deg, var(--deep), var(--med));
  border-radius: 14px;
  padding: 26px 18px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(74, 20, 140, 0.15);
}

.artist-photo-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
  border: 3px solid rgba(255, 213, 79, 0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.artist-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}

.artist-photo-wrap:hover .artist-photo {
  transform: scale(1.04);
}

.artist-languages {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.lang-tag {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  padding: 4px 10px;
}

.artist-card-divider {
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 14px auto;
}

.artist-card-footer {
  font-family: var(--font-body);
  font-size: 10px;
  color: rgba(206, 147, 216, 0.5);
  letter-spacing: 1px;
}

/* About Text */
.about-heritage-line {
  font-family: var(--font-body);
  font-size: 15px;
  font-style: italic;
  color: var(--med);
  margin-bottom: 14px;
  line-height: 1.6;
}

.about-bio {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--mdt);
  line-height: 1.8;
  margin-bottom: 12px;
}

.heritage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
}

.heritage-tag {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--med);
  background: var(--pale);
  padding: 4px 11px;
  border-radius: 4px;
  border: 1px solid var(--brd);
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.stat-card {
  text-align: center;
  padding: 12px 6px;
  background: linear-gradient(180deg, rgba(74, 20, 140, 0.02), var(--pale));
  border-radius: 10px;
  border: 1px solid var(--brd);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--deep);
}

.stat-number-small {
  font-size: 16px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--lt);
  margin-top: 2px;
}

/* Performances */
.performances-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.performance-card {
  background: var(--w);
  border-radius: 10px;
  border: 1px solid var(--brd);
  padding: 14px 16px;
  box-shadow: 0 2px 10px rgba(74, 20, 140, 0.04);
  position: relative;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.performance-card-upcoming {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(255, 179, 0, 0.04), rgba(255, 213, 79, 0.06));
  box-shadow: 0 2px 14px rgba(255, 179, 0, 0.1);
}

.performance-card-upcoming:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(255, 179, 0, 0.18);
  border-color: var(--gold-l);
}

.perf-badge-upcoming {
  position: absolute;
  top: -9px;
  right: 12px;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1A0033;
  background: linear-gradient(135deg, var(--gold), var(--gold-l));
  padding: 3px 10px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(255, 179, 0, 0.3);
}

.perf-year {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
}

.perf-event {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--deep);
  margin-top: 4px;
}

.perf-location {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--lt);
  margin-top: 2px;
}

/* ============================
   GALLERY SECTION
   ============================ */
.gallery-section {
  background: var(--w);
  padding: 80px 24px;
  position: relative;
}

.gallery-container {
  max-width: 960px;
  margin: 0 auto;
}

.gallery-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  font-style: italic;
  color: var(--med);
  max-width: 520px;
  margin: 10px auto 0;
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(74, 20, 140, 0.08);
  border: 1px solid var(--brd);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(.22, 1, .36, 1), filter 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 0, 51, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-caption {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--w);
  letter-spacing: 0.5px;
}

.gallery-item-sub {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(206, 147, 216, 0.7);
  letter-spacing: 1px;
  margin-top: 3px;
}

.gallery-item-tall {
  height: 380px;
}

.gallery-item-wide {
  grid-column: 1 / -1;
  height: 340px;
}

.gallery-item-wide img {
  object-position: center 25%;
}

.gallery-item-square {
  height: 380px;
  grid-column: 1 / -1;
  max-width: 460px;
  justify-self: center;
  width: 100%;
}

/* ============================
   JOURNEY SECTION
   ============================ */
.journey-section {
  background: linear-gradient(180deg, #1A0033 0%, var(--deep) 40%, #2D0A4E 100%);
  padding: 90px 24px;
  position: relative;
  overflow: hidden;
}

.journey-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 179, 0, 0.04) 0%, transparent 70%);
  top: -15%;
  left: -10%;
  pointer-events: none;
}

.journey-container {
  max-width: 900px;
  margin: 0 auto;
}

.journey-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  font-style: italic;
  color: rgba(206, 147, 216, 0.55);
  max-width: 560px;
  margin: 10px auto 0;
  line-height: 1.7;
}

.journey-videos {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Featured Single Video Card */
.journey-featured-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(206, 147, 216, 0.12);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.journey-featured-card:hover {
  box-shadow: 0 16px 56px rgba(74, 20, 140, 0.25);
  border-color: rgba(206, 147, 216, 0.25);
}

.journey-featured-video-wrap {
  position: relative;
  background: #0D0015;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.journey-featured-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.journey-featured-info {
  padding: 32px 32px 36px;
}

.journey-featured-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--w);
  margin-bottom: 14px;
  line-height: 1.2;
}

.journey-featured-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  max-width: 700px;
}

.journey-featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.journey-tag {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(206, 147, 216, 0.6);
  background: rgba(206, 147, 216, 0.06);
  border: 1px solid rgba(206, 147, 216, 0.12);
  padding: 6px 14px;
  border-radius: 6px;
}

/* Keep badge for reuse */
.journey-video-badge {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255, 179, 0, 0.1);
  padding: 5px 14px;
  border-radius: 16px;
  margin-bottom: 14px;
}

/* Journey Quote */
.journey-quote-card {
  margin-top: 48px;
  text-align: center;
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(206, 147, 216, 0.1);
  border-radius: 14px;
  position: relative;
}

.journey-quote-mark {
  font-size: 40px;
  color: rgba(255, 179, 0, 0.2);
  margin-bottom: 10px;
  line-height: 1;
}

.journey-quote-text {
  font-family: var(--font-body);
  font-size: 18px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.journey-quote-attr {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  margin-top: 14px;
  letter-spacing: 1px;
}

/* ============================
   COVERS SECTION
   ============================ */
.covers-section {
  background: var(--w);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.covers-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--deep), var(--med), var(--gold), var(--med), var(--deep));
}

.covers-container {
  max-width: 900px;
  margin: 0 auto;
}

.covers-promo-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255, 179, 0, 0.08);
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.covers-intro {
  font-family: var(--font-body);
  font-size: 16px;
  font-style: italic;
  color: var(--med);
  margin-top: 10px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.covers-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Cover Item */
.cover-item {
  background: var(--w);
  border-radius: 14px;
  border: 1px solid var(--brd);
  box-shadow: 0 3px 16px rgba(74, 20, 140, 0.05);
  overflow: hidden;
  transition: box-shadow 0.4s ease;
}

.cover-item.expanded {
  box-shadow: 0 12px 48px rgba(74, 20, 140, 0.14);
}

.cover-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(74, 20, 140, 0.02), var(--pale));
  transition: all 0.4s ease;
}

.cover-item.expanded .cover-header {
  background: linear-gradient(135deg, var(--deep), var(--med));
}

.cover-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--deep), var(--med));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(74, 20, 140, 0.2);
  transition: background 0.4s ease;
}

.cover-item.expanded .cover-icon-wrap {
  background: rgba(255, 255, 255, 0.1);
}

.cover-icon {
  font-size: 22px;
}

.cover-info {
  flex: 1;
}

.cover-title-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.cover-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--deep);
  transition: color 0.4s;
}

.cover-item.expanded .cover-title {
  color: var(--w);
}

.cover-artist {
  font-family: var(--font-body);
  font-size: 14px;
  font-style: italic;
  color: var(--med);
  transition: color 0.4s;
}

.cover-item.expanded .cover-artist {
  color: rgba(255, 255, 255, 0.65);
}

.cover-mood {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--lt);
  margin-top: 3px;
  transition: color 0.4s;
}

.cover-item.expanded .cover-mood {
  color: rgba(206, 147, 216, 0.65);
}

.cover-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cover-play-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(74, 20, 140, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 20, 140, 0.03);
  transition: all 0.3s;
}

.cover-item.expanded .cover-play-btn {
  border-color: rgba(255, 213, 79, 0.4);
  background: rgba(255, 179, 0, 0.12);
}

.play-triangle {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--med);
  margin-left: 2px;
  transition: border-left-color 0.3s;
}

.play-triangle.small {
  border-top-width: 5px;
  border-bottom-width: 5px;
  border-left-width: 8px;
  margin-left: 1px;
}

.cover-item.expanded .cover-play-btn .play-triangle {
  border-left-color: var(--gold-l);
}

.cover-chevron {
  font-size: 18px;
  color: var(--lt);
  transition: all 0.3s;
}

.cover-item.expanded .cover-chevron {
  color: rgba(255, 255, 255, 0.4);
  transform: rotate(180deg);
}

/* Cover Body (Expandable) */
.cover-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(.4, 0, .2, 1), opacity 0.4s 0.1s ease;
}

.cover-item.expanded .cover-body {
  max-height: 600px;
  opacity: 1;
}

.cover-body-inner {
  padding: 4px 24px 24px;
}

/* Locked Cover Overlay */
.cover-private {
  position: relative;
}

.cover-private .cover-body-inner {
  filter: blur(6px);
  opacity: 0.25;
  pointer-events: none;
  user-select: none;
}

.cover-lock-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 20, 140, 0.04);
  border-radius: 0 0 12px 12px;
}

.cover-lock-content {
  text-align: center;
  padding: 24px 20px;
}

.cover-lock-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 10px;
}

.cover-lock-text {
  font-family: var(--body);
  font-size: 13px;
  color: var(--light);
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.cover-lock-btn {
  font-family: var(--body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 24px;
  border: 1px solid var(--brd);
  border-radius: 6px;
  background: linear-gradient(135deg, var(--pale), var(--ultra));
  color: var(--deep);
  cursor: pointer;
  transition: all 0.3s ease;
}

.cover-lock-btn:hover {
  background: linear-gradient(135deg, var(--soft), var(--pale));
  border-color: var(--soft);
  box-shadow: 0 2px 12px rgba(124, 31, 162, 0.15);
  transform: translateY(-1px);
}

/* Unlocked covers transition */
.cover-unlocked .cover-body-inner {
  filter: none;
  opacity: 1;
  pointer-events: auto;
  user-select: auto;
  transition: filter 0.5s ease, opacity 0.5s ease;
}

/* Waveform Player */
/* Audio Player */
.audio-player {
  background: linear-gradient(135deg, rgba(74, 20, 140, 0.03), var(--pale));
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--brd);
  margin-bottom: 18px;
  position: relative;
}

.audio-player.audio-unavailable {
  opacity: 0.6;
}

.audio-player.audio-unavailable::after {
  content: 'Audio coming soon';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(243, 229, 245, 0.85);
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--med);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.audio-play-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--deep), var(--med));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(74, 20, 140, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  color: white;
  font-size: 14px;
  line-height: 1;
  padding: 0;
}

.audio-play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(74, 20, 140, 0.35);
}

.audio-play-btn.playing {
  background: linear-gradient(135deg, var(--gold), var(--gold-l));
  color: #1A0033;
  box-shadow: 0 4px 16px rgba(255, 179, 0, 0.3);
}

.audio-icon-play,
.audio-icon-pause {
  font-style: normal;
  font-size: 13px;
}

.audio-progress-wrap {
  flex: 1;
  position: relative;
  height: 34px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.audio-progress-bar {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}

.audio-progress-fill {
  height: 4px;
  background: linear-gradient(90deg, var(--deep), var(--med));
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.audio-progress-handle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--deep);
  border: 2px solid white;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  transition: left 0.1s linear;
  z-index: 3;
  opacity: 0;
}

.audio-player:hover .audio-progress-handle,
.audio-player.playing-active .audio-progress-handle {
  opacity: 1;
}

.audio-waveform {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1.5px;
  align-items: center;
  height: 34px;
  width: 100%;
  pointer-events: none;
}

.audio-waveform-bar {
  width: 2px;
  border-radius: 1px;
  transition: background 0.15s;
}

.audio-waveform-bar.played {
  background: linear-gradient(180deg, var(--med), var(--deep));
}

.audio-waveform-bar.unplayed {
  background: linear-gradient(180deg, var(--brd), var(--pale));
}

.audio-time-current,
.audio-time-total {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--lt);
  flex-shrink: 0;
  min-width: 28px;
  text-align: center;
}

.audio-time-sep {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--brd);
  flex-shrink: 0;
}

/* Cover Quote */
.cover-quote-block {
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  margin-bottom: 16px;
}

.cover-quote {
  font-family: var(--font-body);
  font-size: 15px;
  font-style: italic;
  color: var(--mdt);
  line-height: 1.75;
}

.cover-quote-attr {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
  margin-top: 8px;
  letter-spacing: 1px;
}

/* Why Block */
.cover-why-block {
  background: rgba(74, 20, 140, 0.02);
  border: 1px solid var(--brd);
  border-radius: 10px;
  padding: 14px 18px;
}

.cover-why-title {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--med);
  margin-bottom: 6px;
}

.cover-why-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--mdt);
  line-height: 1.7;
}

.cover-footer-badge {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.cover-footer-badge span {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lt);
  background: var(--pale);
  padding: 3px 10px;
  border-radius: 4px;
}

/* Covers CTA Box */
.covers-cta-box {
  margin-top: 48px;
  text-align: center;
  background: linear-gradient(135deg, #1A0033, var(--deep), var(--med), #2D0A4E);
  border-radius: 16px;
  padding: 44px 28px;
  box-shadow: 0 12px 48px rgba(74, 20, 140, 0.2);
  position: relative;
  overflow: hidden;
}

.covers-cta-orb {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 179, 0, 0.07), transparent);
  top: -30%;
  right: -10%;
  pointer-events: none;
}

.covers-cta-intro {
  font-family: var(--font-body);
  font-size: 14px;
  font-style: italic;
  color: rgba(206, 147, 216, 0.6);
  margin-bottom: 10px;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
}

.covers-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.1rem);
  font-weight: 700;
  color: var(--w);
  line-height: 1.3;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.gold-text {
  color: var(--gold-l);
}

.covers-cta-body {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin: 0 auto 10px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.covers-cta-body strong {
  color: var(--w);
}

.covers-cta-note {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(206, 147, 216, 0.5);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.covers-cta-btn {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-l));
  border: none;
  color: #1A0033;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 179, 0, 0.3);
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
  transition: transform 0.2s, box-shadow 0.2s;
}

.covers-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 179, 0, 0.4);
}

/* ====================================
   COVERS TEASER (Public)
   ==================================== */
.covers-teaser-section {
  background: var(--w);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.covers-teaser-container {
  max-width: 900px;
  margin: 0 auto;
}

.teaser-star-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.teaser-star-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.teaser-star-icon {
  font-size: 20px;
  color: var(--gold);
  opacity: 0.7;
}

.teaser-star-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lt);
}

/* ====================================
   WINSTON STAR SECTION (Private)
   Artistic Case — Full Framework
   ==================================== */
.star-section {
  background: var(--off);
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}

.star-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--deep), var(--gold), var(--deep), var(--gold), var(--deep));
}

.star-container {
  max-width: 900px;
  margin: 0 auto;
}

.star-main-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  font-weight: 700;
  color: var(--deep);
  margin-top: 6px;
}

.star-subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  font-style: italic;
  color: var(--med);
  margin-top: 8px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Star Cards */
.star-card {
  background: var(--w);
  border-radius: 16px;
  border: 1px solid var(--brd);
  box-shadow: 0 6px 28px rgba(74, 20, 140, 0.06);
  overflow: hidden;
  margin-bottom: 28px;
  transition: box-shadow 0.4s ease;
}

.star-card:hover {
  box-shadow: 0 12px 44px rgba(74, 20, 140, 0.12);
}

.star-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(74, 20, 140, 0.03), var(--pale));
  border-bottom: 1px solid var(--brd);
}

.star-number-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--deep), var(--med));
  color: var(--gold-l);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(74, 20, 140, 0.2);
}

.star-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--deep);
  margin: 0;
}

.star-card-subtitle {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--lt);
  margin: 3px 0 0;
  letter-spacing: 0.3px;
}

.star-card-body {
  padding: 28px;
}

.star-card-text {
  margin-top: 20px;
}

.star-card-text p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--dk);
  margin-bottom: 14px;
}

.star-card-text p:last-child {
  margin-bottom: 0;
}

.star-card-text strong {
  color: var(--deep);
  font-weight: 600;
}

.star-card-text em {
  color: var(--med);
}

/* ★ 1: THE IMAGE — Cinematic Heritage Visualization */

/* === Scene Container === */
.resonance-scene {
  position: relative;
  background: linear-gradient(180deg, #0D0118 0%, #1A0530 40%, #2A0845 100%);
  border-radius: 12px 12px 0 0;
  padding: 48px 24px 32px;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

/* === Floating Particles === */
.scene-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 213, 79, 0.4);
  animation: particle-drift 8s ease-in-out infinite;
}

.p1  { top: 12%; left: 8%;  animation-delay: 0s; }
.p2  { top: 28%; left: 85%; animation-delay: 1.2s; }
.p3  { top: 45%; left: 20%; animation-delay: 2.4s; background: rgba(206, 147, 216, 0.4); }
.p4  { top: 60%; left: 70%; animation-delay: 0.6s; }
.p5  { top: 75%; left: 35%; animation-delay: 3.6s; background: rgba(206, 147, 216, 0.3); }
.p6  { top: 18%; left: 55%; animation-delay: 4.8s; }
.p7  { top: 35%; left: 92%; animation-delay: 1.8s; width: 2px; height: 2px; }
.p8  { top: 50%; left: 5%;  animation-delay: 3s; width: 2px; height: 2px; background: rgba(206, 147, 216, 0.3); }
.p9  { top: 82%; left: 60%; animation-delay: 5.4s; }
.p10 { top: 8%;  left: 40%; animation-delay: 2s; width: 2px; height: 2px; }
.p11 { top: 55%; left: 48%; animation-delay: 4s; background: rgba(255, 179, 0, 0.3); }
.p12 { top: 68%; left: 15%; animation-delay: 6s; width: 2px; height: 2px; }

@keyframes particle-drift {
  0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-40px) scale(0.5); }
}

/* === Act 1: Heritage Roots === */
.scene-roots {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  order: 3;
}

.root {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  transition: transform 0.4s ease;
}

.root:hover {
  transform: scale(1.15);
}

.root-glow {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  animation: root-breathe 3s ease-in-out infinite;
}

.root-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.9);
}

/* Heritage colours */
.root-pt { background: radial-gradient(circle, #C62828 30%, #8E0000 100%); }
.root-pt .root-glow { background: radial-gradient(circle, rgba(198, 40, 40, 0.4), transparent 70%); animation-delay: 0s; }

.root-bk { background: radial-gradient(circle, #1565C0 30%, #0D3B7A 100%); }
.root-bk .root-glow { background: radial-gradient(circle, rgba(21, 101, 192, 0.4), transparent 70%); animation-delay: 0.5s; }

.root-ee { background: radial-gradient(circle, #F9A825 30%, #C17900 100%); }
.root-ee .root-glow { background: radial-gradient(circle, rgba(249, 168, 37, 0.4), transparent 70%); animation-delay: 1s; }

.root-aj { background: radial-gradient(circle, #FFB300 30%, #C68400 100%); }
.root-aj .root-glow { background: radial-gradient(circle, rgba(255, 179, 0, 0.4), transparent 70%); animation-delay: 1.5s; }

.root-es { background: radial-gradient(circle, #BF360C 30%, #8C2000 100%); }
.root-es .root-glow { background: radial-gradient(circle, rgba(191, 54, 12, 0.4), transparent 70%); animation-delay: 2s; }

.root-bt { background: radial-gradient(circle, #2E7D32 30%, #1B5E20 100%); }
.root-bt .root-glow { background: radial-gradient(circle, rgba(46, 125, 50, 0.4), transparent 70%); animation-delay: 2.5s; }

@keyframes root-breathe {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.4); opacity: 0.9; }
}

/* Heritage labels */
.scene-heritage-labels {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  order: 4;
  margin-top: 8px;
  position: relative;
  z-index: 2;
}

.heritage-name {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.6;
}

.hn-pt { color: #EF9A9A; }
.hn-bk { color: #90CAF9; }
.hn-ee { color: #FFF176; }
.hn-aj { color: #FFD54F; }
.hn-es { color: #FFAB91; }
.hn-bt { color: #A5D6A7; }

/* === Act 2: Rising Threads (SVG) === */
.scene-threads {
  width: 100%;
  max-width: 600px;
  order: 2;
  position: relative;
  z-index: 1;
  margin: -8px 0;
}

.thread-svg {
  width: 100%;
  height: 200px;
}

.thread-path {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: thread-draw 3s ease-out forwards;
  filter: drop-shadow(0 0 3px currentColor);
}

.tp-1 { animation-delay: 0.3s; }
.tp-2 { animation-delay: 0.6s; }
.tp-3 { animation-delay: 0.9s; }
.tp-4 { animation-delay: 1.2s; }
.tp-5 { animation-delay: 1.5s; }
.tp-6 { animation-delay: 1.8s; }

@keyframes thread-draw {
  to { stroke-dashoffset: 0; }
}

.convergence-point {
  opacity: 0;
  animation: convergence-pulse 2s ease-in-out infinite;
  animation-delay: 2.5s;
  filter: drop-shadow(0 0 8px rgba(255, 213, 79, 0.6));
}

@keyframes convergence-pulse {
  0%, 100% { opacity: 0.4; r: 6; }
  50% { opacity: 1; r: 10; }
}

/* === Act 3: Piano + Score (Top) === */
.scene-convergence {
  position: relative;
  z-index: 2;
  order: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.convergence-burst {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 213, 79, 0.12), transparent 70%);
  animation: burst-glow 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes burst-glow {
  0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.7; }
}

/* Piano keys (top section) */
.scene-piano {
  display: flex;
  justify-content: center;
  gap: 2px;
  padding: 4px 12px 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border-radius: 4px 4px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pk {
  display: inline-block;
  border-radius: 0 0 3px 3px;
  transition: transform 0.2s;
}

.pk.pw {
  width: 18px;
  height: 48px;
  background: linear-gradient(180deg, #f5f5f5 0%, #e0e0e0 100%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), inset 0 -2px 0 rgba(0, 0, 0, 0.05);
}

.pk.pb {
  width: 12px;
  height: 30px;
  background: linear-gradient(180deg, #333 0%, #111 100%);
  margin: 0 -4px;
  z-index: 1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Musical score */
.scene-score {
  position: relative;
  width: 260px;
  height: 56px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.score-staff {
  position: absolute;
  inset: 10px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.staff-line {
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
}

.score-notes {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 2px 4px;
  height: 100%;
  align-items: center;
}

.score-note {
  font-size: 18px;
  opacity: 0;
  animation: note-appear 0.5s ease-out forwards;
  filter: drop-shadow(0 0 4px currentColor);
}

.sn-1 { color: #EF9A9A; animation-delay: 2.6s; }
.sn-2 { color: #90CAF9; animation-delay: 2.8s; }
.sn-3 { color: #FFF176; animation-delay: 3.0s; }
.sn-4 { color: #FFD54F; animation-delay: 3.2s; }
.sn-5 { color: #FFAB91; animation-delay: 3.4s; }
.sn-6 { color: #A5D6A7; animation-delay: 3.6s; }
.sn-7 { color: #CE93D8; animation-delay: 3.8s; }
.sn-8 { color: #FFD54F; animation-delay: 4.0s; }
.sn-9 { color: #EF9A9A; animation-delay: 4.2s; }

@keyframes note-appear {
  0% { opacity: 0; transform: translateY(8px) scale(0.6); }
  100% { opacity: 0.8; transform: translateY(0) scale(1); }
}

/* Album title reveal */
.scene-title-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 8px;
  color: transparent;
  background: linear-gradient(90deg, #FFD54F, #FFB300, #FFD54F);
  background-clip: text;
  -webkit-background-clip: text;
  opacity: 0;
  animation: title-reveal 1.5s ease-out 4.5s forwards;
  text-align: center;
  margin: 0;
}

@keyframes title-reveal {
  0% { opacity: 0; letter-spacing: 16px; filter: blur(4px); }
  100% { opacity: 1; letter-spacing: 8px; filter: blur(0); }
}

/* Ambient bottom label */
.scene-ambient-label {
  position: relative;
  z-index: 2;
  order: 5;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  margin-top: 12px;
}

/* Opening paragraph styling */
.symbol-opening {
  font-size: 17px !important;
  font-weight: 600;
  font-style: italic;
  color: var(--deep) !important;
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--brd);
  margin-bottom: 18px !important;
}

.symbol-anchor {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--brd);
}

/* ★ 2: Slogan */
.slogan-display {
  text-align: center;
  padding: 36px 24px;
  background: linear-gradient(135deg, var(--deep), var(--med));
  border-radius: 12px;
  position: relative;
}

.slogan-primary {
  margin: 0;
  padding: 0;
  border: none;
}

.slogan-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 700;
  font-style: italic;
  color: var(--gold-l);
  display: block;
  line-height: 1.4;
}

.slogan-translation {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ★ 3: Surprise */
.surprise-columns {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
}

.surprise-assumption, .surprise-reversal {
  padding: 24px;
  border-radius: 12px;
}

.surprise-assumption {
  background: rgba(74, 20, 140, 0.03);
  border: 1px solid var(--brd);
}

.surprise-reversal {
  background: linear-gradient(135deg, rgba(255, 179, 0, 0.06), rgba(255, 213, 79, 0.1));
  border: 1px solid rgba(255, 179, 0, 0.2);
}

.surprise-label {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.surprise-assumption .surprise-label {
  color: var(--lt);
}

.surprise-reversal .surprise-label {
  color: var(--gold);
}

.surprise-assumption p, .surprise-reversal p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--dk);
  margin: 0;
}

.surprise-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold);
  font-weight: 700;
}

/* ★ 4: Salient Idea */
.salient-highlight {
  text-align: center;
  padding: 36px 28px;
  background: linear-gradient(135deg, var(--ultra), var(--pale));
  border-radius: 12px;
  border: 2px solid var(--brd);
  position: relative;
}

.salient-quote-mark {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
}

.salient-close {
  transform: rotate(180deg);
  display: inline-block;
}

.salient-statement {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 600;
  color: var(--deep);
  line-height: 1.6;
  max-width: 640px;
  margin: 8px auto;
}

.salient-statement em {
  color: var(--gold);
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: rgba(255, 179, 0, 0.3);
  text-underline-offset: 3px;
}

/* ★ 5: Story */
.story-narrative {
  padding: 28px;
  background: var(--w);
  border-radius: 12px;
  border-left: 4px solid var(--gold);
}

.story-paragraph {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.9;
  color: var(--dk);
  margin-bottom: 18px;
}

.story-paragraph:last-child {
  margin-bottom: 0;
}

.story-paragraph em {
  color: var(--med);
}

.story-opening {
  font-size: 16px;
  font-weight: 600;
  color: var(--deep);
}

.story-closing {
  font-style: italic;
  color: var(--med);
  border-top: 1px solid var(--brd);
  padding-top: 18px;
}

/* Star Summary Card */
.star-summary-card {
  background: linear-gradient(135deg, var(--deep), var(--med));
  border-radius: 16px;
  padding: 36px 32px;
  text-align: center;
  margin-top: 36px;
  box-shadow: 0 12px 48px rgba(74, 20, 140, 0.18);
}

.star-summary-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-l);
  margin: 0 0 6px;
}

.star-summary-subtitle {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.star-summary-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.star-summary-item {
  text-align: center;
  padding: 16px 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.star-summary-label {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-l);
  margin-bottom: 8px;
}

.star-summary-item p {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.star-summary-item p em {
  color: var(--gold-l);
  font-style: normal;
}

/* Star Transition Card */
.star-transition-card {
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(255, 179, 0, 0.04), rgba(255, 213, 79, 0.08));
  border: 1px solid rgba(255, 179, 0, 0.15);
  border-radius: 16px;
}

.star-transition-intro {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--lt);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.star-transition-heading {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--deep);
  margin: 0 0 12px;
  line-height: 1.4;
}

.star-transition-body {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dk);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 16px;
}

.star-transition-arrow {
  font-size: 28px;
  color: var(--gold);
  animation: arrow-bounce 2s ease-in-out infinite;
}

@keyframes arrow-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ============================
   PROJECT SECTION (Private)
   ============================ */
.project-section {
  background: var(--off);
  padding: 80px 24px;
}

.project-container {
  max-width: 860px;
  margin: 0 auto;
}

.confidential-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--med);
  background: var(--pale);
  padding: 5px 14px;
  border-radius: 16px;
  margin-bottom: 12px;
}

.album-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  font-style: italic;
  color: var(--deep);
}

.album-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--med);
  margin-top: 10px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Tracklist */
.tracklist-card {
  background: var(--w);
  border-radius: 16px;
  border: 1px solid var(--brd);
  box-shadow: 0 8px 32px rgba(74, 20, 140, 0.08);
  overflow: hidden;
}

.tracklist-header {
  background: linear-gradient(135deg, var(--deep), var(--med));
  padding: 18px 24px;
}

.tracklist-heading {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--w);
}

.tracklist-sub {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(206, 147, 216, 0.7);
  margin-top: 2px;
}

.track-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--pale);
  cursor: default;
  transition: background 0.25s;
}

.track-row:hover {
  background: var(--pale);
}

.track-row-last {
  border-bottom: none;
}

.track-num {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--brd);
  min-width: 24px;
  text-align: right;
}

.track-play-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--pale);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.track-row:hover .track-play-circle {
  background: linear-gradient(135deg, var(--deep), var(--med));
}

.track-row:hover .track-play-circle .play-triangle {
  border-left-color: white;
}

.track-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--dk);
  flex: 1;
  transition: all 0.25s;
}

.track-row:hover .track-title {
  font-weight: 700;
  color: var(--deep);
}

.bonus-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-style: italic;
  color: var(--gold);
  margin-left: 8px;
}

.track-tag {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--lt);
  text-transform: uppercase;
}

/* Production Grid */
.production-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.production-card {
  background: var(--w);
  border-radius: 10px;
  border: 1px solid var(--brd);
  padding: 18px 14px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(74, 20, 140, 0.04);
}

.prod-icon {
  font-size: 22px;
  display: block;
  margin-bottom: 6px;
}

.prod-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lt);
  margin-bottom: 4px;
}

.prod-value {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--deep);
}

.prod-sub {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--med);
  margin-top: 2px;
}

/* ============================
   FUNDING SECTION (Private)
   ============================ */
.funding-section {
  background: var(--w);
  padding: 80px 24px;
}

.funding-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Budget Card */
.budget-card {
  background: var(--w);
  border-radius: 14px;
  border: 1px solid var(--brd);
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(74, 20, 140, 0.06);
  margin-bottom: 28px;
}

.budget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.budget-heading {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--deep);
}

.budget-total {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
}

.budget-item {
  margin-bottom: 14px;
}

.budget-item-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}

.budget-item-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--deep);
}

.budget-item-amount {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
}

.budget-bar {
  height: 8px;
  background: var(--pale);
  border-radius: 4px;
  overflow: hidden;
}

.budget-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--deep), var(--med));
  border-radius: 4px;
  transition: width 1.5s ease;
}

/* Financing Card */
.financing-card {
  background: var(--w);
  border-radius: 14px;
  border: 1px solid var(--brd);
  padding: 24px 24px;
  box-shadow: 0 4px 16px rgba(74, 20, 140, 0.06);
  margin-bottom: 28px;
}

.financing-heading {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 16px;
}

.finance-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--pale);
  gap: 8px;
  flex-wrap: wrap;
}

.finance-source {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dk);
  flex: 1;
  min-width: 160px;
}

.finance-amount {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--deep);
}

.finance-pct {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--lt);
}

.finance-status {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

/* Compliance Card */
.compliance-card {
  background: linear-gradient(135deg, rgba(74, 20, 140, 0.03), var(--pale));
  border-radius: 12px;
  border: 1px solid var(--brd);
  padding: 20px 22px;
}

.compliance-heading {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.compliance-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}

.compliance-check {
  font-size: 16px;
}

.compliance-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dk);
}

.compliance-rule {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--lt);
}

/* ============================
   CONTACT SECTION
   ============================ */
.contact-section {
  background: linear-gradient(135deg, #1A0033 0%, #4A148C 35%, #7B1FA2 65%, #2D0A4E 100%);
  padding: 80px 24px;
}

.contact-container {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(206, 147, 216, 0.15);
  border-radius: 14px;
  padding: 32px 28px;
  backdrop-filter: blur(10px);
}

.contact-mgmt {
  margin-bottom: 24px;
}

.contact-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(206, 147, 216, 0.5);
  margin-bottom: 6px;
}

.contact-company {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--w);
}

.contact-location {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.contact-divider {
  width: 40px;
  height: 1px;
  background: rgba(206, 147, 216, 0.15);
  margin: 18px auto;
}

.contact-emails {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-email-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(206, 147, 216, 0.4);
  margin-bottom: 3px;
}

.contact-email-value {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-email-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-email-link:hover {
  color: var(--gold-l);
}

/* Online Presence */
.contact-online {
  margin-top: 28px;
}

.contact-online-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(206, 147, 216, 0.35);
  text-align: center;
  margin-bottom: 16px;
}

.contact-online-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.online-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(206, 147, 216, 0.08);
  text-decoration: none;
  transition: all 0.3s ease;
}

.online-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 213, 79, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.online-icon {
  font-size: 20px;
  line-height: 1;
}

.online-name {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
}

.online-handle {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(206, 147, 216, 0.4);
}

.online-item:hover .online-name {
  color: var(--gold-l);
}

.online-item:hover .online-handle {
  color: rgba(255, 213, 79, 0.6);
}

/* Footer */
.contact-footer {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(206, 147, 216, 0.08);
}

.footer-url {
  font-family: var(--font-body);
  font-size: 16px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 12px;
}

.footer-url a {
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-url a:hover {
  color: var(--gold-l);
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(206, 147, 216, 0.2);
}

.footer-indie {
  font-family: var(--font-body);
  font-size: 10px;
  color: rgba(206, 147, 216, 0.12);
  margin-top: 6px;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .artist-card {
    max-width: 280px;
    margin: 0 auto;
  }

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

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

  .cover-header {
    padding: 16px 18px;
    gap: 12px;
  }

  .cover-body-inner {
    padding: 4px 18px 18px;
  }

  .cover-title {
    font-size: 17px;
  }

  .cover-play-btn {
    display: none;
  }

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

  .finance-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .budget-header {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-link {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .covers-cta-box {
    padding: 32px 20px;
  }

  .contact-card {
    padding: 24px 20px;
  }

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

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

  .gallery-item-tall {
    height: 320px;
  }

  .gallery-item-wide {
    height: 260px;
    grid-column: auto;
  }

  .gallery-item-square {
    grid-column: auto;
    max-width: 100%;
    height: 340px;
  }

  .journey-featured-info {
    padding: 24px 20px 28px;
  }

  .journey-featured-title {
    font-size: 22px;
  }

  /* Star Section responsive */
  .star-card-header {
    padding: 18px 20px;
    gap: 12px;
  }

  .star-card-body {
    padding: 20px;
  }

  .star-number-badge {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .star-card-title {
    font-size: 18px;
  }

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

  .surprise-arrow {
    transform: rotate(90deg);
    padding: 4px 0;
  }

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

  .star-summary-card {
    padding: 28px 20px;
  }

  .slogan-display {
    padding: 28px 18px;
  }

  .teaser-star-grid {
    gap: 14px;
  }\n}", "old_string": "  .journey-video-card {\n    grid-template-columns: 1fr;\n  }\n\n  .journey-video-wrap {\n    min-height: 220px;\n  }\n\n  .journey-video-info {\n    padding: 24px 20px;\n  }\n\n  .journey-video-title {\n    font-size: 20px;\n  }\n}

@media (max-width: 480px) {
  .hero-section {
    padding: 80px 16px 60px;
  }

  .about-section,
  .covers-section,
  .covers-teaser-section,
  .star-section,
  .gallery-section,
  .project-section,
  .funding-section,
  .contact-section {
    padding: 60px 16px;
  }

  .star-card-header {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }

  .star-card-body {
    padding: 16px;
  }

  .star-summary-grid {
    grid-template-columns: 1fr;
  }

  .story-narrative {
    padding: 20px 16px;
  }

  .symbol-visual {
    padding: 20px 14px;
  }

  .resonance-scene {
    min-height: 440px;
    padding: 36px 16px 24px;
  }

  .root {
    width: 40px;
    height: 40px;
  }

  .scene-roots {
    gap: 10px;
  }

  .scene-heritage-labels {
    gap: 6px;
  }

  .heritage-name {
    font-size: 8px;
    letter-spacing: 1px;
  }

  .scene-score {
    width: 200px;
    height: 48px;
  }

  .score-note {
    font-size: 14px;
  }

  .pk.pw {
    width: 14px;
    height: 38px;
  }

  .pk.pb {
    width: 10px;
    height: 24px;
  }

  .journey-section {
    padding: 60px 16px;
  }

  .gallery-item-tall {
    height: 280px;
  }

  .gallery-item-wide {
    height: 220px;
  }

  .journey-featured-info {
    padding: 20px 16px 24px;
  }

  .journey-featured-title {
    font-size: 20px;
  }

  .journey-featured-desc {
    font-size: 14px;
  }

  .journey-featured-tags {
    gap: 8px;
  }

  .journey-tag {
    font-size: 11px;
    padding: 5px 10px;
  }

  .journey-quote-card {
    padding: 24px 18px;
  }

  .journey-quote-text {
    font-size: 16px;
  }

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

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

  .audio-waveform {
    display: none;
  }

  .gate-card {
    padding: 28px 20px;
  }

  .gate-input-row {
    flex-direction: column;
  }

  .contact-online-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .online-item {
    padding: 10px 8px;
  }

  .online-name {
    font-size: 11px;
  }

  .online-handle {
    font-size: 10px;
  }
}