/* ===============================================
   MY BODY REMEMBERS - Main Stylesheet
   Gradient: deep warm black (#0D0B0A) to creamy white (#F5F0EB)
   Fonts: Cormorant Garamond (headings) / Inter (body)
=============================================== */

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

:root {
  --dark:       #0D0B0A;
  --dark-mid:   #1C1917;
  --mid:        #3D3530;
  --warm-mid:   #8B7355;
  --cream-dark: #C8B89A;
  --cream:      #E8DDD0;
  --cream-light:#F5F0EB;
  --white:      #FFFFFF;
  --silver:     #C0C0C0;
  --silver-light: #E8E8E8;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', system-ui, sans-serif;
  --radius:     8px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream-light);
  background: var(--dark);
  overflow-x: hidden;
}

/* Page-wide gradient background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(
    to bottom,
    #0D0B0A 0%,
    #1C1917 15%,
    #2A2420 30%,
    #3D3530 45%,
    #6B5744 58%,
    #9E8570 68%,
    #C8B89A 78%,
    #E0D5C5 88%,
    #F5F0EB 100%
  );
  z-index: -1;
  pointer-events: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }


/* HERO */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/hero_silhouette.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.75;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to bottom, transparent, #0D0B0A);
}

#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Site Header / Logo */
.site-header {
  position: absolute;
  top: 24px;
  right: 28px;
  left: auto;
  z-index: 10;
}

.site-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  opacity: 0.92;
}

/* Hero Content */
.hero-content {
  position: absolute;
  bottom: 22%;
  left: 0;
  right: 0;
  z-index: 5;
  text-align: center;
  padding: 0 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
  color: var(--white);
  text-shadow: 0 2px 30px rgba(0,0,0,0.9);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 300;
  color: var(--cream-dark);
  letter-spacing: 0.28em;
  margin-bottom: 28px;
}

.hero-listen {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(13px, 1.6vw, 17px);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver-light);
  border-bottom: 1px solid rgba(220,215,205,0.5);
  padding-bottom: 4px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.hero-listen:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.9);
}

/* Hero Audio Player */
.hero-audio {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.audio-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.audio-cover {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.audio-meta {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.audio-song {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
}

.audio-artist {
  font-size: 12px;
  color: var(--cream-dark);
  margin-top: 2px;
}

.audio-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.audio-duration {
  font-size: 12px;
  color: var(--cream-dark);
  white-space: nowrap;
  min-width: 28px;
}

/* Play Button */
.play-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), opacity var(--transition);
}

.play-btn:hover { transform: scale(1.1); }
.play-btn:active { transform: scale(0.95); }
.play-btn svg { width: 28px; height: 28px; }
.play-btn.mini svg { width: 20px; height: 20px; }
.play-btn.overlay-play svg { width: 36px; height: 36px; }
.play-btn.album-play svg { width: 24px; height: 24px; }

.hidden { display: none !important; }

/* Hero Player */
.hero-player {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 320px;
}

/* Progress Bar */
.progress-bar-wrap {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}

.progress-bar-wrap.mini { height: 2px; }

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--silver), var(--cream-light));
  border-radius: 2px;
  transition: width 0.1s linear;
}

