:root {
  --bg-1: #f1e2bf;
  --bg-2: #ddb970;
  --bg-3: #b57d3f;
  --bg-4: #6f4b2e;
  --ink: #3a261b;
  --muted: #6f5843;
  --card: rgba(255, 248, 233, 0.2);
  --border: rgba(58, 38, 27, 0.14);
  --light: #fff6de;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, var(--bg-1) 0%, var(--bg-2) 30%, var(--bg-3) 65%, var(--bg-4) 100%);
  min-height: 100vh;
}

.site-header {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  letter-spacing: 0.35em;
  font-size: 0.8rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 0.7;
}

.hero {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 82vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 20px 0 60px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted);
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-text h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  margin-bottom: 20px;
}

.intro {
  max-width: 580px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.btn-dark {
  background: var(--ink);
  color: var(--light);
}

.btn-light {
  border: 1px solid var(--border);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.15);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  display: block;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 60px rgba(40, 20, 10, 0.28);
}

.content-section {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 80px;
}

.section-card {
  padding: 36px;
  border-radius: 32px;
  border: 1px solid var(--border);
  background: var(--card);
  backdrop-filter: blur(8px);
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--muted);
  margin-bottom: 14px;
}

.section-card h2,
.content-section h2,
.contact-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-card p,
.music-card p,
.contact-section p {
  color: var(--muted);
  line-height: 1.8;
}

.music-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.music-card {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.16);
  transition: transform 0.2s ease;
}

.music-card:hover {
  transform: translateY(-4px);
}

.music-thumb {
  height: 180px;
  border-radius: 18px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(255, 244, 201, 0.7), rgba(122, 85, 50, 0.4));
}

.music-card h3 {
  margin-bottom: 10px;
}

.contact-section {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto 80px;
  padding: 56px 24px;
  text-align: center;
  border-radius: 32px;
  border: 1px solid rgba(255, 241, 201, 0.2);
  background: rgba(58, 38, 27, 0.25);
}

.contact-section h2,
.contact-section p {
  color: var(--light);
}

.light {
  color: #f1ddb0;
}

.contact-mail {
  display: inline-block;
  margin-top: 24px;
  text-decoration: none;
  background: #fff1c9;
  color: var(--ink);
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-image {
    order: -1;
  }

  .music-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .nav-links {
    gap: 16px;
    font-size: 0.95rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .section-card,
  .contact-section,
  .music-card {
    padding: 22px;
  }
}