:root {
  --base: #222222;
  --base-deep: #151515;
  --base-raised: #2b2b2b;
  --off: #ecebea;
  --lime: #c8d601;
  --pink: #ff0286;
  --ease-solido: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--base);
  color: var(--off);
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--lime);
  color: var(--base);
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--base-deep);
}
::-webkit-scrollbar-thumb {
  background: #3a3a3a;
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--lime);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.font-display {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  font-stretch: condensed;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-solido), transform 0.6s var(--ease-solido);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(34, 34, 34, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.site-header .wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 24px;
}
.site-header nav {
  display: none;
  gap: 24px;
  font-size: 0.875rem;
}
.site-header nav a {
  color: rgba(236, 235, 234, 0.7);
  transition: color 0.3s;
}
.site-header nav a:hover {
  color: var(--lime);
}
.nav-right {
  justify-content: flex-end;
}
.site-header .logo img {
  height: 34px;
  width: auto;
}
.mobile-listen {
  display: flex;
  justify-content: flex-end;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--lime);
}
@media (min-width: 768px) {
  .site-header nav {
    display: flex;
  }
  .mobile-listen {
    display: none;
  }
  .site-header .logo img {
    height: 40px;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(34,34,34,0.4), rgba(34,34,34,0.75) 60%, var(--base) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 128px 20px 56px;
}
@media (min-width: 768px) {
  .hero-content {
    padding: 128px 40px 80px;
  }
}
.hero-logo {
  width: 62vw;
  max-width: 420px;
  height: auto;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .hero-logo { width: 34vw; max-width: 640px; margin-bottom: 32px; }
}
.hero-eyebrow {
  color: var(--lime);
  margin: 0 0 16px;
}
.hero-title {
  font-size: 15vw;
  line-height: 0.85;
  max-width: 1100px;
  margin: 0;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 8.5vw;
  }
}
.hero-title .accent {
  color: var(--lime);
}
.hero-ctas {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: all 0.3s var(--ease-solido);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--lime);
  color: var(--base);
}
.btn-primary:hover {
  background: var(--off);
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(236,235,234,0.3);
  color: var(--off);
}
.btn-outline:hover {
  border-color: var(--pink);
  color: var(--pink);
}
.scroll-cue {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 1;
  height: 44px;
  width: 44px;
  border-radius: 999px;
  border: 1px solid rgba(236,235,234,0.2);
  display: none;
  align-items: center;
  justify-content: center;
  color: rgba(236,235,234,0.6);
  transition: color 0.3s, border-color 0.3s;
  animation: bob 1.6s ease-in-out infinite;
}
.scroll-cue:hover {
  color: var(--lime);
  border-color: var(--lime);
}
@media (min-width: 768px) {
  .scroll-cue { display: flex; }
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ---------- Section heading shared ---------- */
.section {
  padding: 96px 20px;
}
@media (min-width: 768px) {
  .section { padding: 128px 40px; }
}
.section-heading h2 {
  font-size: 10vw;
  line-height: 0.9;
  margin: 8px 0 0;
}
@media (min-width: 640px) {
  .section-heading h2 { font-size: 3.5rem; }
}
@media (min-width: 768px) {
  .section-heading h2 { font-size: 4.25rem; }
}
.section-heading .accent { color: var(--lime); }

/* ---------- Records grid ---------- */
.section-records { background: var(--base); }
.grid-records {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px) {
  .grid-records { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (min-width: 1024px) {
  .grid-records { grid-template-columns: repeat(4, 1fr); }
}
.artist-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 8px;
  background: var(--base-raised);
  display: block;
}
.artist-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.7s var(--ease-solido);
}
.artist-card.has-cover:hover .photo-img {
  opacity: 0;
  transform: scale(1.1);
}
.artist-card:not(.has-cover):hover .photo-img {
  opacity: 0.9;
  transform: scale(1.1);
}
.artist-card.has-cover:hover .cover-reveal {
  opacity: 1;
}
.cover-reveal {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  background: #0a0a0a;
  opacity: 0;
  transition: opacity 0.6s var(--ease-solido);
}
.cover-reveal .cover-bar {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--base-deep);
  padding: 9px 4px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(236, 235, 234, 0.6);
}
.cover-reveal .cover-bar.cover-bar-bottom {
  color: transparent;
}
.cover-reveal .cover-square {
  position: relative;
  flex: 1;
}
.cover-reveal .cover-square img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(0.94);
  transition: transform 0.6s var(--ease-solido);
}
.artist-card.has-cover:hover .cover-square img {
  transform: scale(1);
}
.artist-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--base), rgba(34,34,34,0.1) 60%, transparent);
  opacity: 0.8;
  transition: opacity 0.5s;
  z-index: 1;
}
.artist-card:hover::before {
  opacity: 0.95;
}
.artist-card .external-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  height: 32px;
  width: 32px;
  border-radius: 999px;
  background: rgba(34,34,34,0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  opacity: 0;
  transition: all 0.5s;
}
.artist-card:hover .external-icon {
  color: var(--lime);
  opacity: 1;
}
.artist-info {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;
  padding: 12px;
}
@media (min-width: 768px) {
  .artist-info { padding: 16px; }
}
.artist-info p {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1;
  transition: transform 0.5s var(--ease-solido);
}
@media (min-width: 768px) {
  .artist-info p { font-size: 1.25rem; }
}
.artist-card:hover .artist-info p {
  transform: translateY(-4px);
}
.artist-info .bar {
  display: block;
  margin-top: 6px;
  height: 2px;
  width: 0;
  background: var(--lime);
  transition: width 0.5s var(--ease-solido);
}
.artist-card:hover .artist-info .bar {
  width: 40px;
}