/* Buy Button */
.btn-buy {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  background: linear-gradient(180deg, #D4A843 0%, #C9A84C 40%, #B8922A 100%);
  color: #1a1208;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  border-radius: 6px;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  border: 1px solid #8a6a18;
  box-shadow: 0 2px 0 #7a5c10, 0 4px 12px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
  gap: 10px;
  text-align: center;
  width: fit-content;
  align-self: center;
  margin: 0 auto;
  padding: 10px 24px;
}

.btn-price {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #1a1208;
  line-height: 1;
  display: block;
}

.btn-detail {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #3a2a08;
  text-transform: uppercase;
  line-height: 1;
  display: block;
  white-space: nowrap;
}

.btn-buy:hover {
  background: linear-gradient(180deg, #E0B84E 0%, #D4A843 40%, #C4982A 100%);
  transform: translateY(-1px);
  box-shadow: 0 3px 0 #7a5c10, 0 6px 16px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn-buy:active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 #7a5c10, 0 2px 6px rgba(0,0,0,0.3);
}

.btn-sub {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 3px;
}

.hero-buy { padding: 16px 48px; font-size: 16px; }

.mini-buy {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 3px;
  background: linear-gradient(180deg, #D4A843 0%, #C9A84C 40%, #B8922A 100%);
  color: #1a1208;
  border: 1px solid #8a6a18;
  box-shadow: 0 2px 0 #7a5c10, 0 4px 10px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
  white-space: nowrap;
  margin-top: auto;
  font-family: var(--font-serif);
  letter-spacing: 0.1em;
}

.mini-buy:hover {
  background: linear-gradient(180deg, #E0B84E 0%, #D4A843 40%, #C4982A 100%);
  transform: translateY(-1px);
  box-shadow: 0 3px 0 #7a5c10, 0 6px 14px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--transition);
  animation: fadeInUp 1s ease 1.5s both;
}

.scroll-indicator:hover { opacity: 1; }

.scroll-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
}

.scroll-arrow {
  color: var(--silver);
  animation: bounce 2s ease infinite;
}

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to   { opacity: 0.6; transform: translateX(-50%) translateY(0); }
}


/* SECTION SHARED */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-note {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  max-width: 620px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.85;
  letter-spacing: 0.01em;
}
.section-note-sub {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 15px;
  font-weight: 400;
  margin-top: 14px;
  opacity: 0.75;
  line-height: 1.8;
  letter-spacing: 0.01em;
}


/* NEW SINGLE — I'M DONE */
.section-new-single {
  padding: 80px 0 20px;
  color: var(--cream-light);
}

.new-single-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.new-single-cover-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.new-single-cover-wrap:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.65);
  cursor: pointer;
}

.new-single-cover {
  width: 100%;
  max-width: 360px;
  border-radius: 4px;
  display: block;
  transition: transform 0.3s ease;
}

.new-single-cover-wrap:hover .new-single-cover {
  transform: scale(1.04);
}

.new-single-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.new-single-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
}

.new-single-title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--cream-light);
  line-height: 1;
  margin: 0;
}

.new-single-desc {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.6;
  margin: 0;
}

/* Catalog bridge */
.catalog-bridge {
  text-align: center;
  padding-top: 32px;
  padding-bottom: 32px;
}

.catalog-bridge-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 0;
}

.catalog-bridge-text {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #1a1208;
  margin-bottom: 12px;
}

.catalog-bridge-line {
  width: 60px;
  height: 1px;
  background: #8a7060;
  opacity: 0.6;
  margin: 16px auto 20px;
}

.catalog-bridge-sub {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.01em;
  font-size: clamp(15px, 2vw, 20px);
  color: #1a1208;
  opacity: 1;
  margin-top: 4px;
}

/* Purchase info note */
.purchase-info-note {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(232,221,208,0.75);
  margin-top: 12px;
  margin-bottom: 0;
}

/* CATALOG SECTION */
.section-catalog {
  padding: 40px 0 60px;
  color: var(--cream-light);
}

/* Catalog section titles — white, larger serif */
.section-catalog .section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #ffffff;
}
.section-catalog .section-note,
.section-catalog .section-note-sub {
  color: rgba(245, 240, 235, 0.82);
  font-size: 19px;
}

.singles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.singles-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 280px));
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.single-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.single-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.single-cover {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.single-info {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  justify-content: flex-start;
}

.single-tagline {
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  line-height: 1.5;
  color: rgba(245,240,235,0.72);
  margin: 0;
  padding-bottom: 4px;
  min-height: 3em;
}

.single-title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: var(--cream-light);
  margin-bottom: 0;
}

.mini-player {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}


