:root {
  --ink: #2f2924;
  --muted: #6e6257;
  --cream: #f7f1e7;
  --paper: #fffdf9;
  --sand: #eadcc6;
  --brown: #5c3f2e;
  --brown-dark: #3d2a20;
  --gold: #a57435;
  --line: #dfd2bf;
  --shadow: 0 16px 45px rgba(64, 44, 29, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(780px, 100%); }
.section { padding: 78px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 249, 0.95);
  border-bottom: 1px solid rgba(223, 210, 191, 0.8);
  backdrop-filter: blur(10px);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--brown-dark); color: white; font-size: .76rem; letter-spacing: .08em;
}
.brand strong { display: block; font-size: 1.02rem; }
.brand small { display: block; color: var(--muted); font-size: .76rem; margin-top: -2px; }
nav { display: flex; flex-wrap: wrap; gap: 22px; }
nav a { text-decoration: none; font-size: .9rem; color: var(--muted); }
nav a:hover { color: var(--brown); }

.hero {
  min-height: 560px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 20% 10%, rgba(165,116,53,.16), transparent 32%),
    radial-gradient(circle at 80% 75%, rgba(92,63,46,.10), transparent 30%),
    linear-gradient(180deg, #fffaf2 0%, #f5ebdd 100%);
  border-bottom: 1px solid var(--line);
}
.hero-inner { max-width: 850px; padding: 70px 0; }
.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .17em;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold);
}
h1, h2, h3 { line-height: 1.15; margin-top: 0; }
h1 { font-size: clamp(2.7rem, 7vw, 5.6rem); max-width: 900px; margin: 0 auto 22px; font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3.15rem); margin-bottom: 22px; font-weight: 600; }
h3 { font-size: 1.35rem; margin-bottom: 10px; }
.hero-copy { max-width: 710px; margin: 0 auto 30px; font-size: 1.2rem; color: var(--muted); }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.button {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: .9rem;
  border: 1px solid var(--brown);
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.button:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(61,42,32,.12); }
.button.primary, .button.small { background: var(--brown); color: white; }
.button.secondary { background: transparent; color: var(--brown); }
.button.small { padding: 10px 16px; font-size: .84rem; }
.button.youtube { background: var(--brown-dark); }

.intro { background: var(--paper); }
.intro p:not(.eyebrow) { font-size: 1.09rem; color: var(--muted); }
.intro .highlight { color: var(--ink) !important; font-size: 1.25rem !important; font-style: italic; border-left: 3px solid var(--gold); padding-left: 18px; margin-top: 28px; }

.music-section { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-heading { max-width: 760px; margin-bottom: 38px; }
.section-heading p:last-child { color: var(--muted); }
.music-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; align-items: stretch; }
.song-card { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); display: grid; grid-template-columns: 210px 1fr; min-height: 240px; }
.song-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1; }
.song-card-body { padding: 25px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.song-card-body p { color: var(--muted); margin: 0 0 18px; }
.song-card-body h3 span { font-size: .95rem; font-weight: 400; }
.song-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.badge { display: inline-block; padding: 5px 9px; margin-bottom: 10px; border-radius: 999px; background: #efe1d1; color: var(--brown); font-family: Arial, Helvetica, sans-serif; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.remix-card { grid-column: 1 / -1; max-width: 760px; }

.about-section { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 1fr 240px; gap: 70px; align-items: center; }
.about-copy p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.portrait-card { margin: 0; padding: 12px; background: var(--cream); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
.portrait-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 10px; }
.portrait-card figcaption { text-align: center; color: var(--muted); padding: 9px 3px 2px; font-size: .85rem; }

.recording-section { background: var(--brown-dark); color: white; }
.recording-box { padding: 42px; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: rgba(255,255,255,.04); }
.recording-box .eyebrow { color: #dcb67b; }
.recording-box p:not(.eyebrow) { color: rgba(255,255,255,.82); font-size: 1.05rem; }
.recording-box strong { color: white; }

.contact-section { background: var(--sand); }
.contact-box { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.contact-box p:last-child { margin-bottom: 0; color: var(--muted); }

footer { background: #241b16; color: white; padding: 28px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; font-family: Arial, Helvetica, sans-serif; font-size: .82rem; }
.footer-inner strong, .footer-inner span { display: block; }
.footer-inner span { color: rgba(255,255,255,.65); }
.footer-right { text-align: right; }
.footer-right a { color: white; }

@media (max-width: 900px) {
  nav { display: none; }
  .music-grid { grid-template-columns: 1fr; }
  .song-card, .remix-card { grid-column: auto; max-width: none; }
  .about-grid { grid-template-columns: 1fr 190px; gap: 38px; }
}

@media (max-width: 650px) {
  .wrap { width: min(100% - 26px, 1120px); }
  .section { padding: 58px 0; }
  .hero { min-height: 500px; }
  .hero-inner { padding: 54px 0; }
  h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .song-card { grid-template-columns: 1fr; }
  .song-card img { aspect-ratio: 1 / 1; }
  .about-grid { grid-template-columns: 1fr; }
  .portrait-card { width: min(190px, 70vw); }
  .contact-box, .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-right { text-align: left; }
  .recording-box { padding: 28px 22px; }
}
