:root {
  --brown: #2b1b12;
  --brown-2: #4b2f1f;
  --cream: #f5eddc;
  --gold: #d8a441;
  --green: #314b3a;
  --white: #fffdf7;
  --text: #231b16;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

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

.hero {
  min-height: 92vh;
  position: relative;
  color: white;
  background:
    linear-gradient(rgba(25, 15, 10, .35), rgba(25, 15, 10, .75)),
    radial-gradient(circle at 75% 25%, rgba(216,164,65,.45), transparent 30%),
    linear-gradient(135deg, #4c2f1f 0%, #765034 42%, #263a2d 100%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -90px -10%;
  height: 220px;
  background: var(--cream);
  transform: rotate(-3deg);
}
.nav {
  position: relative;
  z-index: 3;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  color: white;
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.75rem;
  letter-spacing: 2px;
}
.nav-links { display: flex; gap: 24px; }
.nav-links a { color: white; text-decoration: none; font-weight: 600; }
.nav-links a:hover { color: var(--gold); }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 14vh 0 20vh;
  max-width: 780px;
}
.eyebrow, .section-kicker {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  font-size: .82rem;
}
.hero h1 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4.5rem, 12vw, 9rem);
  line-height: .88;
  letter-spacing: 3px;
}
.tagline {
  margin: 18px 0 12px;
  font-family: "Merriweather", serif;
  font-size: clamp(1.35rem, 3vw, 2.15rem);
}
.hero-copy { max-width: 680px; font-size: 1.1rem; color: #f7ead6; }

.button-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.button {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, opacity .2s ease;
}
.button:hover { transform: translateY(-2px); opacity: .92; }
.primary { background: var(--gold); color: #1f160e; }
.secondary { border: 2px solid rgba(255,255,255,.75); color: white; }

.section { padding: 95px 0; }
.cream { background: var(--cream); }
.dark { background: var(--brown); color: var(--white); }
.sunset {
  background: linear-gradient(135deg, var(--brown-2), #6d4430 50%, var(--green));
  color: white;
}
.section-kicker { color: var(--green); margin-bottom: 6px; }
.section-kicker.gold { color: var(--gold); }
h2 {
  margin: 0 0 16px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 7vw, 5rem);
  letter-spacing: 1px;
  line-height: 1;
}
.section-intro { max-width: 670px; margin-bottom: 34px; }

.cards { display: grid; gap: 22px; margin-top: 34px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.card, .song-card {
  background: #fffaf0;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 35px rgba(43,27,18,.08);
}
.link-card { color: var(--text); text-decoration: none; border: 1px solid rgba(75,47,31,.08); }
.link-card:hover { transform: translateY(-4px); }
.link-card { transition: transform .2s ease; }
.card-icon {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--brown); color: var(--gold);
  font-weight: 800; margin-bottom: 18px;
}
.coming { opacity: .8; }
.small-label {
  display: inline-block; margin-top: 10px; padding: 5px 10px;
  border-radius: 999px; background: #eadfca; font-size: .78rem; font-weight: 700;
}

.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.portrait-placeholder {
  aspect-ratio: 4/5;
  border: 2px dashed rgba(255,255,255,.35);
  border-radius: 24px;
  display: grid; place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 28%, rgba(216,164,65,.24), transparent 25%),
    linear-gradient(160deg, #5a3926, #2d241e);
}
.portrait-placeholder span { display:block; font-family:"Bebas Neue"; font-size:2.5rem; color:var(--gold); }
.portrait-placeholder small { color:#e8d8c2; }

.song-card { border-top: 5px solid var(--gold); }
.song-card h3 { font-family:"Merriweather", serif; margin-top:0; }
.center { text-align:center; margin-top:38px; }
.center-row { justify-content:center; }

.contact-box { text-align:center; max-width:850px; }
footer { background:#17100c; color:#d9c8b4; padding:24px 0; }
.footer-row { display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap; }

@media (max-width: 850px) {
  .nav-links { display:none; }
  .cards.three, .cards.four { grid-template-columns:1fr; }
  .about-grid { grid-template-columns:1fr; gap:36px; }
  .hero-content { padding-top:10vh; }
  .section { padding:72px 0; }
}
