:root {
  --paper: #e8dfcc;
  --ink: #302c23;
  --background: #201a12;
  --text-on-dark: #ecdfc0;
  --rust: #af492a;
  --rule: #c9bd9f;
}
* {
  box-sizing: border-box;
}
html {
  /* Keep the page from shifting sideways when navigating between pages that
     do and don't need a scrollbar. */
  scrollbar-gutter: stable;
}
body {
  margin: 0;
  background: var(--background);
  color: var(--text-on-dark);
  font: 15px/1.6 'Public Sans', sans-serif;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
.site-header, main, footer {
  max-width: 1280px;
  margin: auto;
  padding-inline: 54px;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 124px;
  gap: 24px;
  flex-wrap: wrap;
  padding-block: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font: 600 25px/1.08 Oswald, sans-serif;
  text-decoration: none;
}
.seal {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}
.brand-owner {
  display: block;
  font: italic 13px/1.6 Fraunces, serif;
  margin-bottom: 5px;
}
nav {
  display: flex;
  margin-left: auto;
}
nav a {
  /* Generous padding makes each link a big target, and with no gap between
     links their boxes touch, so there is no dead space between them. */
  padding: 16px 11px;
  font-size: 13px;
  text-decoration: none;
  color: var(--text-on-dark);
  /* Every link reserves the underline's space, so the current page's gold
     underline doesn't make the header taller than on other pages. */
  border-bottom: 2px solid transparent;
  transition: background-color .12s ease, border-color .12s ease, color .12s ease;
}
nav a:hover {
  background: rgba(236, 223, 192, .12);
  border-bottom-color: rgba(211, 174, 85, .65);
  color: #fff5e2;
}
nav a[aria-current] {
  border-bottom-color: #d3ae55;
}
.live-lamp {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Fixed width so the label changing (CHECKING, ON AIR, OFF AIR, NO STATUS)
     never resizes the chip and nudges the navigation. */
  width: 104px;
  gap: 8px;
  border: 1px solid #867a61;
  padding: 9px 12px;
  font: 12px Oswald, sans-serif;
  letter-spacing: 1px;
  white-space: nowrap;
}
.lamp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #aa9d80;
}
.on-air .lamp-dot {
  background: #f06d50;
  box-shadow: 0 0 7px #f06d5066;
}
.hero {
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid var(--rule);
  padding-inline: 28px;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  align-items: center;
  gap: 28px;
  padding-block: 28px 130px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
/* Four adjoining colors and shallow rise reference the merchandising logo. */
.hero::before {
  content: '';
  position: absolute;
  left: -5%;
  bottom: -2px;
  width: 115%;
  height: 84px;
  z-index: -1;
  pointer-events: none;
  transform: rotate(-9deg);
  transform-origin: left bottom;
  background: linear-gradient(to bottom,
    #ffca05 0 25%,
    #f99a00 25% 50%,
    #ef5800 50% 75%,
    #cb2e06 75% 100%);
}
.eyebrow {
  font: 400 12px/1.5 Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}
.welcome > .eyebrow {
  color: #843819;
  margin: 0 0 18px;
}
h1 {
  font: 500 clamp(52px,6vw,76px)/1 Fraunces, serif;
  letter-spacing: -4px;
  margin: 0 0 12px;
}
.intro {
  font: 400 clamp(24px,2.6vw,34px)/1.3 Fraunces, serif;
  margin: 0 0 14px;
}
.body-copy {
  max-width: 38ch;
  line-height: 1.8;
  margin: 0 0 20px;
}
.watch {
  display: inline-flex;
  justify-content: space-between;
  gap: 45px;
  padding: 13px 20px;
  background: var(--rust);
  color: #fff5e2;
  text-decoration: none;
  font-weight: 500;
}
.small {
  font-size: 11px;
  color: #514734;
  margin: 12px 0 0;
}
.identity-photo img {
  display: block;
  width: 100%;
  height: auto;
}
.schedule {
  display: grid;
  grid-template-columns: .8fr 1.3fr 1.2fr;
  gap: 24px;
  border-bottom: 1px solid var(--rule);
  padding: 26px 28px 30px;
  margin-top: 12px;
  background: var(--paper);
  color: var(--ink);
}
h2 {
  font: 400 35px/1.2 Fraunces, serif;
  margin: 6px 0 14px;
}
.schedule h2 {
  font-size: 27px;
}
h3 {
  font: 500 21px/1.3 Oswald, sans-serif;
  margin: 8px 0;
}
.schedule p {
  font-size: 12px;
  margin: 7px 0 0;
  color: #625840;
}
.schedule > div:not(:first-child) {
  border-left: 1px solid var(--rule);
  padding-left: 22px;
}
.recent {
  padding: 40px 28px;
  background: var(--paper);
  color: var(--ink);
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 25px;
  gap: 20px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.section-heading > a {
  font-size: 13px;
}
.records {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 30px;
}
.record {
  text-decoration: none;
}
.cover {
  aspect-ratio: 1;
  background: #daceb3;
  overflow: hidden;
}
.cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.record h3 {
  margin-top: 18px;
  font-size: 23px;
}
.record p {
  font: italic 18px Fraunces, serif;
  margin: 5px 0 11px;
}
.song {
  display: block;
  border-top: 1px solid var(--rule);
  padding-top: 10px;
  font-size: 11px;
  color: #625840;
}
.more {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  padding-block: 45px;
}
.more p:not(.eyebrow) {
  max-width: 47ch;
  line-height: 1.8;
}
.about-card {
  display: block;
  border: 1px solid #71654f;
  padding: 28px;
  text-decoration: none;
  transition: background-color .15s ease, border-color .15s ease;
}
.about-card:hover {
  background: rgba(236, 223, 192, .07);
  border-color: #a89a78;
}
.more-link {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.about-card:hover .more-link {
  text-decoration-thickness: 2px;
}
.report {
  background: #e0d2b4;
  color: var(--ink);
  border: 1px solid #c8b999;
  padding: 28px;
  text-decoration: none;
  position: relative;
  transition: background-color .15s ease, border-color .15s ease;
}
.report:hover {
  background: #e7dbbf;
  border-color: #b3a279;
}
.arrow {
  position: absolute;
  right: 25px;
  bottom: 15px;
  font-size: 30px;
  transition: transform .15s ease;
}
.report:hover .arrow {
  transform: translate(3px, -3px);
}
footer {
  padding-block: 30px 34px;
  border-top: 1px solid #71654f;
}
.foot-main {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px 30px;
}
.handle {
  font: 400 34px/1.1 Fraunces, serif;
  letter-spacing: -1px;
}
.social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
}
.social a {
  font: 500 15px Oswald, sans-serif;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.social a:hover {
  border-color: #d3ae55;
}
.foot-fine {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 30px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid #4a4030;
  font-size: 13px;
  color: #b8a67e;
}
.foot-fine b {
  color: var(--text-on-dark);
  font: 500 16px Oswald, sans-serif;
  letter-spacing: .4px;
}
.legal {
  margin-left: auto;
}
a:focus-visible {
  outline: 2px solid #d3ae55;
  outline-offset: 5px;
}
/* Six navigation links need a row of their own below about 1040px. The
   negative margin cancels the first link's side padding so its text lines up
   with the logo above it. */
@media (max-width: 1040px) {
  nav {
    margin-left: -11px;
    order: 3;
    width: calc(100% + 22px);
    flex-wrap: wrap;
  }
  .live-lamp {
    margin-left: auto;
  }
}
@media (max-width: 750px) {
  .site-header, main, footer {
    padding-inline: 22px;
  }
  .site-header {
    gap: 18px;
  }
  .schedule > div:not(:first-child) {
    padding-left: 0;
    border: 0;
  }
  .records {
    gap: 16px;
  }
  .record h3 {
    font-size: 17px;
  }
  .record p {
    font-size: 15px;
  }
  .more {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 650px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .identity-photo {
    max-width: 500px;
    width: 100%;
  }
  .schedule {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero, .schedule, .recent {
    padding-inline: 20px;
  }
  h1 {
    letter-spacing: -3px;
  }
}
@media (max-width: 450px) {
  .records {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .section-heading {
    align-items: start;
    flex-direction: column;
  }
  .seal {
    width: 46px;
    height: 46px;
  }
  .handle {
    font-size: 28px;
  }
  .brand {
    font-size: 18px;
    gap: 8px;
  }
  .site-header {
    gap: 12px;
  }
}
.cover-empty {
  display: grid;
  place-items: center;
  color: #b7a67f;
}
.cover-empty svg {
  width: 46%;
  height: auto;
}
.record-pending {
  pointer-events: none;
}
.record-pending .cover {
  opacity: .55;
}