/* NEW SINGLES SECTION */
.section-new-singles {
  padding: 60px 0 80px;
  border-top: 1px solid rgba(180,150,100,0.25);
  margin-top: 20px;
}

/* Also Available — white, larger serif */
.section-new-singles .section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #ffffff;
}
.section-new-singles .section-note {
  color: rgba(245, 240, 235, 0.82);
  font-size: 19px;
}

.new-singles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 320px));
  gap: 24px;
  justify-content: center;
  max-width: 1020px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .new-singles-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .new-singles-grid { grid-template-columns: 1fr; max-width: 320px; }
}

.new-single-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.new-single-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.new-single-cover {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.new-single-info {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.new-single-tagline {
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  line-height: 1.5;
  color: rgba(245,240,235,0.72);
  margin: 0;
  padding-bottom: 2px;
}

.new-single-player {
  display: flex;
  align-items: center;
  gap: 8px;
}

.new-single-progress { width: 100%; }

.new-single-buy {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 3px;
  background: linear-gradient(180deg, #D4A843 0%, #C9A84C 40%, #B8922A 100%);
  color: #1a1208;
  border: 1px solid #8a6a18;
  box-shadow: 0 2px 0 #7a5c10, 0 4px 10px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
  white-space: nowrap;
  display: inline-block;
  text-align: center;
  font-family: var(--font-serif);
  letter-spacing: 0.1em;
  align-self: center;
  margin: 0 auto;
}

.new-single-buy:hover {
  background: linear-gradient(180deg, #E0B84E 0%, #D4A843 40%, #C4982A 100%);
  transform: translateY(-1px);
  box-shadow: 0 3px 0 #7a5c10, 0 6px 14px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
}


/* TESTIMONIALS — removed from page */
.section-testimonials {
  display: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1040px;
  margin: 0 auto 48px;
}

@media (max-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

.testimonials-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1040px;
  margin: 0 auto 48px;
  align-items: start;
}

.testimonials-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

@media (max-width: 700px) {
  .testimonials-columns { grid-template-columns: 1fr; }
}

.testimonial {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(180,150,100,0.18);
  border-left: 3px solid #C9A84C;
  border-radius: 0;
  padding: 36px 36px 28px;
}

.testimonial-quote {
  display: block;
  font-family: var(--font-serif);
  font-size: 52px;
  line-height: 0.6;
  color: #C9A84C;
  opacity: 0.7;
  margin-bottom: 14px;
  font-style: normal;
}

.testimonial p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: 0.015em;
  margin-bottom: 20px;
  color: var(--cream-light);
  opacity: 0.93;
}

.testimonial cite {
  display: flex;
  align-items: center;
  gap: 8px;
  font-style: normal;
}

.cite-name {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-light);
  opacity: 0.7;
}

.cite-song {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: #C9A84C;
  opacity: 0.85;
}

/* FEATURED TESTIMONIAL */
.testimonial-featured {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.3);
  border-left: 3px solid #C9A84C;
  border-radius: 0;
  padding: 48px 56px 40px;
  text-align: center;
}

.testimonial-featured p {
  font-size: 22px;
  line-height: 1.9;
  opacity: 1;
}

.testimonial-featured cite {
  justify-content: center;
  margin-top: 4px;
}

.featured-quote {
  font-size: 68px;
  opacity: 0.9;
  text-align: center;
  display: block;
  margin: 0 auto 16px;
}

.featured-testimonial {
  grid-column: 1 / -1;
  border-left-color: rgba(192,192,192,0.7);
  background: rgba(255,255,255,0.07);
}

.featured-testimonial p { font-size: 19px; }


/* LICENSING */
.section-licensing { padding: 48px 0; }

.licensing-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 48px 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
}

.licensing-inner .section-title {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 16px;
}

.licensing-text {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 20px;
}

.licensing-email {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--silver-light);
  border-bottom: 1px solid rgba(192,192,192,0.4);
  padding-bottom: 2px;
  margin-bottom: 12px;
  transition: color var(--transition);
}

