@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:opsz,wght@6..96,500;6..96,600&family=Inter:wght@400;500;600;700&family=Permanent+Marker&display=swap');

:root {
  --bg: #050505;
  --text: #eeeae3;
  --muted: #bcb6ac;
  --gold: #d79514;
  --gold-soft: rgba(215, 149, 20, .18);
  --line: #3a2b12;
  --panel: #0b0b0b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 75% 18%, #16120c 0, #070707 35%, #030303 75%);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { max-width: 100%; }

.site-header {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 42px;
  padding: 0 clamp(24px, 4vw, 64px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(215, 149, 20, .09);
  background: rgba(3, 3, 3, .82);
  backdrop-filter: blur(12px);
}

.logo {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 174px;
  white-space: nowrap;
  color: #f4efe7;
}
.logo .brand-word {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: 25px;
  line-height: .95;
  font-weight: 600;
  font-style: italic;
  letter-spacing: -1.2px;
  display: inline-block;
  transform: scaleX(.94);
  transform-origin: left center;
}
.logo i {
  display: block;
  width: 116px;
  height: 3px;
  margin: 6px 0 0 7px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(215,149,20,.2) 100%);
  transform: skewX(-28deg) rotate(-4deg);
}

.brand-word {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  letter-spacing: -2px;
  text-transform: uppercase;
}
.hero h1 .brand-word,
.about-copy h1 .brand-word,
.music-copy h1 .brand-word {
  position: relative;
  display: inline-block;
  max-width: 92%;
  color: #eeeae3;
  font-family: 'Bodoni Moda', Georgia, serif;
  font-weight: 600;
  font-style: italic;
  letter-spacing: -2.4px;
  line-height: .92;
  transform: scaleX(.94);
  transform-origin: left center;
  white-space: nowrap;
}
.hero h1 .brand-word::after,
.about-copy h1 .brand-word::after,
.music-copy h1 .brand-word::after {
  content: '';
  display: block;
  width: 54%;
  height: 4px;
  margin: 10px 0 0 7%;
  background: var(--gold);
  transform: skewX(-28deg) rotate(-4deg);
}
.quote strong.brand-word,
.mini-quote strong.brand-word {
  display: inline-block;
  font-size: 28px;
  margin-top: 8px;
  color: #eeeae3;
}

.site-header nav {
  display: flex;
  gap: 42px;
  margin: auto;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.site-header nav a {
  position: relative;
  padding: 29px 0 24px;
}
.site-header nav a.active,
.site-header nav a:hover { color: var(--gold); }
.site-header nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
  height: 2px;
  background: var(--gold);
}

.socials { display: flex; align-items: center; gap: 16px; }
.socials a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color .2s, transform .2s;
}
.socials a:hover { color: var(--gold); transform: translateY(-1px); }
.socials svg { width: 22px; height: 22px; fill: currentColor; }
.menu {
  display: none;
  border: 0;
  background: none;
  color: #fff;
  font-size: 25px;
  cursor: pointer;
}

