/* ── Smooth scroll ── */
html {
  scroll-behavior: smooth;
}

/* ── Page transition ── */
body {
  opacity: 0;
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ── Base ── */
.home-page {
  overflow-x: hidden;
  background: #f2f2f0;
  color: #1a1a1a;
  font-family: 'DM Sans', sans-serif;
}

/* ── Nav ── */
.nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.9rem 2rem;
  background: #0a0a0a;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  height: 60px;
  width: auto;
  display: block;
}

.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.12em;
  line-height: 1;
  transition: color 0.2s;
}

.nav-brand:hover {
  color: #E8A830;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.nav-link {
  font-family: 'Bebas Neue', sans-serif;
  text-decoration: none;
  color: rgba(255,255,255,0.55);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  letter-spacing: 0.16em;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #fff;
}

.nav-link.active {
  color: #E8A830;
}

/* ── Promo Video (desktop only) ── */
.promo-section {
  position: relative;
  width: 100%;
  background: #000;
  line-height: 0;
}

.promo-video {
  width: 100%;
  display: block;
  max-height: 90vh;
  object-fit: contain;
}

.promo-mobile-gif {
  display: none;
}

.promo-sound-btn {
  position: absolute;
  bottom: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
}

.promo-sound-btn:hover {
  color: #fff;
}


/* ── Orange sections ── */
.section-orange {
  background: #E8A830;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 6vw, 5rem);
}

/* ── Dark section (Archive) ── */
.section-dark {
  background: #2a2520;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 6vw, 5rem);
}

.section-dark .section-title {
  color: #f2f2f0;
}

.section-dark .archive-card {
  background: #3a322b;
}

.section-dark .archive-title {
  color: #f2f2f0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.section-dark .archive-title span {
  opacity: 0.5;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

/* ── Product grid ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 900px;
  margin: 0 auto;
}

/* ── Single product ── */
.product-single {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 520px;
  width: 100%;
}

.product-card--single {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: transparent;
}

.product-card--single img {
  object-fit: contain;
}

.product-card {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #d4953a;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.03);
}

.product-card--full {
  grid-column: 1 / -1;
  aspect-ratio: auto;
  height: auto;
}

.product-card--full img {
  height: auto;
  object-fit: contain;
}

.buy-row {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.buy-btn {
  display: inline-block;
  background: #1a1a1a;
  color: #f2f2f0;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.75rem 3rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.buy-btn:hover {
  background: #f2f2f0;
  color: #1a1a1a;
}

/* ── Radio player ── */
.radio-player {
  position: relative;
  max-width: 860px;
  margin: 0 auto 1.5rem;
  background: #0a0a0a;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  overflow: hidden;
}

@media (max-width: 600px) {
  .radio-player {
    aspect-ratio: unset;
    min-height: 320px;
    padding: 2rem 1.5rem 2.5rem;
    gap: 0.75rem;
  }

  .radio-logo {
    width: clamp(80px, 38vw, 150px);
  }

  .radio-btn {
    width: 56px;
    height: 56px;
  }

  .radio-tap-overlay span {
    font-size: 1.2rem;
  }
}

.radio-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.radio-logo {
  width: clamp(120px, 28vw, 240px);
  height: auto;
  display: block;
  opacity: 0.9;
}

.radio-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.radio-live-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.radio-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: background 0.3s;
}

.radio-dot.active {
  background: #e84040;
  box-shadow: 0 0 6px #e84040;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.radio-live-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.45);
}

.radio-station {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(0.8rem, 1.4vw, 1rem);
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

/* Animated bars */
.radio-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
}

.radio-bars span {
  display: block;
  width: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.2);
  height: 4px;
  transition: background 0.3s;
}

.radio-bars.active span {
  background: #E8A830;
  animation: bar-bounce 1s ease-in-out infinite;
}

.radio-bars.active span:nth-child(1) { animation-delay: 0s;    animation-duration: 0.9s; }
.radio-bars.active span:nth-child(2) { animation-delay: 0.15s; animation-duration: 1.1s; }
.radio-bars.active span:nth-child(3) { animation-delay: 0.05s; animation-duration: 0.8s; }
.radio-bars.active span:nth-child(4) { animation-delay: 0.2s;  animation-duration: 1.0s; }
.radio-bars.active span:nth-child(5) { animation-delay: 0.1s;  animation-duration: 1.2s; }

@keyframes bar-bounce {
  0%, 100% { height: 4px; }
  50%       { height: 18px; }
}

/* Play/pause button */
.radio-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.radio-btn:hover {
  background: rgba(255,255,255,0.16);
  transform: scale(1.06);
}

/* Tap-to-play overlay */
.radio-tap-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.radio-tap-overlay span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  letter-spacing: 0.3em;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.6rem 2rem;
}

/* ── Session playlist player ── */
.session-player {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: #0a0a0a;
  border-radius: 12px;
  overflow: hidden;
  max-width: 860px;
  width: 100%;
  margin: 0 auto 1.5rem;
}

.session-art-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  max-height: 480px;
  overflow: hidden;
  background: #111;
}

