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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  background: #0d0d0d;
  color: #f3f0ea;
  line-height: 1.7;
}

a {
  color: #d6b07c;
  text-decoration: none;
}

a:hover {
  color: #f0c892;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(13, 13, 13, 0.82);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #f4e7d2;
}

.nav-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-links a {
  color: #ddd2c3;
  font-size: 0.98rem;
}

.nav-links a:hover {
  color: #f0c892;
}

/* HERO */
.hero {
  min-height: 72vh;
  max-height: 760px;
  display: flex;
  align-items: center;
  padding: 42px 0;
  background:
    linear-gradient(to right, rgba(13,13,13,0.92), rgba(13,13,13,0.55)),
    url('hero0.jpg') center 12% / cover no-repeat;
}

.hero-content {
  max-width: 560px;
  padding: 12px 0;
}

.hero .container {
  width: min(1100px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.hero-kicker {
  color: #d6b07c;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.82rem;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: 3.2rem;
  line-height: 1.08;
  margin-bottom: 16px;
  font-weight: 600;
  max-width: 520px;
}

.hero p {
  font-size: 1.02rem;
  color: #ddd3c5;
  max-width: 500px;
  margin-bottom: 22px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(214,176,124,0.45);
  transition: 0.25s ease;
  font-size: 0.98rem;
}

.btn-primary {
  background: #d6b07c;
  color: #111;
  font-weight: bold;
}

.btn-primary:hover {
  background: #f0c892;
  color: #111;
}

.btn-secondary {
  background: transparent;
  color: #f3f0ea;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.06);
}

section {
  padding: 62px 0;
}

.section-title {
  font-size: clamp(1.9rem, 2.2vw, 2.6rem);
  margin-bottom: 14px;
  color: #f6ede0;
}

.section-subtitle {
  max-width: 720px;
  color: #cfc4b6;
  margin-bottom: 28px;
  font-size: 1rem;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: center;
}

.about-photo {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.about-text p {
  margin-bottom: 18px;
  color: #ddd2c3;
  font-size: 1.06rem;
}

/* MUSIC */
.music-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 20px;
}

.track-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.track-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

.track-cover {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}

.track-content {
  padding: 22px 20px 24px;
}

.track-number {
  color: #d6b07c;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.track-title {
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #fff6ea;
}

.track-desc {
  color: #d2c7b8;
  font-size: 0.98rem;
  margin-bottom: 18px;
  min-height: 68px;
}

audio {
  width: 100%;
  filter: sepia(20%) saturate(85%);
}

/* LINKS */
.links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.link-card {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 28px 24px;
  background: rgba(255,255,255,0.02);
  transition: 0.25s ease;
}

.link-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.035);
}

.link-card h3 {
  margin-bottom: 10px;
  color: #fff1de;
}

.link-card p {
  color: #d2c7b8;
  margin-bottom: 16px;
  font-size: 0.98rem;
}

/* CONTACT */
.contact-box {
  background: linear-gradient(180deg, rgba(214,176,124,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(214,176,124,0.18);
  border-radius: 24px;
  padding: 30px 28px;
  text-align: center;
}

.contact-box p {
  color: #ddd2c3;
  font-size: 1.08rem;
  margin-bottom: 18px;
}

.contact-email {
  font-size: 1.4rem;
  font-weight: bold;
  color: #f3e1c8;
  word-break: break-word;
}

footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 30px 0 45px;
  color: #93897b;
  text-align: center;
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .hero,
  .about-grid,
  .music-grid,
  .links-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    max-height: none;
    padding: 72px 0 52px;
    background:
      linear-gradient(to bottom, rgba(13,13,13,0.72), rgba(13,13,13,0.92)),
      url('hero0.jpg') center 10% / cover no-repeat;
  }

  .hero-content {
    max-width: 100%;
  }

  .track-desc {
    min-height: auto;
  }

  .nav-inner {
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 2.25rem;
  }

  .hero p {
    font-size: 1rem;
  }
  
  .hero h1 {
  font-size: 2.2rem;
  max-width: 100%;
}

  .btn {
    width: 100%;
    text-align: center;
  }

  section {
    padding: 48px 0;
  }

  .contact-box {
    padding: 24px 18px;
  }

  .nav-links {
    justify-content: center;
  }
}

@media (min-width: 1600px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-content {
    max-width: 520px;
  }
}
