:root {
  --ink: #1b1208;
  --cream: #fff4dc;
  --orange: #f37b18;
  --amber: #ffbd2e;
  --green: #166b46;
  --red: #c9301c;
  --muted: #765f45;
  --line: rgba(27, 18, 8, .18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding-bottom: 6.8rem;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(243,123,24,.18), transparent 28rem),
    var(--cream);
}

a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: rgba(255,244,220,.9);
  border-bottom: 4px solid var(--ink);
  backdrop-filter: blur(14px);
}

.brand, nav, .hero-actions, .links, footer { display: flex; align-items: center; gap: .85rem; flex-wrap: wrap; }
.brand { font-weight: 1000; text-decoration: none; text-transform: uppercase; }
nav a { color: var(--ink); font-weight: 900; text-decoration: none; }
nav a:focus-visible, .button:focus-visible, audio:focus-visible, .links a:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: minmax(18rem, 34rem) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  padding: clamp(2rem, 6vw, 5rem);
  background:
    repeating-linear-gradient(120deg, transparent 0 26px, rgba(27,18,8,.08) 26px 36px),
    linear-gradient(135deg, rgba(255,189,46,.7), rgba(255,244,220,.75));
}

.hero-art { width: min(100%, 34rem); filter: drop-shadow(18px 22px 0 rgba(27,18,8,.12)); }
.hero-copy { max-width: 50rem; }
.hero-copy {
  padding: clamp(1rem, 2vw, 1.4rem);
  background: rgba(255, 244, 220, .72);
  border: 3px solid var(--ink);
  box-shadow: 12px 12px 0 rgba(27,18,8,.16);
}
.eyebrow {
  margin: 0 0 .75rem;
  color: var(--green);
  font-size: .78rem;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 10ch;
  margin-bottom: 1rem;
  font-size: clamp(3.3rem, 10vw, 8.2rem);
  line-height: .88;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: .8rem;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: .98;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 { margin-bottom: .45rem; font-size: 1.25rem; text-transform: uppercase; }
.lede, .live p, article p, .contact p { color: var(--muted); font-size: 1.08rem; line-height: 1.6; }
.lede { max-width: 42rem; }

.button {
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  padding: .85rem 1.05rem;
  border: 3px solid var(--ink);
  border-radius: 0;
  font-weight: 1000;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 7px 7px 0 var(--ink);
}

.primary { background: var(--orange); color: white; }
.secondary { background: var(--amber); }
.dark { background: var(--ink); color: white; box-shadow: 7px 7px 0 var(--orange); }

.live {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  padding: clamp(2rem, 6vw, 5rem);
  background: #fffaf0;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}

.player-card {
  padding: 1.2rem;
  border: 3px solid var(--ink);
  background: white;
  box-shadow: 12px 12px 0 var(--orange);
}

.hero-player {
  width: min(100%, 34rem);
  margin-top: 1.35rem;
  background: #fff4dc;
}

.player-dock {
  position: fixed;
  right: clamp(.75rem, 3vw, 1.5rem);
  bottom: clamp(.75rem, 3vw, 1.5rem);
  left: clamp(.75rem, 3vw, 1.5rem);
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(10rem, .42fr) minmax(14rem, 1fr);
  align-items: center;
  gap: 1rem;
  padding: .85rem;
  color: var(--ink);
  border: 3px solid var(--ink);
  background:
    repeating-linear-gradient(120deg, rgba(27,18,8,.12) 0 16px, transparent 16px 30px),
    rgba(255,189,46,.96);
  box-shadow: 0 16px 38px rgba(27,18,8,.24);
}

.player-dock strong,
.player-dock span {
  display: block;
  text-transform: uppercase;
}

.player-dock span {
  color: var(--green);
  font-size: .86rem;
  font-weight: 1000;
}

.stream-audio {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.custom-player {
  display: grid;
  grid-template-columns: auto minmax(8rem, 1fr) minmax(8rem, .7fr);
  align-items: center;
  gap: .9rem;
  width: 100%;
}

.play-toggle {
  display: grid;
  place-items: center;
  width: 3.8rem;
  height: 3.8rem;
  border: 3px solid var(--ink);
  border-radius: 0;
  color: var(--cream);
  background: var(--red);
  box-shadow: 6px 6px 0 var(--ink);
  cursor: pointer;
}

.play-toggle span {
  width: 0;
  height: 0;
  margin-left: .25rem;
  border-top: .65rem solid transparent;
  border-bottom: .65rem solid transparent;
  border-left: .95rem solid currentColor;
}

.play-toggle.is-playing span {
  width: .95rem;
  height: 1.18rem;
  margin-left: 0;
  border: 0;
  background: linear-gradient(90deg, currentColor 0 35%, transparent 35% 65%, currentColor 65%);
}

.player-meta strong,
.player-meta small,
.volume-control span {
  display: block;
}

.player-meta small {
  color: var(--muted);
  font-weight: 1000;
  text-transform: uppercase;
}

.live-dot {
  display: inline-block;
  width: .68rem;
  height: .68rem;
  margin-right: .35rem;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 .24rem rgba(22,107,70,.18);
}

.volume-control span {
  color: var(--green);
  font-size: .72rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.volume-control input {
  width: 100%;
  accent-color: var(--red);
}

.play-toggle:focus-visible,
.volume-control input:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.status { margin: .85rem 0; color: var(--muted); font-weight: 900; }
.links a { color: var(--green); font-weight: 1000; }

.music, .contact { padding: clamp(2rem, 6vw, 5rem); }
.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

article {
  min-height: 12rem;
  padding: 1rem;
  color: white;
  background: var(--green);
  border: 3px solid var(--ink);
}

article:nth-child(2) { background: var(--red); }
article:nth-child(3) { background: var(--orange); }
article:nth-child(4) { background: #2f2116; }
article p { color: rgba(255,255,255,.84); }
.contact {
  color: white;
  background: linear-gradient(135deg, #166b46, #1b1208 58%, #c9301c);
}

.contact p { max-width: 46rem; color: rgba(255,255,255,.84); }
footer {
  justify-content: space-between;
  padding: 1.3rem clamp(1rem, 4vw, 3rem);
  color: var(--muted);
}

@media (max-width: 860px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .hero, .live { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-copy { order: -1; }
  .cards { grid-template-columns: 1fr 1fr; }
  .player-dock,
  .custom-player {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .volume-control { grid-column: 1 / -1; }
}

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