
:root {
  --ink: #171715;
  --ink-soft: #272723;
  --paper: #f3f0e8;
  --paper-2: #e8e2d5;
  --accent: #d54a34;
  --accent-dark: #a92f21;
  --gold: #d4a758;
  --muted: #6e6b63;
  --line: rgba(23, 23, 21, .14);
  --radius: 24px;
  --shadow: 0 24px 70px rgba(20, 20, 18, .15);
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
.skip-link { position: fixed; z-index: 9999; left: 1rem; top: -8rem; background: var(--ink); color: white; padding: .8rem 1rem; border-radius: 10px; }
.skip-link:focus { top: 1rem; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.eyebrow { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 800; color: var(--accent); }
.section { padding: 96px 0; }
.section--dark { background: var(--ink); color: var(--paper); }
.section--soft { background: var(--paper-2); }
.section-head { display: flex; justify-content: space-between; gap: 2rem; align-items: end; margin-bottom: 42px; }
.section-head h2 { margin: .25rem 0 0; font-size: clamp(2.2rem, 5vw, 4.8rem); line-height: .98; letter-spacing: -.05em; max-width: 760px; }
.section-head p { max-width: 460px; color: var(--muted); margin: 0; }
.section--dark .section-head p { color: #bbb7ad; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .65rem; min-height: 50px; padding: .8rem 1.15rem; border-radius: 999px; text-decoration: none; font-weight: 800; border: 1px solid transparent; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--accent); color: white; }
.btn--primary:hover { background: var(--accent-dark); }
.btn--ghost { border-color: rgba(243,240,232,.25); color: var(--paper); }
.btn--ghost:hover { background: rgba(255,255,255,.08); }
.btn--light { background: var(--paper); color: var(--ink); }
.btn--outline { border-color: var(--line); }
.btn--outline:hover { background: rgba(23,23,21,.06); }
.icon { width: 1.08rem; height: 1.08rem; display: inline-block; }

/* Header */
.site-header { position: fixed; z-index: 1000; left: 0; right: 0; top: 0; padding: 14px 0; transition: background .25s ease, box-shadow .25s ease; }
.site-header.scrolled, .site-header.subpage { background: rgba(23,23,21,.94); backdrop-filter: blur(16px); box-shadow: 0 10px 30px rgba(0,0,0,.14); }
.nav-wrap { width: min(calc(100% - 32px), 1240px); margin-inline: auto; height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .8rem; color: white; text-decoration: none; font-weight: 900; letter-spacing: -.02em; white-space: nowrap; }
.brand--site { gap: 0; }
.brand-mark { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; font-size: .78rem; letter-spacing: -.05em; }
.brand-name { font-size: 1.08rem; }
.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-links a { color: rgba(255,255,255,.82); text-decoration: none; padding: .7rem .8rem; border-radius: 999px; font-size: .92rem; font-weight: 700; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: white; background: rgba(255,255,255,.1); }
.nav-cta { margin-left: .45rem; background: white !important; color: var(--ink) !important; padding-inline: 1.05rem !important; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 50%; background: rgba(255,255,255,.1); color: white; cursor: pointer; }
.menu-toggle span { display: block; width: 20px; height: 2px; background: currentColor; margin: 4px auto; transition: .2s ease; }

/* Home hero */
.hero { min-height: 780px; position: relative; display: grid; align-items: center; overflow: hidden; background: var(--ink); color: white; padding: 140px 0 80px; }
.hero::before { content: ""; position: absolute; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(213,74,52,.24), transparent 68%); left: -260px; bottom: -300px; }
.hero::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(to bottom, black, transparent 80%); pointer-events: none; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.hero-copy h1 { margin: .55rem 0 1.4rem; font-size: clamp(4.2rem, 9vw, 8.5rem); line-height: .82; letter-spacing: -.075em; max-width: 720px; }
.hero-copy .lead { font-size: clamp(1.1rem, 2vw, 1.35rem); color: #c9c4b9; max-width: 590px; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-art { position: relative; justify-self: end; width: min(100%, 500px); border-radius: 30px; overflow: hidden; background: #fff; box-shadow: 0 35px 100px rgba(0,0,0,.5); }
.hero-art::before { display: none; }
.latest-release { position: relative; z-index: 2; display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: .9rem 1.1rem; background: var(--accent); color: white; }
.latest-release span { font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .15em; }
.latest-release strong { font-size: 1.1rem; line-height: 1; }
.hero-art img { width: 100%; height: auto; border-radius: 0; object-fit: cover; display: block; }

/* Platform strip */
.platforms { margin-top: -1px; background: var(--accent); color: white; }
.platform-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.platform-grid a { min-height: 84px; display: flex; justify-content: center; align-items: center; gap: .65rem; text-decoration: none; font-weight: 900; border-right: 1px solid rgba(255,255,255,.22); transition: background .2s ease; }
.platform-grid a:first-child { border-left: 1px solid rgba(255,255,255,.22); }
.platform-grid a:hover { background: rgba(0,0,0,.12); }

/* Releases */
.release-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.release-card { border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: 0 12px 40px rgba(20,20,18,.08); transition: transform .25s ease, box-shadow .25s ease; }
.release-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(20,20,18,.14); }
.release-cover { aspect-ratio: 1/1; position: relative; overflow: hidden; background: #f5f1e8; }
.release-cover img { width: 100%; height: 100%; object-fit: cover; }
.release-body { padding: 1.25rem 1.35rem 1.45rem; }
.release-meta { display: block; margin-bottom: .35rem; color: var(--accent); font-size: .76rem; font-weight: 900; text-transform: uppercase; letter-spacing: .11em; }
.release-body h3 { margin: 0 0 .65rem; font-size: 1.75rem; line-height: 1.02; letter-spacing: -.04em; }
.release-body p { margin: 0 0 1.1rem; color: var(--muted); }
.release-links { display: flex; gap: .8rem; flex-wrap: wrap; }
.text-link { text-decoration: none; font-weight: 900; color: var(--accent); }
.text-link:hover { text-decoration: underline; }

/* Simple bio */
.simple-bio { width: min(100%, 820px); }
.simple-bio h2 { margin: .35rem 0 1rem; font-size: clamp(2.4rem, 6vw, 4.8rem); line-height: .95; letter-spacing: -.05em; }
.simple-bio p { max-width: 760px; margin: 0 0 1.4rem; color: var(--muted); font-size: 1.08rem; }
.simple-bio { padding: .5rem 0; }

/* Contact */
.contact-card { border-radius: 32px; background: var(--accent); color: white; padding: clamp(2rem, 6vw, 5rem); display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; box-shadow: var(--shadow); }
.contact-card h2 { font-size: clamp(2.8rem, 6vw, 5.8rem); line-height: .9; letter-spacing: -.06em; margin: .4rem 0 1rem; }
.contact-card p { max-width: 600px; font-size: 1.08rem; opacity: .9; }
.contact-details { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: 22px; padding: 1.5rem; }
.contact-details a { display: block; color: white; text-decoration: none; padding: .8rem 0; border-bottom: 1px solid rgba(255,255,255,.18); font-weight: 800; overflow-wrap: anywhere; }
.contact-details a:last-child { border: 0; }
.contact-details small { display: block; opacity: .7; text-transform: uppercase; font-size: .66rem; letter-spacing: .14em; }

/* Subpages */
.page-hero { padding: 180px 0 88px; background: var(--ink); color: white; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; width: 580px; height: 580px; border-radius: 50%; background: radial-gradient(circle, rgba(213,74,52,.28), transparent 70%); right: -190px; top: -250px; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin: .4rem 0 0; font-size: clamp(3.8rem, 9vw, 8rem); line-height: .88; letter-spacing: -.07em; max-width: 920px; }
.page-hero p { color: #c8c3b8; max-width: 720px; font-size: 1.15rem; }
.page-content { padding: 76px 0 110px; }
.prose { width: min(100%, 790px); margin-inline: auto; font-size: 1.08rem; }
.prose h2 { font-size: 2rem; letter-spacing: -.03em; margin-top: 2.5rem; }
.prose p { margin: 0 0 1.3rem; }
.prose .credit { color: var(--accent); font-weight: 900; margin-bottom: 2rem; }
.lyrics { white-space: pre-line; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.1rem, 2.2vw, 1.36rem); line-height: 1.9; background: white; border-radius: 24px; padding: clamp(1.4rem, 5vw, 3.5rem); box-shadow: 0 16px 55px rgba(20,20,18,.08); }
.song-cover-block { width: min(100%, 460px); margin: 0 auto 2rem; background: white; border-radius: 24px; padding: 14px; box-shadow: 0 16px 55px rgba(20,20,18,.08); }
.song-cover-block img { width: 100%; border-radius: 18px; display: block; }
.song-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.song-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.song-card { text-decoration: none; background: white; border-radius: 20px; overflow: hidden; min-height: 160px; display: flex; box-shadow: 0 10px 35px rgba(20,20,18,.07); transition: .2s ease; }
.song-card:hover { transform: translateY(-4px); box-shadow: 0 16px 45px rgba(20,20,18,.12); }
.song-card img { width: 170px; aspect-ratio: 1/1; object-fit: cover; flex: 0 0 170px; }
.song-card-copy { padding: 1.25rem 1.3rem; display: flex; flex-direction: column; justify-content: space-between; }
.song-list strong { font-size: 1.7rem; letter-spacing: -.04em; }
.song-card small { color: var(--muted); }
.song-list span { color: var(--accent); font-weight: 900; }
.bio-full { width: min(100%, 850px); margin-inline: auto; }
.bio-full p:first-of-type { font-size: 1.35rem; line-height: 1.55; }
.contact-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-panel { background: white; border-radius: 24px; padding: 2rem; box-shadow: 0 12px 40px rgba(20,20,18,.08); }
.contact-panel h2 { font-size: 2rem; margin: 0 0 .4rem; letter-spacing: -.04em; }
.contact-panel a { color: var(--accent); font-weight: 900; text-decoration: none; display: block; margin-top: .7rem; overflow-wrap: anywhere; }

/* Footer */
.site-footer { background: #0e0e0d; color: #bcb8ae; padding: 64px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 3rem; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.site-footer .brand { margin-bottom: 1rem; }
.site-footer h3 { color: white; font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; margin: .2rem 0 1rem; }
.footer-links { display: grid; gap: .55rem; }
.footer-links a { color: #bcb8ae; text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: 24px; font-size: .82rem; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav-links { position: fixed; inset: 0; padding: 110px 24px 40px; background: rgba(23,23,21,.98); display: flex; flex-direction: column; align-items: stretch; gap: .4rem; transform: translateX(100%); transition: transform .3s ease; }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.25rem; text-align: center; padding: .9rem; }
  .nav-cta { margin: 1rem 0 0; }
  .hero { min-height: auto; }
  .hero-grid, .contact-card, .contact-page-grid { grid-template-columns: 1fr; }
  .hero-art { justify-self: center; width: min(92vw, 460px); }
  .release-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-grid { grid-template-columns: repeat(3, 1fr); }
  .platform-grid a { border-bottom: 1px solid rgba(255,255,255,.22); }
  .footer-grid { grid-template-columns: 1.2fr .8fr; }
}
@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 70px 0; }
  .section-head { display: block; }
  .section-head p { margin-top: 1rem; }
  .hero { padding-top: 125px; }
  .hero-grid { gap: 3rem; }
  .hero-copy h1 { font-size: clamp(3.8rem, 19vw, 6rem); }
  .hero-actions .btn { width: 100%; }
  .latest-release { padding: .8rem .9rem; }
  .latest-release strong { font-size: 1rem; }
  .platform-grid { grid-template-columns: 1fr 1fr; }
  .platform-grid a { min-height: 70px; font-size: .9rem; }
  .release-grid, .song-list { grid-template-columns: 1fr; }
  .contact-card { padding: 2rem 1.25rem; }
  .song-card { flex-direction: column; }
  .song-card img { width: 100%; flex-basis: auto; }
  .page-hero { padding-top: 145px; }
  .lyrics { border-radius: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { display: block; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
