/* Concept B: Warm Analog */
:root {
  --bg: #f5f0e8;
  --bg-warm: #ebe4d6;
  --bg-card: #ffffff;
  --text: #2a2118;
  --text-muted: #7a6e5f;
  --text-dim: #a89e8f;
  --accent: #8b5e34;
  --accent-hover: #a06b3a;
  --accent-light: rgba(139, 94, 52, 0.08);
  --border: #d9d0c2;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, sans-serif;
  --radius: 4px;
  --transition: 0.3s ease;
  --max-width: 1100px;
  --nav-height: 60px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
ul, ol { list-style: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(245, 240, 232, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
}
.nav__logo {
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700;
  color: var(--text); letter-spacing: 0.02em;
}
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  font-size: 0.9rem; color: var(--text-muted); font-weight: 500;
  letter-spacing: 0.02em;
}
.nav__links a:hover { color: var(--text); }

/* Hero — split layout */
.hero {
  min-height: 100vh; display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center; padding-top: var(--nav-height);
  max-width: var(--max-width); margin: 0 auto; padding-left: 24px; padding-right: 24px;
  gap: 60px;
}
.hero__label {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--accent); font-weight: 600; margin-bottom: 16px;
}
.hero__name {
  font-family: var(--font-heading); font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 400; line-height: 1.05; color: var(--text); margin-bottom: 24px;
}
.hero__bio {
  font-size: 1.1rem; color: var(--text-muted); line-height: 1.7;
  max-width: 420px; margin-bottom: 32px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Vinyl visual */
.hero__visual {
  display: flex; align-items: center; justify-content: center;
  position: relative; height: 400px;
}
.vinyl-ring {
  width: 320px; height: 320px; border-radius: 50%;
  border: 2px solid var(--border);
  position: absolute;
  animation: spin 20s linear infinite;
  background: repeating-conic-gradient(var(--border) 0deg 2deg, transparent 2deg 10deg);
  opacity: 0.3;
}
.vinyl-ring--inner {
  width: 120px; height: 120px;
  border: 6px solid var(--accent);
  opacity: 0.2;
  animation-duration: 8s;
  background: none;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; padding: 12px 28px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em;
  border-radius: var(--radius); transition: all var(--transition);
}
.btn--warm { background: var(--accent); color: #fff; }
.btn--warm:hover { background: var(--accent-hover); color: #fff; transform: translateY(-1px); }
.btn--ghost { border: 1px solid var(--border); color: var(--text-muted); }
.btn--ghost:hover { border-color: var(--text-muted); color: var(--text); }

/* Features */
.features { padding: 80px 0; background: var(--bg-warm); }
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.feature { padding: 32px 0; }
.feature__number {
  font-family: var(--font-heading); font-size: 2rem; color: var(--accent);
  opacity: 0.3; display: block; margin-bottom: 12px;
}
.feature__title {
  font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 8px;
}
.feature__desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.feature__link { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

/* Latest */
.latest { padding: 80px 0; }
.section-heading {
  font-family: var(--font-heading); font-size: 1.8rem; font-weight: 400;
  margin-bottom: 32px;
}
.latest__card {
  display: grid; grid-template-columns: 280px 1fr; gap: 32px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.placeholder-img {
  background: linear-gradient(135deg, var(--bg-warm) 0%, #d9d0c2 100%);
  aspect-ratio: 1; width: 100%;
}
.latest__info { padding: 28px 28px 28px 0; display: flex; flex-direction: column; gap: 8px; justify-content: center; }
.latest__tag {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); font-weight: 600;
}
.latest__title { font-family: var(--font-heading); font-size: 1.5rem; }
.latest__meta { font-size: 0.85rem; color: var(--text-dim); }
.player-bar {
  height: 4px; background: var(--border); border-radius: 2px;
  margin-top: 16px; overflow: hidden;
}
.player-bar__progress { width: 35%; height: 100%; background: var(--accent); border-radius: 2px; }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 32px 0; }
.footer__inner { display: flex; justify-content: space-between; align-items: center; }
.footer__brand { font-size: 0.8rem; color: var(--text-dim); }
.footer__links { display: flex; gap: 20px; }
.footer__links a { font-size: 0.8rem; color: var(--text-muted); }

/* Responsive */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero__bio { margin: 0 auto 32px; }
  .hero__actions { justify-content: center; }
  .hero__visual { height: 250px; }
  .vinyl-ring { width: 200px; height: 200px; }
  .vinyl-ring--inner { width: 80px; height: 80px; }
  .features__grid { grid-template-columns: 1fr; gap: 24px; }
  .latest__card { grid-template-columns: 1fr; }
  .latest__info { padding: 20px; }
  .footer__inner { flex-direction: column; gap: 12px; }
}