.session-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.session-info {
  padding: 0 1.5rem;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.session-label-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.session-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: #E8A830;
}

.session-count {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
}

.session-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  letter-spacing: 0.05em;
  color: #fff;
  margin: 0;
  line-height: 1.1;
}

.session-artist {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  margin: 0.3rem 0 0;
}

.session-controls {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-bottom: 1.5rem;
}

.session-skip-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
}

.session-skip-btn:hover {
  color: #fff;
  transform: scale(1.1);
}

/* Channel label below player */
.channel-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.75rem 0 0.25rem;
  color: rgba(26,26,26,0.5);
  text-decoration: none;
  display: block;
}

.channel-label:hover {
  color: #1a1a1a;
}

/* ── Archive grid ── */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  max-width: 600px;
  margin: 0 auto;
  padding-bottom: 1rem;
}

.archive-card {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #d4953a;
}

.archive-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.archive-card:hover img {
  transform: scale(1.03);
}

.archive-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.75rem 0.5rem 0.25rem;
  color: #1a1a1a;
  line-height: 1.4;
}

.archive-title span {
  font-weight: 400;
  opacity: 0.7;
}

/* ── Archive more button ── */
.archive-more-row {
  text-align: center;
  margin-top: 2rem;
}

.archive-more-btn {
  display: inline-block;
  color: #f2f2f0;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.75rem 2.5rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.archive-more-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

/* ── Playlist section ── */
.playlist-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  background: #f2f2f0;
}

.playlist-left {
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.zine-header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.zine-issue {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #E8A830;
}

.zine-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 8vw, 7rem);
  letter-spacing: 0.04em;
  line-height: 0.9;
  color: #1a1a1a;
  margin: 0;
}

.zine-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  font-style: italic;
  letter-spacing: 0.08em;
  color: #1a1a1a;
  opacity: 0.55;
  margin-top: 0.5rem;
}

.playlist-contact {
  margin-top: auto;
}

.contact-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  letter-spacing: 0.14em;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.contact-email {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: #1a1a1a;
  opacity: 0.6;
}

.playlist-right {
  position: relative;
  background: #0a0a0a;
  overflow: hidden;
  min-height: 400px;
}

.playlist-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* ── Email signup ── */
.signup-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  background: #E8A830;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 6vw, 5rem);
}

.signup-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(0.75rem, 1.1vw, 0.9rem);
  letter-spacing: 0.3em;
  color: rgba(26,26,26,0.6);
  text-transform: uppercase;
}

.signup-form {
  display: flex;
  gap: 0;
}

.signup-form input[type="email"] {
  background: transparent;
  border: 1px solid rgba(26,26,26,0.3);
  border-right: none;
  color: #1a1a1a;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  letter-spacing: 0.15em;
  padding: 0.65rem 1.25rem;
  outline: none;
  width: clamp(200px, 26vw, 320px);
}

.signup-form input[type="email"]::placeholder {
  color: rgba(26,26,26,0.35);
}

.signup-form button {
  background: #1a1a1a;
  border: 1px solid #1a1a1a;
  color: #f2f2f0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  letter-spacing: 0.2em;
  padding: 0.65rem 1.5rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.signup-form button:hover {
  background: #f2f2f0;
  border-color: #f2f2f0;
  color: #1a1a1a;
}

.signup-section .form-msg {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(0.75rem, 1.1vw, 0.85rem);
  letter-spacing: 0.15em;
  color: #1a1a1a;
  margin: -0.5rem 0;
  display: none;
}

.signup-section .form-msg--error {
  color: #7a1a1a;
}

@media (max-width: 700px) {
  .signup-form {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .signup-form input[type="email"] {
    border-right: 1px solid rgba(255,255,255,0.2);
    border-bottom: none;
    width: 100%;
  }

  .signup-form button {
    width: 100%;
  }
}

/* ── Footer ── */
.footer {
  background: #0a0a0a;
  overflow: hidden;
}

/* Marquee */
.marquee-track {
  width: 100%;
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 20s linear infinite;
}

.marquee-inner img {
  height: 280px;
  width: auto;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Footer bar */
.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem clamp(1.5rem, 5vw, 4rem);
}

.footer-brand {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.footer-socials {
  display: flex;
  gap: 2rem;
}

.footer-socials a {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-socials a:hover {
  color: #E8A830;
}

/* ── Zine mobile GIF ── */
.zine-gif-section {
  display: none;
}

/* ── Mobile ── */
@media (max-width: 700px) {
  body.home-page {
    opacity: 1 !important;
    animation: none !important;
  }

  .promo-desktop {
    display: none;
  }

  .promo-mobile-gif {
    display: block;
    width: 100%;
  }

  .promo-sound-btn {
    display: none;
  }

  .zine-gif-section {
    display: block;
    background: #000;
    width: 100%;
    line-height: 0;
  }

  .zine-mobile-gif {
    width: 100%;
    display: block;
  }
  .product-grid,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .playlist-section {
    grid-template-columns: 1fr;
  }

  .playlist-photo {
    min-height: 300px;
  }

.playlist-right {
    display: none;
  }
}
