/* ============================================================
   Lit bwoi — official site
   Palette pulled from the Overtime cover: black, gold, warm dusk
   ============================================================ */

:root {
  --ink:        #08080a;
  --ink-2:      #101013;
  --panel:      #16161a;
  --panel-2:    #1d1d22;
  --line:       #2a2a31;
  --text:       #f4f2ed;
  --muted:      #a09a90;
  --gold:       #e8b33c;
  --gold-2:     #f5cd6b;
  --gold-dim:   #8a6a20;
  --ember:      #c9542a;

  --wrap:       1140px;
  --r:          14px;
  --r-sm:       9px;

  --display: 'Anton', 'Haettenschweiler', 'Arial Narrow', Impact, sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-2); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 22px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--gold);
  color: #000;
  padding: 10px 16px;
  border-radius: var(--r-sm);
  font-weight: 700;
  z-index: 100;
}
.skip:focus { left: 12px; }

/* ---------- Type ---------- */

.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: .86;
  text-transform: uppercase;
  margin: 0;
  font-size: clamp(4rem, 15vw, 10.5rem);
}
.display span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
  text-stroke: 2px var(--gold);
}

.display-2 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1;
  margin: 0 0 .35em;
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
}

.eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem;
}
.eyebrow.gold { color: var(--gold); }

.sec-head { margin-bottom: 2.4rem; }
.sec-sub { color: var(--muted); margin: 0 0 1.4rem; max-width: 46ch; }

.meta { color: var(--muted); font-size: .95rem; margin: 0 0 1rem; }

.explicit {
  display: inline-grid;
  place-items: center;
  width: 1.15em; height: 1.15em;
  font-size: .74rem; font-weight: 700;
  background: var(--muted);
  color: var(--ink);
  border-radius: 3px;
  vertical-align: baseline;
}

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--ink) 78%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.nav.is-stuck {
  border-bottom-color: var(--line);
  background: color-mix(in srgb, var(--ink) 94%, transparent);
}
.nav-inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: .06em;
  color: var(--text);
  text-transform: uppercase;
  white-space: nowrap;
}
.brand:hover { color: var(--text); }
.brand-mark { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  display: block;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: .93rem;
  font-weight: 600;
  color: var(--text);
}
.nav-links a:hover { background: var(--panel-2); color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: #000 !important;
}
.nav-cta:hover { background: var(--gold-2); color: #000 !important; }

/* Keep every link reachable on small screens — tighten, don't hide */
@media (max-width: 620px) {
  .nav-inner { padding: 11px 16px; gap: 10px; }
  .brand { font-size: 1.15rem; }
  .nav-links { gap: 2px; }
  .nav-links a { padding: 7px 9px; font-size: .85rem; }
}
@media (max-width: 380px) {
  .nav-links a { padding: 6px 7px; font-size: .8rem; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  transition: transform .15s, background .2s, border-color .2s, color .2s;
}
.btn:active { transform: translateY(1px); }
.btn-gold {
  background: var(--gold);
  color: #17110a;
}
.btn-gold:hover { background: var(--gold-2); color: #17110a; }
.btn-ghost {
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.6rem;
}
.cta-row.center { justify-content: center; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6.5rem) 0 clamp(3rem, 7vw, 5.5rem);
  overflow: hidden;
}
.hero-art {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 130%;
  background:
    radial-gradient(52% 44% at 18% 12%, rgba(232,179,60,.20), transparent 68%),
    radial-gradient(46% 40% at 88% 74%, rgba(201,84,42,.20), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 22px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.tagline {
  font-size: clamp(1.05rem, 2.3vw, 1.35rem);
  color: var(--gold);
  font-weight: 600;
  margin: 1.4rem 0 .6rem;
}
.lede { color: var(--muted); max-width: 44ch; margin: 0; }
.lede em { color: var(--text); font-style: normal; font-weight: 600; }

.hero-photo {
  margin: 0;
  position: relative;
}
.hero-photo img {
  width: 100%;
  border-radius: var(--r);
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.9);
}
.hero-photo figcaption {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(8,8,10,.78);
  backdrop-filter: blur(6px);
  color: var(--gold);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 999px;
}

@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo { order: -1; max-width: 420px; }
}

/* ---------- Latest release ---------- */

.latest {
  background:
    linear-gradient(180deg, transparent, rgba(232,179,60,.05) 40%, transparent),
    var(--ink-2);
  border-block: 1px solid var(--line);
  padding: clamp(3rem, 7vw, 5rem) 0;
}
.latest-grid {
  display: grid;
  grid-template-columns: minmax(0, 380px) 1fr;
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: center;
}
.latest-cover { margin: 0; }
.latest-cover img {
  border-radius: var(--r);
  border: 1px solid var(--line);
  box-shadow: 0 26px 60px -28px rgba(0,0,0,.95);
}
.latest-copy p:not(.eyebrow):not(.meta) { color: var(--muted); margin: 0; }
.latest-copy strong { color: var(--text); }
.latest-copy em { color: var(--gold); font-style: italic; }

@media (max-width: 760px) {
  .latest-grid { grid-template-columns: 1fr; }
  .latest-cover { max-width: 340px; }
}

/* ---------- Discography ---------- */

.music { padding: clamp(3.4rem, 8vw, 6rem) 0; }

.disco {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 16px;
}
.rel {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 20px;
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: border-color .2s, background .2s;
}
.rel:hover { border-color: var(--gold-dim); background: var(--panel-2); }
.rel-cover {
  width: 128px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
}
.rel-body { min-width: 0; }
.rel-title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  line-height: 1.05;
  margin: 0 0 .3rem;
}
.rel-meta {
  color: var(--muted);
  font-size: .88rem;
  margin: 0 0 .8rem;
}
.rel-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-bottom: .5rem;
}
.rel-links a {
  font-size: .84rem;
  font-weight: 600;
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
}
.rel-links a:hover { border-color: var(--gold); color: var(--gold); }