/* ---------- Publishing grid ---------- */
.section-publishing { background: var(--base-deep); }
.grid-publishing {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (min-width: 640px) {
  .grid-publishing { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
@media (min-width: 1024px) {
  .grid-publishing { grid-template-columns: repeat(6, 1fr); }
}
.writer-card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: var(--base-raised);
}
.writer-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: all 0.7s var(--ease-solido);
}
.writer-card:hover img {
  filter: grayscale(0);
  transform: scale(1.05);
}
.writer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--base-deep), transparent 70%);
}
.writer-card p {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  margin: 0;
  padding: 8px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .writer-card p { padding: 12px; font-size: 12px; }
}

/* ---------- Playlist ---------- */
.section-playlist { background: var(--base); }
.playlist-grid {
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .playlist-grid { grid-template-columns: 1fr 1fr; }
}
.playlist-copy p {
  margin-top: 24px;
  max-width: 380px;
  color: rgba(236,235,234,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}
.playlist-embed {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}
.playlist-embed iframe {
  width: 100%;
  height: 352px;
  display: block;
  border: none;
}

/* ---------- Press ---------- */
.section-press { background: var(--off); text-align: center; }
.section-press .eyebrow { color: rgba(34,34,34,0.5); }
.press-logos {
  margin: 40px auto 0;
  max-width: 1024px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px 64px;
}
.press-logo {
  position: relative;
  height: 28px;
  width: 96px;
  filter: grayscale(1);
  opacity: 0.6;
  transition: all 0.3s;
}
.press-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}
.press-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 768px) {
  .press-logo { height: 32px; width: 112px; }
}

/* ---------- Business CTA ---------- */
.section-cta { background: var(--base); }
.cta-card {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  background: var(--base-raised);
  border-radius: 16px;
  padding: 56px 32px;
  transition: border-color 0.5s;
}
.cta-card:hover {
  border-color: rgba(200, 214, 1, 0.4);
}
.cta-card .eyebrow { color: rgba(236,235,234,0.5); }
.cta-card h3 {
  font-size: 9vw;
  line-height: 0.95;
  margin: 0;
}
@media (min-width: 640px) {
  .cta-card h3 { font-size: 3rem; }
}
@media (min-width: 768px) {
  .cta-card h3 { font-size: 3.75rem; }
}
.cta-card .cta-email {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--lime);
  font-size: 1.125rem;
  transition: transform 0.3s;
}
.cta-card:hover .cta-email {
  transform: translateX(4px);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--base);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 64px 20px;
}
@media (min-width: 768px) {
  .site-footer { padding: 64px 40px; }
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .footer-top { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}
.footer-brand img {
  height: 36px;
  width: auto;
}
.footer-brand p {
  margin-top: 16px;
  max-width: 280px;
  font-size: 0.875rem;
  color: rgba(236,235,234,0.6);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (min-width: 480px) {
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}
.footer-links .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(236,235,234,0.4);
}
.footer-links a {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--lime);
}
.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom p {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(236,235,234,0.4);
}

.icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
