/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --bg:        #0a0a0a;
  --text:      #f5f2ee;
  --muted:     #8a8480;
  --accent:    #c9a97a;
  --border:    rgba(245, 242, 238, 0.08);

  --hero-font: 'Syne', sans-serif;
  --body-font: 'Montserrat', sans-serif;

  --max-w: 1200px;
  --section-pad: clamp(80px, 12vw, 140px);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body-font);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ── NAV ────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  background: transparent;
  transition: background 0.3s;
}

.nav--scrolled {
  background: rgba(10,10,10,0.92);
}

.nav-logo {
  font-family: var(--hero-font);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--text);
  letter-spacing: 0.02em;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-social {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-left: auto;
}

.nav-social a {
  color: var(--text);
  font-size: 1.2rem;
  transition: color 0.2s;
}

.nav-social a:hover { color: var(--text); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  background: #111;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(10,10,10,0.4) 100%),
    linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  padding: 0 48px clamp(48px, 8vw, 96px);
  width: 100%;
  text-align: center;
}

.hero-name {
  font-family: var(--hero-font);
  font-size: clamp(5rem, 14vw, 13rem);
  font-weight: 800;
  font-style: normal;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 20px;
}

/* ── SCROLL HINT ────────────────────────────────────────────── */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  right: 48px;
}

.scroll-hint span {
  display: block;
  width: 1px;
  height: 56px;
  background: var(--accent);
  transform-origin: top;
  animation: line-grow 1.8s ease-in-out infinite;
}

@keyframes line-grow {
  0%   { transform: scaleY(0); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ── SECTIONS ───────────────────────────────────────────────── */
.section {
  padding: var(--section-pad) clamp(24px, 6vw, 96px);
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-heading {
  font-family: var(--body-font);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: clamp(40px, 6vw, 72px);
}

/* ── MUSIC ──────────────────────────────────────────────────── */
.music.section {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.music .section-heading {
  text-align: center;
}

.singles-grid {
  display: flex;
  gap: clamp(16px, 3vw, 28px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 clamp(24px, 6vw, 96px) clamp(32px, 4vw, 56px);
  scrollbar-width: none;
  cursor: grab;
}

.singles-grid::-webkit-scrollbar { display: none; }
.singles-grid:active { cursor: grabbing; }

.single {
  flex: 0 0 clamp(240px, 32vw, 380px);
  scroll-snap-align: start;
}

.single-cover {
  position: relative;
  aspect-ratio: 1;
  background: #1a1a1a;
  overflow: hidden;
}

.single-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.single-cover.no-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    #181818 0px, #181818 10px,
    #1f1f1f 10px, #1f1f1f 20px
  );
}

.cover-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,10,0.55);
  opacity: 0;
  transition: opacity 0.3s;
}

.single-cover-link:hover .cover-hover { opacity: 1; }
.single-cover-link:hover .single-cover img { transform: scale(1.04); }

.play-icon {
  width: 48px;
  height: 48px;
  color: var(--text);
}

.single-title {
  margin-top: 16px;
  font-family: var(--body-font);
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.single-links {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  justify-content: center;
}

.single-links a {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.single-links a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ── ABOUT ──────────────────────────────────────────────────── */
.about { padding-top: 0; }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.about-photo-wrap {
  aspect-ratio: 4/3;
  background: #1a1a1a;
  overflow: hidden;
}

.about-photo-wrap.no-img {
  background: repeating-linear-gradient(
    -45deg,
    #181818 0px, #181818 10px,
    #1f1f1f 10px, #1f1f1f 20px
  );
}

.about-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 80%;
}

.about-text {
  padding-top: clamp(24px, 4vw, 48px);
}

.about-text p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.85;
  color: var(--text);
  max-width: 44ch;
}

/* ── CONNECT ────────────────────────────────────────────────── */
.connect { text-align: center; }
.connect-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

.connect-icons a {
  color: var(--muted);
  transition: color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
}

.connect-icons a:hover {
  color: var(--text);
  transform: translateY(-2px);
}

.connect-icons i {
  font-size: 1.75rem;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px clamp(24px, 6vw, 96px);
  text-align: center;
}

.footer p {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero-content { padding: 0 24px clamp(40px, 10vw, 72px); }
  .scroll-hint { right: 24px; }
  .singles-grid { grid-template-columns: 1fr; max-width: 360px; justify-content: flex-start; }
  .about-inner { grid-template-columns: 1fr; }
  .about-photo-wrap { aspect-ratio: 4/3; }
}

/* ── MOBILE MENU ─────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  flex-direction: column;
  padding: 24px;
}

.mobile-menu.is-open { display: flex; }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-logo {
  font-family: var(--hero-font);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--text);
  letter-spacing: 0.02em;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.mobile-menu-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mobile-menu-links a {
  font-family: var(--hero-font);
  font-size: clamp(2.5rem, 12vw, 3.5rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.mobile-menu-social {
  display: flex;
  gap: 28px;
  justify-content: center;
  padding-bottom: 8px;
}

.mobile-menu-social a {
  color: var(--text);
  font-size: 1.5rem;
}

@media (max-width: 480px) {
  .nav-links { display: none; }
  .nav-social { display: none; }
  .nav-hamburger { display: block; }
  .nav-logo {
    position: static;
    transform: none;
  }
}