.hero, .about-hero, .music-hero {
  min-height: 640px;
  position: relative;
  overflow: hidden;
}
.hero-copy {
  position: relative;
  z-index: 3;
  width: 52%;
  padding: 100px 0 70px clamp(28px, 7vw, 100px);
}
.eyebrow, .tagline {
  letter-spacing: 5px;
  line-height: 1.9;
  font-size: 17px;
}
.hero h1, .about-copy h1, .music-copy h1 {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(68px, 8vw, 120px);
  line-height: .9;
  margin: 20px 0 35px;
  color: #eee;
}
.music-copy h1::after {
  content: '';
  display: block;
  width: 58%;
  height: 7px;
  margin: 15px 0 0 8%;
  background: var(--gold);
  transform: skew(-28deg) rotate(-4deg);
}
.tagline { margin: 25px 0 35px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  border: 1px solid var(--gold);
  padding: 16px 25px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  background: rgba(0,0,0,.18);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.btn:hover { background: var(--gold); color: #080808; }
.btn span { font-size: 26px; line-height: 0; }

.hero-art, .about-art, .music-art { position: absolute; inset: 0; pointer-events: none; }
.hero-art::after, .music-art::after, .about-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #050505 0%, rgba(5,5,5,.55) 35%, transparent 60%),
    linear-gradient(0deg, #050505 0%, transparent 35%);
}
.hero-art img {
  position: absolute;
  height: 92%;
  right: 7%;
  bottom: 0;
  z-index: 2;
  filter: drop-shadow(0 20px 30px #000);
}
.sunset {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 54%, #e1a52b 0 2%, transparent 3%),
    linear-gradient(135deg, #17100a, #4a2c0e 55%, #080706);
  opacity: .95;
}

.releases { padding: 35px clamp(20px,5vw,70px) 70px; }
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 5px 0 30px;
}
.section-title span {
  flex: 1;
  max-width: 240px;
  height: 1px;
  background: var(--gold);
}
.section-title h2, .services h2, .contact h2 {
  margin: 0;
  color: var(--gold);
  font-family: 'Permanent Marker', cursive;
  font-size: 30px;
  letter-spacing: 2px;
}
.track-grid { display: grid; gap: 20px; }
.track-grid.six { grid-template-columns: repeat(3, minmax(0,1fr)); }
.track-grid.three { grid-template-columns: repeat(3, minmax(0,1fr)); max-width: 1000px; margin: auto; }
.track-card {
  background: #090909;
  border: 1px solid #2a2113;
  overflow: hidden;
}
.track-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.track-meta {
  display: grid;
  grid-template-columns: 42px 1fr 34px;
  align-items: center;
  gap: 7px;
  padding: 12px 8px;
  font-size: 13px;
  letter-spacing: .8px;
}
.track-meta b { color: var(--gold); font-size: 18px; }
.play {
  width: 30px;
  height: 30px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font-size: 11px;
}
.play:hover, .play.playing { background: var(--gold); color: #000; }

.quote {
  text-align: center;
  border-top: 1px solid var(--line);
  padding: 40px 20px 70px;
}
.quote > span { color: var(--gold); font-family: Georgia; font-size: 70px; }
.quote p { margin: 0; font-size: 22px; letter-spacing: 6px; line-height: 1.7; }
.quote strong, .mini-quote strong {
  display: block;
  margin-top: 14px;
  font-family: 'Permanent Marker', cursive;
  font-size: 27px;
}

/* Brand-title sizing: elegant, compact, and never allowed to run into the portrait. */
.hero-copy h1 {
  font-size: clamp(48px, 5.4vw, 68px);
  max-width: min(620px, 86%);
  margin: 0 0 28px;
  overflow: visible;
}
.about-copy h1 {
  font-size: clamp(52px, 5.6vw, 70px);
  max-width: min(590px, 90%);
}
.music-copy h1 {
  font-size: clamp(54px, 5.8vw, 72px);
  max-width: min(570px, 88%);
}
.music-copy h1 .brand-word {
  color: var(--gold);
}

.about-hero {
  min-height: 610px;
  display: grid;
  grid-template-columns: 48% 52%;
  background: radial-gradient(circle at 72% 42%, #20180e, #070707 48%, #030303);
}
.about-copy { z-index: 2; padding: 80px 20px 50px clamp(30px,6vw,75px); }
.about-copy h1 { font-size: 72px; margin: 0 0 35px; }
.about-copy h1 em, .music-copy h1 em { color: var(--gold); font-style: normal; }
.about-copy p, .music-copy p { max-width: 600px; color: #ddd; line-height: 1.75; font-size: 15px; }
.about-art img { position: absolute; right: 7%; bottom: 0; height: 95%; filter: drop-shadow(0 15px 35px #000); }
.compact { padding-top: 10px; }
.services { padding: 25px clamp(20px,6vw,85px) 35px; }
.service-grid { display: grid; grid-template-columns: repeat(4,1fr); max-width: 1100px; margin: auto; }
.service-grid article { text-align: center; padding: 15px 28px; border-right: 1px solid var(--line); }
.service-grid article:last-child { border-right: 0; }
.service-grid i { color: var(--gold); font-style: normal; font-size: 44px; }
.service-grid h3 { font-size: 15px; letter-spacing: 2px; font-weight: 500; }
.service-grid p { color: #c9c3ba; font-size: 13px; line-height: 1.7; }

.music-hero {
  min-height: 550px;
  display: grid;
  grid-template-columns: 48% 52%;
  background: radial-gradient(circle at 75% 35%, #101c35, #05080f 48%, #030303);
}
.music-copy { z-index: 2; padding: 70px 20px 50px clamp(30px,6vw,75px); }
.music-copy h1 { font-size: 75px; margin: 0 0 40px; }
.music-copy .lead { font-size: 23px; letter-spacing: 5px; }
.music-art img { position: absolute; right: 1%; bottom: -4%; height: 105%; filter: drop-shadow(0 20px 35px #000); }

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1100px;
  margin: 0 auto;
  padding: 55px 25px 90px;
  border-top: 1px solid var(--line);
}
.connect { padding-right: 55px; border-right: 1px solid var(--line); }
.contact h2 { font-size: 31px; }
.contact p { color: #c9c3ba; line-height: 1.7; }
.social-large { display: flex; gap: 35px; margin: 30px 0; }
.social-large a { text-align: center; }
.social-large b {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: #fff;
}
.social-large a:hover b { background: var(--gold); color: #000; }
.social-large svg { width: 22px; height: 22px; fill: currentColor; }
.social-large span { display: block; margin-top: 10px; font-size: 11px; letter-spacing: 2px; }
.mini-quote { margin-top: 50px; text-align: center; color: #ddd; letter-spacing: 3px; line-height: 1.8; }
.contact-form { padding-left: 55px; }
.contact-form form { display: grid; gap: 10px; margin-top: 20px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #3a2b16;
  outline: none;
  background: #060606;
  color: #fff;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); }
.form-status { min-height: 24px; color: var(--gold); font-size: 13px; }

.player {
  position: fixed;
  z-index: 60;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(720px, calc(100% - 30px));
  padding: 10px 14px;
  background: rgba(8,8,8,.96);
  border: 1px solid #4b3616;
  box-shadow: 0 10px 30px #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.player.show { opacity: 1; pointer-events: auto; }
.player button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: none;
  color: var(--gold);
  cursor: pointer;
}
.player input { flex: 1; accent-color: var(--gold); }
#nowPlaying { max-width: 190px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; font-size: 12px; }
#time { color: #bbb; font-size: 11px; white-space: nowrap; }
.site-header + main { overflow: hidden; }

@media (max-width: 900px) {
  .site-header { height: 70px; min-height: 70px; padding: 0 20px; gap: 15px; }
  .logo { min-width: 132px; }
  .logo span { font-size: 17px; letter-spacing: 1px; }
  .logo i { width: 62px; }
  .site-header nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    display: none;
    flex-direction: column;
    gap: 0;
    margin: 0;
    background: #080808;
    border-bottom: 1px solid var(--line);
  }
  .site-header nav.open { display: flex; }
  .site-header nav a { padding: 18px 25px; }
  .site-header nav a.active::after { display: none; }
  .socials { margin-left: auto; }
  .menu { display: block; }
  .hero-copy { width: 100%; padding: 65px 28px 340px; }
  .hero-art img { height: 58%; right: 2%; bottom: 0; }
  .hero-art::after { background: linear-gradient(180deg, rgba(5,5,5,.25), #050505 80%); }
  .hero h1 {
  max-width: min(600px, 88%); font-size: 62px; }
  .track-grid.six, .track-grid.three { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .about-hero, .music-hero { display: block; min-height: 950px; }
  .about-copy, .music-copy { padding: 55px 28px; }
  .about-copy h1, .music-copy h1 { font-size: 58px; }
  .about-art img, .music-art img { height: 58%; right: -4%; bottom: 0; }
  .about-art::after, .music-art::after { background: linear-gradient(180deg, rgba(5,5,5,.15), #050505 82%); }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .service-grid article:nth-child(2) { border-right: 0; }
  .service-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .contact { grid-template-columns: 1fr; }
  .connect { padding: 0 0 45px; border-right: 0; border-bottom: 1px solid var(--line); }
  .contact-form { padding: 45px 0 0; }
}

@media (max-width: 600px) {
  .socials { display: none; }
  .track-grid.six, .track-grid.three { grid-template-columns: 1fr; }
  .section-title { gap: 10px; }
  .section-title h2 { font-size: 22px; }
  .hero-copy { padding-bottom: 300px; }
  .hero-copy h1 { font-size: 44px; max-width: 94%; }
  .about-copy h1 { font-size: 48px; max-width: 94%; }
  .music-copy h1 { font-size: 50px; max-width: 94%; }
  .about-hero, .music-hero { min-height: 880px; }
  .about-art img, .music-art img { height: 48%; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article { border-right: 0 !important; border-bottom: 1px solid var(--line) !important; }
  .service-grid article:last-child { border-bottom: 0 !important; }
  .quote p { font-size: 16px; letter-spacing: 3px; }
  .player { gap: 7px; }
  #nowPlaying { max-width: 115px; }
}


@media (max-width: 800px) {
  .logo { min-width: 145px; }
  .logo .brand-word { font-size: 21px; letter-spacing: -1px; }
  .logo i { width: 92px; height: 2px; margin-top: 5px; }
  .hero h1 .brand-word, .about-copy h1 .brand-word { transform: scaleX(.92); }
}

/* Final brand-title polish: compact, elegant, consistent across all three pages. */
.hero-copy h1 {
  font-size: clamp(50px, 5.4vw, 68px);
  max-width: min(600px, 84%);
  margin: 0 0 28px;
}
.about-copy h1 {
  font-size: clamp(52px, 5.6vw, 70px);
  max-width: min(560px, 88%);
  margin: 0 0 30px;
}
.music-copy h1 {
  font-size: clamp(54px, 5.8vw, 72px);
  max-width: min(550px, 86%);
  margin: 0 0 34px;
}
.hero-copy h1 .brand-word,
.about-copy h1 .brand-word,
.music-copy h1 .brand-word {
  max-width: 100%;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero-copy h1 { max-width: 92%; }
  .about-copy h1, .music-copy h1 { max-width: 94%; }
}

@media (max-width: 600px) {
  .hero-copy h1 { font-size: 44px; max-width: 94%; }
  .about-copy h1 { font-size: 48px; max-width: 94%; }
  .music-copy h1 { font-size: 50px; max-width: 94%; }
}
