:root {
  --bg: #000;
  --text: #f5f5f8;
  --muted: #d2d4df;
  --accent: #c02c71;
  --max-w: 1280px;
  --stroke: rgba(255,255,255,0.1);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Noto Sans KR", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

/* Header */
.hero-head {
  background: linear-gradient(180deg, #1c0623 0%, #0b0a16 100%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 28px 22px 20px;
  text-align: center;
  position: relative;
}
.logo-img {
  max-width: 640px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}
.logo-fallback {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 8px;
  color: var(--accent);
  font-size: 30px;
  margin: 0 0 10px;
}
nav {
  display: inline-flex;
  gap: 28px;
  font-weight: 700;
  font-size: 14px;
}
nav a {
  color: #e7e8ef;
  padding: 8px 0;
  transition: color .2s;
}
nav a:hover,
nav a:focus { color: #fff; }
nav a.active { color: var(--accent); }

/* Social icons (헤더 상단 우측) */
.social-icons {
  position: absolute;
  top: 12px;
  right: 18px;
  display: flex;
  gap: 12px;
  z-index: 5;
}
.social-icons a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.2px solid rgba(255,255,255,0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .2s, border-color .2s, transform .2s;
}
.social-icons a:hover {
  background: rgba(192,44,113,0.2);
  border-color: var(--accent);
  transform: translateY(-1px);
}

main { padding: 70px 0 110px; }
section { padding: 0 22px; }
.wrap { max-width: var(--max-w); margin: 0 auto; }
h1,h2,h3,h4 { margin: 0; line-height: 1.2; }

/* About */
.about {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: start;
  padding-left: 220px;
  padding-right: 50px;
}
.about > div:first-child {
  text-align: left;
  margin: 0 auto;
  max-width: 640px;
}
.about h1 {
  font-size: 34px;
  font-weight: 800;
  margin: 0 0 16px;
}
.underline {
  width: 100%;
  max-width: 520px;
  height: 3px;
  background: var(--accent);
  margin: 0 0 28px;
}
.about p { color: var(--muted); margin: 0 0 14px; }
.portrait {
  width: 100%;
  max-width: 420px;
  margin-left: initial;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.55);
}
.portrait img {
  width: 100%;
  height: auto;
  max-height: 640px;
  object-fit: contain;
  display: block;
}

/* Release */
.release-page { text-align: center; }
.release-head {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 19px;
  text-align: center;
}
.pref-logo {
  width: 100%;
  max-width: 600px;
  height: auto;
  max-height: 150px;
  display: block;
  margin: 6px auto 12px;
  object-fit: contain;
}
.quote {
  font-size: 19px;
  color: #f4f4f9;
  margin: 8px 0;
}
.center-underline {
  width: 100%;
  max-width: 540px;
  height: 3px;
  background: var(--accent);
  margin: 14px auto 28px;
}
.release-copy {
  max-width: 840px;
  margin: 0 auto 32px;
  color: #e7e9f1;
  text-align: left;
  line-height: 1.7;
  font-size: 16px;
}
.release-copy p {
  margin: 0 0 12px;
}
.players {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  justify-content: center;
  justify-items: center;
  margin: 26px auto 12px;
  max-width: 840px;
  width: 100%;
}
.players iframe {
  border: none;
  width: 100%;
  max-width: 100%;
  min-height: 352px;
  border-radius: 12px;
  background: #111;
}
.discography {
  text-align: center;
  margin: 26px 0 10px;
  font-weight: 700;
  font-size: 20px;
}
.spotify-wide {
  width: min(100%, 840px);
  min-height: 352px;
  border: none;
  border-radius: 12px;
  background: #111;
  display: block;
  margin: 0 auto;
}

/* Services */
.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.services h2 {
  font-size: 44px;
  color: var(--accent);
  line-height: 1.05;
  margin-top: 12px;
  text-align: center;
}
.service-item {
  margin-bottom: 32px;
  max-width: 560px;
}
.service-item h3 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #fdfdfd;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.services .service-item h3::before {
  content: none !important;
  display: none !important;
}
.service-item p {
  margin: 0 0 13px;
  color: #f0f2f7;
  line-height: 1.7;
  max-width: 560px;
}

/* Contact */
.contact { text-align: center; }
.contact h2 {
  font-size: 180px;
  color: var(--accent);
  text-transform: lowercase;
  margin-bottom: 48px;
  letter-spacing: 1px;
}

.service-cta {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.cta-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
form {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}
.row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
label {
  display: block;
  text-align: left;
  font-size: 13px;
  color: #dcdde8;
  margin-bottom: 6px;
}
input,
textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--stroke);
  color: var(--text);
  padding: 12px 8px 8px;
  font: inherit;
  transition: border-color .2s, box-shadow .2s;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: none;
}
textarea { min-height: 140px; resize: vertical; }
button {
  background: #fff;
  color: #111;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  justify-self: center;
  min-width: 180px;
  letter-spacing: 0.2px;
  transition: transform .2s, box-shadow .2s;
}
button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 960px) {
  main { padding-top: 50px; }
  .about,
  .services { grid-template-columns: 1fr; }
  .about { padding-left: 22px; padding-right: 22px; }
  .portrait { margin: 0 auto; }
  .logo-img { max-width: 420px; }
  nav { gap: 18px; }
  .services h2 { font-size: 36px; }
  .contact h2 { font-size: 52px; }
}

@media (max-width: 1200px) and (min-width: 961px) {
  .about {
    padding-left: 160px;
    padding-right: 42px;
  }
}

@media (max-width: 640px) {
  section { padding: 0 16px; }
  .hero-inner { padding: 22px 16px 16px; }
  nav { gap: 12px; font-size: 13px; }
  .release-head { font-size: 17px; margin-bottom: 10px; }
  .pref-logo { max-width: 320px; margin: 4px auto 10px; }
  .quote { font-size: 17px; }
  .center-underline { max-width: 240px; margin-bottom: 22px; }
  .release-copy {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 22px;
  }
  .players {
    gap: 12px;
    max-width: 100%;
  }
  .players iframe {
    min-height: 300px;
    border-radius: 10px;
  }
  .discography { font-size: 18px; margin: 20px 0 8px; }
  .spotify-wide {
    width: 100%;
    min-height: 300px;
  }
}
