:root {
  --bg: #fbf5ee;
  --surface: #ffffff;
  --text: #3b2a22;
  --muted: #7d6558;
  --accent: #c8734a;
  --accent-deep: #a85a36;
  --accent-soft: #f3dfd0;
  --cream: #f5ead9;
  --line: #ecdccd;
  --shadow: 0 10px 30px -12px rgba(120, 60, 30, 0.25);
  --radius: 18px;
  --serif: "Fraunces", "Gowun Dodum", Georgia, serif;
  --sans: "Gowun Dodum", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1f1511;
    --surface: #2b1e18;
    --text: #f3e6d8;
    --muted: #bfa593;
    --accent: #e08a5e;
    --accent-deep: #f0a47c;
    --accent-soft: #3a261d;
    --cream: #2b1e18;
    --line: #3d2b22;
    --shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.6);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  word-break: keep-all;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(16px, 5vw, 48px);
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.2rem;
}
.brand img { border-radius: 8px; }
.nav nav { display: flex; gap: clamp(12px, 3vw, 28px); }
.nav nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
}
.nav nav a:hover { color: var(--accent); }

/* Layout */
main { max-width: 1120px; margin: 0 auto; padding: 0 clamp(16px, 5vw, 48px); }
.section { padding: clamp(56px, 9vw, 96px) 0; border-top: 1px solid var(--line); }
.section-head { margin-bottom: 32px; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 4px; }
.section-head p { margin: 0; color: var(--muted); }

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
  padding: clamp(48px, 9vw, 110px) 0;
}
.eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
.lede { font-size: 1.1rem; color: var(--muted); margin: 0 0 8px; }
.hero .ko { margin: 0 0 32px; color: var(--accent-deep); font-size: 0.95rem; }
.cta, .socials { display: flex; flex-wrap: wrap; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 20px; height: 20px; fill: currentColor; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--accent-deep); }
.btn-ghost { border: 1.5px solid var(--line); background: var(--surface); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.hero-art { position: relative; justify-self: center; width: min(420px, 100%); }
.hero-art img {
  position: relative;
  border-radius: 32px;
  box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
}
.glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 65%);
  opacity: 0.25;
  filter: blur(30px);
}
.eq {
  position: absolute;
  right: -12px;
  bottom: -12px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 44px;
  padding: 10px 14px;
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.eq span {
  width: 5px;
  border-radius: 3px;
  background: var(--accent);
  animation: eq 1.2s ease-in-out infinite;
}
.eq span:nth-child(2) { animation-delay: -0.3s; }
.eq span:nth-child(3) { animation-delay: -0.6s; }
.eq span:nth-child(4) { animation-delay: -0.9s; }
.eq span:nth-child(5) { animation-delay: -0.45s; }

@keyframes float { 50% { transform: translateY(-10px); } }
@keyframes eq { 0%, 100% { height: 20%; } 50% { height: 100%; } }

/* Playlists */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.card {
  display: block;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #e3a57f, #b8603a);
  display: grid;
  place-items: center;
  font-size: 2.6rem;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb::after {
  content: "▶";
  position: absolute;
  inset: auto 12px 12px auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent-deep);
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.card:hover .thumb::after { opacity: 1; }
.card-body { padding: 16px 18px 20px; }
.card-body h3 { margin: 0 0 4px; font-family: var(--serif); font-size: 1.1rem; font-weight: 600; }
.card-body p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.more { margin: 28px 0 0; text-align: right; }
.more a { color: var(--accent); text-decoration: none; font-weight: 600; }

/* Moods */
.moods {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
}
.moods li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 22px 20px;
  background: var(--cream);
  border-radius: var(--radius);
}
.moods .emoji { font-size: 1.8rem; margin-bottom: 6px; }
.moods b { font-family: var(--serif); font-weight: 600; }
.moods small { color: var(--muted); }

/* About */
.about {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.about img { border-radius: 24px; box-shadow: var(--shadow); }
.about h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); }
.about .ko { color: var(--muted); font-size: 0.95rem; }

/* Follow */
.follow { text-align: center; }
.follow h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); }
.follow p { color: var(--muted); margin: 0 0 28px; }
.follow .socials { justify-content: center; }

.footer {
  padding: 32px 16px;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 760px) {
  .hero, .about { grid-template-columns: 1fr; }
  .hero-art { order: -1; width: min(280px, 75%); }
  .eq { right: -8px; }
  .about img { width: 200px; }
  .nav nav a:not(:first-child) { display: none; }
}

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