@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;700&family=Space+Mono:wght@400;700&display=swap');

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

:root {
  --bg: #060608;
  --bg2: #0b0b0f;
  --border: #141418;
  --border2: #1e1e24;
  --text: #f0f0f0;
  --muted: #444;
  --dim: #252528;
  --accent: #e8e0d0;
  --green: #1a3d2b;
  --accent-green: #2d6a4a;
  --mono: 'Space Mono', monospace;
  --sans: 'Space Grotesk', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Typography ─────────────────────────────────── */
h1, h2, h3 { font-weight: 700; letter-spacing: -0.02em; line-height: 0.95; }
p { line-height: 1.7; }
a { color: inherit; text-decoration: none; }

.label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted);
}

.label-red { color: var(--accent-green); opacity: 0.7; }

/* ── Layout ─────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* ── Header ─────────────────────────────────────── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background: rgba(6,6,8,0.96);
  border-color: var(--border);
  backdrop-filter: blur(0px);
}

.header-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text);
}

nav { display: flex; align-items: center; gap: 32px; }

nav a {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  transition: color 0.2s;
}

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

.nav-lang {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
}

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--muted);
  transition: all 0.3s;
}

/* ── Hero ───────────────────────────────────────── */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 24px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 50%, rgba(196,30,58,0.07) 0%, transparent 60%),
              radial-gradient(ellipse 60% 80% at 80% 20%, rgba(50,40,80,0.06) 0%, transparent 50%),
              var(--bg);
}

.hero-content {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-top: 140px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent-green);
  opacity: 0.6;
}

.hero-title {
  font-size: clamp(4.5rem, 12vw, 10rem);
  line-height: 0.88;
  color: var(--text);
  margin-bottom: 32px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 480px;
  line-height: 1.6;
  font-weight: 300;
}

.hero-bottom {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s;
}

.scroll-indicator:hover { color: var(--text); }

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── Sections ───────────────────────────────────── */
.section { padding: 80px 0; border-top: 1px solid var(--border); }
.section-lg { padding: 120px 0; border-top: 1px solid var(--border); }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 60px;
}

.section-title { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--text); }

.view-all {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  transition: color 0.2s;
  white-space: nowrap;
}

.view-all:hover { color: var(--text); }

/* ── Artists Grid ───────────────────────────────── */
.artists-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }

.artist-card {
  background: var(--bg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: block;
}

.artist-card:hover .artist-img { transform: scale(1.04); filter: grayscale(0%) brightness(0.85); }
.artist-card:hover .artist-overlay { opacity: 1; }

.artist-img-wrap { aspect-ratio: 3/4; overflow: hidden; position: relative; background: var(--bg2); }

.artist-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(60%) brightness(0.7);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.artist-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dim) 0%, var(--bg2) 100%);
}

.artist-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,6,8,0.9) 0%, transparent 50%);
  opacity: 0.6;
  transition: opacity 0.4s;
}

.artist-info { padding: 20px; }
.artist-name { font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.artist-genre { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted); }

/* ── Mixes ──────────────────────────────────────── */
.mixes-list { display: flex; flex-direction: column; }

.mix-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  cursor: pointer;
  position: relative;
}

.mix-item:hover { background: rgba(255,255,255,0.02); }
.mix-item:hover .mix-title { color: var(--text); }

.mix-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.1em;
  text-align: right;
}

.mix-cover {
  width: 60px;
  height: 60px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  object-fit: cover;
}

.mix-info { display: flex; flex-direction: column; gap: 4px; }
.mix-title { font-size: 1rem; font-weight: 500; color: #ccc; transition: color 0.2s; }
.mix-meta { font-family: var(--mono); font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.15em; }

.mix-duration { font-family: var(--mono); font-size: 11px; color: var(--muted); }

/* ── Events ─────────────────────────────────────── */
.events-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); }

.event-item {
  background: var(--bg);
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 24px 28px;
  transition: background 0.2s;
}

.event-item:hover { background: var(--bg2); }

.event-date { display: flex; flex-direction: column; }
.event-day { font-size: 2rem; font-weight: 700; color: var(--text); line-height: 1; }
.event-month { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted); margin-top: 2px; }

.event-info { display: flex; flex-direction: column; gap: 6px; }
.event-title { font-size: 1.1rem; font-weight: 500; color: var(--text); }
.event-location { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted); }

.event-tag {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  border: 1px solid var(--border2);
  padding: 4px 10px;
}

.event-tag.sold-out { color: var(--green); border-color: rgba(45,106,74,0.3); opacity: 0.7; }

/* ── Editorial / Blog ───────────────────────────── */
.editorial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }

.editorial-card { background: var(--bg); overflow: hidden; display: block; }
.editorial-card:hover .editorial-img { transform: scale(1.03); }
.editorial-card:hover .editorial-title { color: var(--text); }

.editorial-img-wrap { aspect-ratio: 16/9; overflow: hidden; background: var(--bg2); }
.editorial-img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(40%); transition: transform 0.5s ease; }
.editorial-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--dim) 0%, var(--bg2) 100%); }

.editorial-body { padding: 24px; }
.editorial-cat { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.25em; color: var(--green); opacity: 0.8; margin-bottom: 10px; }
.editorial-title { font-size: 1.2rem; font-weight: 700; color: #ccc; line-height: 1.3; margin-bottom: 8px; transition: color 0.2s; }
.editorial-date { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted); }

/* ── Contact Form ───────────────────────────────── */
.form-group { margin-bottom: 32px; }
.form-label { display: block; font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.3em; color: var(--muted); margin-bottom: 10px; }

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border2);
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  padding: 10px 0;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--muted); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--dim); }
.form-select { cursor: pointer; }
.form-select option { background: #0a0a0a; }
.form-textarea { resize: none; min-height: 100px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }

.btn-submit {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  background: var(--accent-green);
  color: #fff;
  border: none;
  padding: 14px 32px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-submit:hover { opacity: 0.88; }
.btn-submit:disabled { opacity: 0.4; cursor: not-allowed; }

/* ── Footer ─────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
}

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

.footer-brand { margin-bottom: 48px; }
.footer-brand-name { font-family: var(--mono); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; color: var(--text); margin-bottom: 6px; }
.footer-brand-tagline { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.25em; color: var(--dim); }

.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 48px; }

.footer-col-title { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.3em; color: var(--dim); margin-bottom: 16px; }

.footer-col a {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  color: #3a3a3e;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.footer-col a:hover { color: #888; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy { font-family: var(--mono); font-size: 10px; color: var(--dim); text-transform: uppercase; letter-spacing: 0.2em; }

/* ── Utilities ──────────────────────────────────── */
.text-red { color: var(--green); }
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 768px) {
  nav { display: none; }
  nav.open { display: flex; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 24px; gap: 20px; }
  .mobile-toggle { display: flex; }
  .artists-grid { grid-template-columns: 1fr 1fr; }
  .editorial-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .event-item { grid-template-columns: 60px 1fr; }
  .event-tag { display: none; }
  .mix-item { grid-template-columns: 48px 1fr auto; gap: 16px; }
  .section-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .artists-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
}
