:root {
  --ink: #160b0b;
  --paper: #eee8dd;
  --paper-muted: #bfb2a1;
  --red: #d4473f;
  --red-dark: #701118;
  --gold: #b99b67;
  --line: rgba(238, 232, 221, .17);
  --content: 1420px;
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  background: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button, a { -webkit-tap-highlight-color: transparent; }

button:focus-visible, a:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 6px;
}

.page-shell {
  width: min(100%, 1800px);
  min-height: 100svh;
  margin: 0 auto;
  overflow: hidden;
}

.site-header, .hero, .history {
  width: min(calc(100% - 64px), var(--content));
  margin-inline: auto;
}

.site-header {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.brand-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: .86rem;
  font-weight: 400;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.live-indicator {
  display: flex;
  align-items: center;
}

.live-pulse {
  width: 8px;
  aspect-ratio: 1;
  position: relative;
  border-radius: 50%;
  background: var(--red);
}

.is-live .live-pulse::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(212, 71, 63, .5);
  border-radius: inherit;
  animation: pulse 1.9s ease-out infinite;
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(.5); }
  100% { opacity: 0; transform: scale(1.3); }
}

.hero {
  min-height: calc(100svh - 100px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  grid-template-rows: minmax(460px, 1fr) auto;
  align-items: center;
  gap: 40px 70px;
  position: relative;
  padding-block: 40px 46px;
  isolation: isolate;
}

.stage-curtain {
  width: min(100vw, 1800px);
  height: calc(100% + 100px);
  position: absolute;
  top: -100px;
  left: 50%;
  z-index: -2;
  transform: translateX(-50%);
  background:
    linear-gradient(180deg, rgba(22, 11, 11, .23) 0%, rgba(22, 11, 11, .62) 58%, var(--ink) 100%),
    repeating-linear-gradient(90deg,
      #230405 0%, #3a070a 5%, #75141b 10%, #3d080b 15%, #1d0405 20%);
  opacity: .62;
}

.stage-curtain::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 12%, rgba(238, 232, 221, .09), transparent 44%),
    linear-gradient(90deg, rgba(0,0,0,.35), transparent 22% 78%, rgba(0,0,0,.35));
}

.hero-copy { align-self: center; }

.eyebrow {
  margin: 0 0 28px;
  color: var(--gold);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 930px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.7rem, 7.7vw, 8rem);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .91;
  overflow-wrap: anywhere;
}

.current-label span {
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--red);
}

.current-author {
  margin: 25px 0 0;
  color: var(--paper-muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.65vw, 1.45rem);
  font-style: italic;
}

.player-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: end;
}

.play-button {
  width: clamp(230px, 26vw, 365px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--paper);
  background: linear-gradient(145deg, #bd302f, var(--red-dark) 68%);
  box-shadow: 0 45px 90px rgba(0, 0, 0, .4), inset 0 1px rgba(255, 255, 255, .2);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.play-button:hover {
  transform: scale(1.025);
  box-shadow: 0 50px 105px rgba(0, 0, 0, .5), inset 0 1px rgba(255, 255, 255, .2);
}

.play-button:active { transform: scale(.985); }

.play-button svg {
  width: 43%;
  fill: transparent;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.play-icon { transform: translateX(5%); }
.pause-icon, .play-button.is-playing .play-icon { display: none; }
.play-button.is-playing .pause-icon { display: block; }
.play-button.is-loading svg { opacity: .45; }

.programme {
  grid-column: 1 / -1;
  padding: 34px 0 30px;
  border-block: 1px solid var(--line);
  background: rgba(22, 11, 11, .12);
  backdrop-filter: blur(2px);
}

.programme-label {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: .59rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.programme h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.programme h3 { font-size: clamp(1.4rem, 2.3vw, 2.2rem); }
.programme article > p:last-child { margin: 13px 0 0; color: var(--paper-muted); font-family: Georgia, "Times New Roman", serif; font-size: 1rem; font-style: italic; }
.programme-next {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) minmax(180px, auto);
  align-items: baseline;
  gap: 30px;
}

.programme-next .programme-label,
.programme-next > p:last-child { margin: 0; }
.programme-next > p:last-child { text-align: right; }

.history {
  padding-block: 120px 135px;
  border-top: 1px solid var(--line);
}

.history-heading {
  margin-bottom: 62px;
}

.history-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .9;
}

.history-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: history;
  border-top: 1px solid var(--line);
}

.history-list li:not(.history-placeholder) {
  min-height: 106px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) minmax(180px, .38fr) auto;
  align-items: center;
  gap: 26px;
  border-bottom: 1px solid var(--line);
  counter-increment: history;
}

.history-list li:not(.history-placeholder)::before {
  content: counter(history, decimal-leading-zero);
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .78rem;
  font-style: italic;
}

.history-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.1vw, 1.9rem);
  letter-spacing: -.025em;
}

.history-author {
  color: var(--paper-muted);
  font-size: .76rem;
}

.history-time {
  color: var(--paper-muted);
  font-size: .61rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.history-placeholder {
  padding: 42px 0;
  color: var(--paper-muted);
  border-bottom: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

noscript { display: block; padding: 20px; color: white; text-align: center; }

.sr-only {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .site-header, .hero, .history { width: min(calc(100% - 38px), var(--content)); }
  .hero { grid-template-columns: 1fr; grid-template-rows: auto auto auto; padding-block: 80px 35px; }
  .hero h1 { font-size: clamp(3.7rem, 14vw, 7rem); }
  .player-wrap { justify-self: center; padding-block: 35px; }
  .play-button { width: min(66vw, 325px); }
  .programme { grid-column: 1; }
  .programme-next { grid-template-columns: 105px minmax(0, 1fr); }
  .programme-next > p:last-child { grid-column: 2; text-align: left; }
  .history-list li:not(.history-placeholder) { grid-template-columns: 44px minmax(0, 1fr) auto; }
  .history-author { grid-column: 2; }
  .history-time { grid-column: 3; grid-row: 1 / 3; }
}

@media (max-width: 620px) {
  .site-header { height: 84px; }
  .hero { min-height: calc(100svh - 84px); padding-top: 60px; }
  .stage-curtain { top: -84px; height: calc(100% + 84px); opacity: .52; }
  .hero h1 { font-size: clamp(3.25rem, 14vw, 5.5rem); }
  .programme-next { display: block; }
  .programme-next h3 { margin-top: 11px; }
  .programme-next > p:last-child { margin-top: 9px; }
  .history { padding-block: 90px; }
  .history-heading { margin-bottom: 45px; }
  .history-list li:not(.history-placeholder) {
    grid-template-columns: 32px 1fr;
    gap: 8px 14px;
    padding-block: 23px;
  }
  .history-author, .history-time { grid-column: 2; grid-row: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