.licensing-email:hover { color: var(--white); }

.licensing-subject { font-size: 13px; opacity: 0.6; }


/* ALBUM SECTION */
.section-album { padding: 80px 0 100px; border-top: 1px solid rgba(180,150,100,0.25); margin-top: 20px; }

/* Albums section title — same hierarchy as The Album Singles */
.albums-section-header {
  margin-bottom: 56px;
}

.albums-section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-align: left;
}

/* 3-column layout */
.album-three-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 48px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .album-three-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.album-col {}

/* LEFT: cover image */
.album-col-image .album-cover {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  display: block;
}

/* MIDDLE: product details */
.album-col-details {
  padding-top: 4px;
}

.album-product-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.65;
  color: #E8E0D5;
  margin-bottom: 10px;
}

.album-product-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 6px;
  text-align: left;
}

.album-tagline {
  font-family: var(--font-serif);
  font-size: clamp(14px, 1.6vw, 17px);
  font-style: italic;
  opacity: 0.85;
  color: #D4C9BC;
  margin-bottom: 20px;
}

.album-description-sub {
  font-size: 14px;
  line-height: 1.85;
  opacity: 0.9;
  color: var(--cream);
  margin-bottom: 24px;
}

.album-includes {
  margin-bottom: 28px;
  list-style: none;
  padding: 0;
}

.album-includes li {
  font-size: 13px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  opacity: 0.9;
}

.album-includes li::before { content: '·'; opacity: 0.5; flex-shrink: 0; }

.album-buy {
  display: block;
  text-align: center;
}

/* RIGHT: podcast */
.album-col-podcast {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 6px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.podcast-eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 10px;
  color: #E8E0D5;
}

.podcast-question {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  color: #F5F0EB;
  margin-bottom: 10px;
  line-height: 1.3;
}

.podcast-desc {
  font-size: 13px;
  line-height: 1.75;
  opacity: 0.9;
  color: var(--cream);
  margin-bottom: 24px;
}

.podcast-player {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.podcast-play {
  color: var(--gold);
  flex-shrink: 0;
}

.podcast-play svg { color: var(--gold); }

.podcast-progress-wrap {
  flex: 1;
  height: 2px;
  background: rgba(0,0,0,0.18);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}

.podcast-time {
  font-family: var(--font-sans);
  font-size: 11px;
  opacity: 0.7;
  color: #D4C9BC;
  flex-shrink: 0;
}

.dim { opacity: 0.55; }


/* FOOTER */
#footer {
  padding: 60px 0 40px;
  background: var(--dark);
  color: var(--cream-dark);
}

#footer a,
#footer p,
#footer .footer-tagline,
#footer .footer-links a,
#footer .footer-legal,
#footer .footer-legal a,
#footer .footer-copy {
  color: var(--cream-dark);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-logo {
  height: 60px;
  width: auto;
  mix-blend-mode: screen;
  opacity: 0.8;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
}

.footer-links a { opacity: 0.7; transition: opacity var(--transition); }
.footer-links a:hover { opacity: 1; }

.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  opacity: 0.5;
}

.footer-legal a { opacity: 1; }
.footer-legal a:hover { text-decoration: underline; }
.sep { opacity: 0.5; }
.footer-copy { font-size: 11px; opacity: 0.4; letter-spacing: 0.05em; }