.tl-toggle {
  appearance: none;
  background: none;
  border: 0;
  padding: 6px 0;
  font: inherit;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .5em;
}
.tl-toggle:hover { color: var(--gold); }
.tl-toggle::after {
  content: '';
  width: .5em; height: .5em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .2s;
}
.tl-toggle[aria-expanded="true"]::after { transform: translateY(1px) rotate(-135deg); }

.tl {
  list-style: none;
  counter-reset: t;
  margin: .6rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.tl li {
  counter-increment: t;
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 9px 2px;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
.tl li::before {
  content: counter(t, decimal-leading-zero);
  color: var(--gold-dim);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: .8rem;
  min-width: 2ch;
}
.tl li span:first-of-type { flex: 1; min-width: 0; }
.tl .dur {
  color: var(--muted);
  font-size: .85rem;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 560px) {
  .rel { grid-template-columns: 84px 1fr; gap: 14px; padding: 14px; }
  .rel-cover { width: 84px; }
}

/* ---------- Listen / links ---------- */

.listen {
  background: var(--ink-2);
  border-block: 1px solid var(--line);
  padding: clamp(3.4rem, 8vw, 5.5rem) 0;
}
.listen-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.embed {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}
.embed iframe { display: block; border: 0; }

.links {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 8px;
}
.links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--text);
  font-weight: 600;
  transition: border-color .2s, background .2s, transform .15s;
}
.links a:hover {
  border-color: var(--gold);
  background: var(--panel-2);
  color: var(--gold);
  transform: translateX(3px);
}
.arw { color: var(--gold); }

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

/* ---------- About ---------- */

.about { padding: clamp(3.4rem, 8vw, 6rem) 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.about-copy p { color: var(--muted); max-width: 62ch; }
.about-copy strong { color: var(--text); }
.about-copy em { color: var(--gold); font-style: italic; }

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin: 2rem 0 0;
}
.facts > div {
  padding: 14px 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
}
.facts dt {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.facts dd {
  margin: 0;
  font-family: var(--display);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--gold);
}

.press {
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.press h3 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 1.3rem;
  margin: 0 0 .4rem;
}
.press p { color: var(--muted); font-size: .92rem; margin: 0 0 1rem; }
.press ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.press a { font-weight: 600; font-size: .92rem; }

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

/* ---------- Booking ---------- */

.booking {
  padding: clamp(3.4rem, 8vw, 5.5rem) 0;
  text-align: center;
  background:
    radial-gradient(60% 100% at 50% 0%, rgba(232,179,60,.12), transparent 70%),
    var(--ink-2);
  border-top: 1px solid var(--line);
}
.booking-inner > p {
  color: var(--muted);
  max-width: 48ch;
  margin-inline: auto;
}
.booking-mail {
  margin-top: 1.5rem;
  font-size: .95rem;
  letter-spacing: .01em;
}
.booking-mail a {
  color: var(--muted);
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 2px;
}
.booking-mail a:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* ---------- Footer ---------- */

.foot {
  padding: 34px 0;
  background: var(--ink);
  border-top: 1px solid var(--line);
}
.foot-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
}
.foot-brand {
  font-family: var(--display);
  font-size: 1.3rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0;
}
.foot-note { color: var(--muted); font-size: .85rem; margin: 0; }
.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  list-style: none;
  margin: 0; padding: 0;
  font-size: .88rem;
  font-weight: 600;
}
