:root {
  --bg: #050505;
  --panel: rgba(18, 18, 18, 0.76);
  --panel-strong: rgba(26, 24, 19, 0.92);
  --text: #f7f0df;
  --muted: #b8aa8b;
  --gold: #d7b465;
  --gold-light: #f3d78d;
  --line: rgba(215, 180, 101, 0.28);
  --shadow: rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans Thai", Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(215, 180, 101, 0.2), transparent 34rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 18rem),
    var(--bg);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

.page-shell {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 48px 18px 28px;
}

.hero {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 44px 20px 28px;
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.38), rgba(5, 5, 5, 0.86)),
    linear-gradient(90deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.18), rgba(5, 5, 5, 0.72)),
    url("image/Hero.jpg") center / cover no-repeat;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
}

.hero__glow {
  position: absolute;
  top: 10px;
  width: 220px;
  height: 220px;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 0 90px rgba(215, 180, 101, 0.18);
  opacity: 0.7;
}

.eyebrow,
.section-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  position: relative;
  margin-bottom: 14px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 12vw, 5.8rem);
  line-height: 0.92;
  text-shadow: 0 18px 35px var(--shadow);
}

.tagline {
  position: relative;
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.artist-card {
  position: relative;
  display: flex;
  width: min(100%, 460px);
  align-items: center;
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 24px 70px var(--shadow);
  backdrop-filter: blur(14px);
}

.logo-mark {
  display: grid;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(243, 215, 141, 0.48);
  border-radius: 50%;
  color: #141006;
  font-weight: 800;
  background: linear-gradient(145deg, var(--gold-light), #a37b2f);
}

.artist-name {
  margin-bottom: 2px;
  font-size: 1.05rem;
  font-weight: 800;
}

.artist-subtitle {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.links-section {
  display: grid;
  gap: 12px;
  width: min(100%, 760px);
  margin-right: auto;
  margin-left: auto;
  margin-top: 20px;
}

.link-button {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.link-button:hover,
.link-button:focus-visible {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(215, 180, 101, 0.22), rgba(255, 255, 255, 0.04));
  outline: none;
  transform: translateY(-2px);
}

.link-button--gold {
  color: #151006;
  border-color: rgba(243, 215, 141, 0.72);
  background: linear-gradient(135deg, var(--gold-light), #b88935);
}

.link-button--gold:hover,
.link-button--gold:focus-visible {
  background: linear-gradient(135deg, #ffe6a5, var(--gold));
}

.arrow {
  color: var(--gold-light);
  font-size: 1.12rem;
}

.link-button--gold .arrow {
  color: #151006;
}

.latest-release {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  width: min(100%, 760px);
  margin-right: auto;
  margin-left: auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-strong);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.release-art {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(243, 215, 141, 0.36);
  border-radius: 8px;
  color: var(--gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.4rem;
  background:
    linear-gradient(160deg, rgba(215, 180, 101, 0.34), transparent 56%),
    linear-gradient(35deg, #0c0c0c, #2d2518);
}

.release-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.release-copy h2 {
  margin-bottom: 8px;
  font-size: clamp(1.7rem, 6vw, 2.5rem);
  line-height: 1.18;
}

.release-copy p:not(.section-label) {
  margin-bottom: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.release-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  color: var(--gold-light);
  font-weight: 800;
}

.release-link:hover,
.release-link:focus-visible {
  color: #151006;
  background: var(--gold-light);
  outline: none;
}

.archive-section {
  margin-top: 42px;
}

.section-heading {
  width: min(100%, 760px);
  margin: 0 auto 18px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 6vw, 3.35rem);
  line-height: 1.05;
}

.section-heading p:not(.section-label) {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.75;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.song-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(17, 16, 13, 0.92));
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.38);
}

.song-card__cover {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: block;
  object-fit: cover;
  background: #0c0c0c;
}

.song-card__placeholder {
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.4rem, 4vw, 2.15rem);
  line-height: 1.12;
  text-align: center;
  background:
    linear-gradient(160deg, rgba(215, 180, 101, 0.32), transparent 54%),
    radial-gradient(circle at 70% 20%, rgba(243, 215, 141, 0.16), transparent 34%),
    linear-gradient(35deg, #080808, #2b2318);
}

.song-card__placeholder span {
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.72);
}

.song-card__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 16px;
}

.song-card__meta {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.song-card h3 {
  margin: 0 0 4px;
  font-size: 1.35rem;
  line-height: 1.25;
}

.song-card__artist {
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 800;
}

.song-card__description {
  margin-bottom: 16px;
  color: var(--muted);
  line-height: 1.65;
}

.song-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
}

.song-card__actions a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid rgba(215, 180, 101, 0.46);
  border-radius: 8px;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.song-card__actions a:hover,
.song-card__actions a:focus-visible {
  color: #151006;
  border-color: var(--gold-light);
  background: var(--gold-light);
  outline: none;
}

.site-footer {
  padding: 0 18px 34px;
  color: rgba(247, 240, 223, 0.58);
  text-align: center;
  font-size: 0.84rem;
}

@media (max-width: 620px) {
  .page-shell {
    padding-top: 24px;
  }

  .hero {
    padding-inline: 4px;
  }

  .artist-card,
  .latest-release {
    text-align: left;
  }

  .latest-release {
    grid-template-columns: 1fr;
  }

  .release-art {
    width: min(100%, 220px);
    margin: 0 auto;
  }

  .archive-grid,
  .song-card {
    grid-template-columns: 1fr;
  }

  .song-card__cover {
    aspect-ratio: 1;
    min-height: 0;
  }

  .song-card__actions {
    grid-template-columns: 1fr;
  }
}