/* RESPONSIVE */
@media (max-width: 900px) {
  .singles-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
  }
  .album-three-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .album-col-image .album-cover {
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  /* Fix: content fills full width */
  body { overflow-x: hidden; }
  .container { padding: 0 16px; }

  /* Hero */
  .hero-content { bottom: 26%; }
  .site-logo { height: 60px; }
  .site-header { top: 16px; right: 16px; }
  .hero-buy { padding: 14px 32px; }

  /* I'm Done — vertikalni layout na mobilnem: slika polna širina, tekst pod njo */
  .new-single-layout {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: center;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    text-align: center;
  }
  .new-single-cover-wrap {
    border-radius: 4px;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  .new-single-cover {
    max-width: 100%;
    width: 100%;
  }
  .new-single-info {
    gap: 8px;
    align-items: center;
    text-align: center;
  }
  .new-single-label { font-size: 9px; margin-bottom: 0; letter-spacing: 0.25em; text-align: center; }
  .new-single-title { font-size: clamp(28px, 8vw, 40px); line-height: 1; margin-bottom: 0; text-align: center; }
  .new-single-desc { font-size: 15px; margin-bottom: 0; line-height: 1.5; text-align: center; }
  .hero-player { max-width: 100%; justify-content: center; }
  .hero-buy { padding: 10px 32px; font-size: 14px; margin: 0 auto; display: block; width: fit-content; }

  /* Purchase info — kompaktno na mobilnem */
  .purchase-info-note {
    color: rgba(232,221,208,0.8);
    font-size: 10px;
    margin-top: 4px;
    margin-bottom: 4px;
  }

  /* Catalog bridge — kompakten, viden na prvem ekranu */
  .catalog-bridge { padding-top: 8px; padding-bottom: 8px; }
  .catalog-bridge-title { font-size: 20px !important; margin-bottom: 2px; }
  .catalog-bridge-line { margin: 4px auto; }
  .catalog-bridge-text { font-size: 12px !important; margin-top: 2px; }
  .section-header { margin-bottom: 32px; }

  /* Catalog grid — 2 per row on mobile */
  .singles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .single-info { padding: 10px 10px 12px; gap: 6px; }
  .mini-buy { font-size: 11px; padding: 6px 10px; }

  /* Sections padding */
  .section-new-single { padding: 20px 0 6px; }
  .section-catalog { padding: 20px 0 40px; }
  /* The Album Singles naslov - odmik od vrha sekcije */
  .section-catalog .section-header { margin-top: 0; margin-bottom: 24px; }
  .section-catalog .section-title { font-size: clamp(22px, 6vw, 32px); }
  .section-catalog .section-note { font-size: 13px !important; line-height: 1.7; }
  .section-catalog .section-note-sub { font-size: 12px !important; margin-top: 10px; line-height: 1.7; }
  .section-new-singles .section-note { font-size: 13px !important; line-height: 1.7; }
  .section-new-singles { padding: 40px 0 60px; }
  .section-album { padding: 48px 0 80px; }
  .section-licensing { padding: 36px 0; }
  .licensing-inner { padding: 28px 20px; }

  /* Album section — full width cover on mobile */
  .album-three-col {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .album-col-image .album-cover {
    width: 100%;
    max-width: 100%;
  }

  /* Footer — svetlo besedilo na temnem ozadju */
  #footer { color: var(--cream-dark); }
  .footer-tagline { color: var(--cream-dark); opacity: 0.7; }
  .footer-links a { color: var(--cream-dark); }
  .footer-legal { color: var(--cream-dark); }
  .footer-copy { color: var(--cream-dark); }

}

/* PURCHASE INFO BLOCK */
.section-purchase-info {
  padding: 40px 0 48px;
  background: rgba(0,0,0,0.08);
}

.purchase-info-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 680px;
  margin: 0 auto;
  padding: 28px 32px;
  border: 1px solid rgba(180,150,100,0.25);
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
}

.purchase-info-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: #C9A84C;
  margin-top: 2px;
}

.purchase-info-icon svg {
  width: 32px;
  height: 32px;
}

.purchase-info-text {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.75;
  color: var(--cream-light);
  opacity: 0.88;
}

.purchase-info-text p + p {
  margin-top: 10px;
}

.purchase-info-text strong {
  color: #C9A84C;
  font-weight: 600;
}

.purchase-info-inline {
  max-width: 680px;
  margin: 32px auto 0;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(180,150,100,0.2);
}

/* UNIFIED BUTTON FONT */
.btn-buy,
.mini-buy {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn-price {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #1a1208;
  line-height: 1;
}
