:root {
  --bg: #ffffff;
  --bg-warm: #fff8f0;
  --ink: #14110f;
  --ink-dim: #6b645c;
  --sun: #ffd24d;
  --orange: #ff8a2b;
  --coral: #ff5e5e;
  --line: rgba(20, 17, 15, 0.14);
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 3rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--ink);
  flex: none;
}
.logo-mark img {
  width: 62%;
  height: auto;
  display: block;
}

.logo-word {
  display: none;
}
@media (min-width: 520px) {
  .logo-word { display: inline; }
}

.menu-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ink);
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.menu-btn:hover { transform: scale(1.06); }
.menu-btn span {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.menu-panel {
  position: absolute;
  top: 4.5rem;
  right: 3rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 160px;
  box-shadow: 0 20px 40px rgba(20, 17, 15, 0.08);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.menu-panel.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.menu-panel a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  transition: background 0.15s ease;
}
.menu-panel a:hover { background: var(--bg-warm); }

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

/* Blurred, disc-shaped color bloom — this is the vinyl before it "comes
   into focus" further down the page. Blur/opacity are scroll-driven (JS). */
.hero-blob {
  position: absolute;
  left: 50%;
  bottom: -18%;
  width: 66vmin;
  height: 66vmin;
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 0;
  background: conic-gradient(
    from 210deg at 50% 50%,
    var(--coral) 0deg,
    var(--orange) 130deg,
    var(--sun) 220deg,
    var(--coral) 360deg
  );
  filter: blur(30px);
  will-change: filter, opacity, transform;
}

#wave-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  opacity: 0.55;
  transition: opacity 0.4s ease-out, filter 0.4s ease-out;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 0 5vw;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.hero-sub-line {
  font-weight: 500;
}

.highlight {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.highlight::before {
  content: '';
  position: absolute;
  left: -0.15em;
  right: -0.15em;
  top: 0.18em;
  bottom: 0.1em;
  background: var(--sun);
  transform: rotate(-1deg);
  z-index: -1;
  border-radius: 2px;
}

.platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.platform-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.4rem;
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.platform-btn:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.scroll-hint {
  position: absolute;
  right: 2.5rem;
  bottom: 3rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink-dim);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-arrow {
  writing-mode: horizontal-tb;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ===== ABOUT ===== */
#about {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-warm);
  padding: 6rem 6vw;
}

/* The vinyl record — sharp, two-tone, sitting in the background of the
   About section. Fades in as the hero blob fades/blurs away above. */
.about-vinyl-wrap {
  position: absolute;
  left: -8vmin;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}

.about-vinyl {
  width: 62vmin;
  height: 62vmin;
  border-radius: 50%;
  opacity: 0;
  position: relative;
  background:
    repeating-radial-gradient(circle at 50% 50%,
      rgba(20, 17, 15, 0.09) 0px, rgba(20, 17, 15, 0.09) 1.5px,
      transparent 1.5px, transparent 5px),
    conic-gradient(from 200deg at 50% 50%,
      var(--coral) 0deg 180deg,
      var(--orange) 180deg 360deg);
  box-shadow: 0 30px 90px rgba(20, 17, 15, 0.2);
  animation: spin 60s linear infinite;
  animation-play-state: paused;
  will-change: opacity, transform;
}
.about-vinyl.spinning { animation-play-state: running; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

.about-vinyl::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.vinyl-label {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30%;
  height: 30%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1vmax;
  letter-spacing: 0.02em;
  color: var(--bg-warm);
  box-shadow: 0 4px 14px rgba(20, 17, 15, 0.25);
}
.vinyl-label img {
  width: 46%;
  height: auto;
}
.vinyl-label::after {
  content: '';
  position: absolute;
  width: 12%;
  height: 12%;
  border-radius: 50%;
  background: var(--bg-warm);
}

.about-content {
  position: relative;
  z-index: 2;
  max-width: 34ch;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: rgba(255, 248, 240, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 28px;
  padding: 3rem;
}

.about-kicker {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
}

.about-text {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
}

.about-tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.about-tags span {
  padding: 0.4rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ink-dim);
}

/* ===== LISTEN ===== */
#listen {
  position: relative;
  z-index: 1;
  background: var(--bg);
  padding: 7rem 6vw;
  text-align: center;
  border-top: 1px solid var(--line);
}

.listen-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

#listen h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.spotify-embed {
  width: 100%;
  margin: 0.5rem 0 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(20, 17, 15, 0.12);
}
.spotify-embed iframe {
  display: block;
  width: 100%;
}

/* ===== RADIO TEASER ===== */
#radio-teaser {
  position: relative;
  z-index: 1;
  background: var(--bg);
  padding: 8rem 6vw;
  text-align: center;
  border-top: 1px solid var(--line);
}

.teaser-kicker {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coral);
}

#radio-teaser h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin: 0.75rem 0 1rem;
  letter-spacing: -0.02em;
}

#radio-teaser p {
  color: var(--ink-dim);
  font-weight: 400;
  max-width: 50ch;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
footer {
  position: relative;
  z-index: 1;
  background: var(--bg-warm);
  padding: 3rem 6vw;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--orange); }

.footer-meta {
  color: var(--ink-dim);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .site-header { padding: 1.5rem; }
  #about {
    padding: 10rem 6vw 5rem;
  }
  .about-vinyl-wrap {
    left: 50%;
    top: 18%;
    transform: translate(-50%, 0);
  }
  .about-vinyl {
    width: 80vw;
    height: 80vw;
  }
  .about-content {
    margin-left: 0;
    max-width: 100%;
    padding: 2rem;
  }
  .scroll-hint {
    right: 1.2rem;
    bottom: 1.5rem;
  }
  footer {
    flex-direction: column;
    text-align: center;
  }
}