:root {
  --ivory: #fff3d6;
  --paper: #fffaf0;
  --ink: #182033;
  --muted: #63584d;
  --red: #d6423a;
  --teal: #087c7a;
  --gold: #d6a637;
  --brass: #f3c75e;
  --rose: #f26d7d;
  --plum: #4b244a;
  --night: #111521;
  --line: rgba(214, 166, 55, 0.42);
  --shadow: 0 18px 45px rgba(17, 21, 33, 0.18);
  --max: 1180px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(24, 32, 51, 0.035) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(135deg, rgba(214, 166, 55, 0.08), rgba(8, 124, 122, 0.06) 38%, rgba(214, 66, 58, 0.06)),
    var(--paper);
  color: var(--ink);
  font-family: "Libre Franklin", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  left: 1rem;
  padding: 0.75rem 1rem;
  position: fixed;
  top: 1rem;
  transform: translateY(-200%);
  z-index: 20;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(214, 166, 55, 0.08) 1px, transparent 1px) 0 0 / 28px 100%,
    rgba(255, 250, 240, 0.96);
  border-bottom: 4px double rgba(24, 32, 51, 0.44);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  min-height: 72px;
  padding: 0.8rem 5vw;
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  border: 3px solid var(--gold);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  color: var(--ivory);
  display: inline-flex;
  font-family: "Limelight", Georgia, serif;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.brand-copy {
  display: grid;
  gap: 0.05rem;
}

.brand-copy span {
  font-family: "Limelight", Georgia, serif;
  font-size: 1.15rem;
  line-height: 1;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 1.2rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a,
.inline-link {
  position: relative;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 0.18rem;
  text-underline-offset: 0.28rem;
}

.site-nav a {
  padding: 0.25rem 0.05rem;
}

.site-nav a::before {
  background: var(--red);
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  top: -0.1rem;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
  width: 100%;
}

.site-nav a:hover,
.inline-link:hover {
  color: var(--red);
}

.site-nav a:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.menu-toggle {
  background: var(--ink);
  border: 0;
  color: var(--ivory);
  display: none;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  min-height: 44px;
  margin-left: auto;
  padding: 0.7rem 0.9rem;
  text-transform: uppercase;
}

.hero {
  background: var(--night);
  color: var(--ivory);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  isolation: isolate;
  min-height: 82svh;
  overflow: hidden;
  padding: 5rem 5vw 3rem;
  position: relative;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(17, 21, 33, 0.96) 0%, rgba(17, 21, 33, 0.68) 42%, rgba(17, 21, 33, 0.28) 100%),
    linear-gradient(135deg, rgba(214, 66, 58, 0.46), rgba(8, 124, 122, 0.3)),
    url("assets/images/promo-photo.jpg") center / cover;
  inset: 0;
  position: absolute;
  z-index: -3;
}

.hero::before {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 243, 214, 0.08) 0,
      rgba(255, 243, 214, 0.08) 1px,
      transparent 1px,
      transparent 36px
    ),
    radial-gradient(ellipse at 78% 58%, rgba(214, 166, 55, 0.18), transparent 34%),
    linear-gradient(180deg, transparent, rgba(17, 21, 33, 0.82));
  content: "";
  inset: 0;
  position: absolute;
  z-index: -2;
}

.hero::after {
  background:
    linear-gradient(var(--gold), var(--gold)) left 5vw top 1.65rem / 112px 2px no-repeat,
    linear-gradient(var(--gold), var(--gold)) left 5vw bottom 1.65rem / 112px 2px no-repeat,
    linear-gradient(var(--gold), var(--gold)) right 5vw top 1.65rem / 112px 2px no-repeat,
    linear-gradient(var(--gold), var(--gold)) right 5vw bottom 1.65rem / 112px 2px no-repeat,
    radial-gradient(ellipse at 82% 76%, rgba(8, 124, 122, 0.22), transparent 28%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.hero-frame {
  border: 2px solid rgba(214, 166, 55, 0.52);
  inset: 1.6rem;
  pointer-events: none;
  position: absolute;
}

.hero-frame::before,
.hero-frame::after {
  border: 1px solid rgba(255, 243, 214, 0.36);
  content: "";
  position: absolute;
}

.hero-frame::before {
  inset: 0.65rem;
}

.hero-frame::after {
  border-bottom: 0;
  border-left: 0;
  height: 28%;
  right: 1.1rem;
  top: 1.1rem;
  width: 24%;
}

.hero-content {
  align-self: center;
  max-width: 700px;
  min-width: 0;
  padding: 2rem 0;
}

.deco-rule {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.deco-rule::before,
.deco-rule::after,
.deco-rule span {
  background: var(--gold);
  content: "";
  display: block;
  height: 3px;
}

.deco-rule::before {
  width: 22px;
}

.deco-rule::after {
  width: 70px;
}

.deco-rule span {
  height: 10px;
  transform: rotate(45deg);
  width: 10px;
}

.deco-rule-short::after {
  width: 46px;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

.hero h1,
section h2 {
  font-family: "Limelight", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
  margin: 0;
}

.hero h1 {
  font-size: 5.4rem;
  max-width: 9ch;
  text-shadow: 0 8px 28px rgba(17, 21, 33, 0.5);
}

.hero-lede {
  color: rgba(255, 243, 214, 0.9);
  font-size: 1.2rem;
  max-width: 620px;
}

.hero-actions,
.press-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.button {
  align-items: center;
  border: 2px solid transparent;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  display: inline-flex;
  font-size: 0.83rem;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  min-width: 130px;
  padding: 0.8rem 1.15rem;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  box-shadow: 0 10px 0 rgba(24, 32, 51, 0.22);
  transform: translateY(-4px);
}

.button-primary {
  background: var(--red);
  color: white;
}

.button-light {
  background: var(--brass);
  color: var(--ink);
}

.button-ghost {
  border-color: rgba(255, 243, 214, 0.7);
  color: var(--ivory);
}

.hero-poster {
  align-items: flex-end;
  align-self: stretch;
  display: flex;
  justify-content: center;
  min-height: 0;
  overflow: hidden;
  padding: 2rem 0 1.75rem;
  position: relative;
  z-index: 0;
}

.hero-poster::before {
  background:
    linear-gradient(90deg, rgba(255, 243, 214, 0.14) 1px, transparent 1px) 0 0 / 26px 100%,
    var(--teal);
  border: 4px solid var(--gold);
  box-shadow: 18px 18px 0 rgba(214, 66, 58, 0.22);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  content: "";
  height: min(78%, 520px);
  position: absolute;
  right: 7%;
  bottom: 1.75rem;
  width: 75%;
  z-index: -2;
}

.hero-poster::after {
  background:
    radial-gradient(ellipse at center bottom, transparent 0 34%, rgba(214, 166, 55, 0.58) 35% 36%, transparent 37% 48%, rgba(214, 166, 55, 0.42) 49% 50%, transparent 51%),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(255, 243, 214, 0.18) 34px 35px);
  border: 2px solid rgba(214, 166, 55, 0.48);
  border-bottom: 0;
  border-radius: 230px 230px 0 0;
  bottom: 1.75rem;
  content: "";
  height: 360px;
  position: absolute;
  right: -2%;
  width: 340px;
  z-index: -1;
}

.hero-poster img {
  filter: drop-shadow(0 22px 30px rgba(17, 21, 33, 0.44));
  height: min(650px, calc(82svh - 8.5rem));
  max-height: 100%;
  max-width: min(100%, 460px);
  object-fit: contain;
}

.swing-ticker {
  background:
    repeating-linear-gradient(90deg, transparent 0 26px, rgba(24, 32, 51, 0.11) 26px 27px),
    var(--gold);
  border-bottom: 4px solid var(--ink);
  border-top: 4px solid var(--ink);
  color: var(--ink);
  overflow: hidden;
  padding: 0.8rem 0;
  white-space: nowrap;
}

.ticker-track {
  animation: ticker 28s linear infinite;
  display: inline-flex;
  gap: 2rem;
  min-width: 0;
  width: max-content;
}

.ticker-track span {
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ticker-track span::after {
  color: var(--red);
  content: " /";
  padding-left: 1.7rem;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.listen-section {
  background:
    linear-gradient(90deg, rgba(243, 199, 94, 0.1) 1px, transparent 1px) 0 0 / 36px 100%,
    radial-gradient(ellipse at 14% 12%, rgba(214, 66, 58, 0.3), transparent 32%),
    linear-gradient(135deg, var(--night), var(--plum) 56%, #12363f);
  color: var(--ivory);
  display: grid;
  gap: 2rem;
  padding: 4.5rem 5vw;
  scroll-margin-top: 108px;
}

.listen-copy {
  align-self: center;
  margin: 0 auto;
  max-width: var(--max);
  width: 100%;
}

.listen-copy h2 {
  color: var(--ivory);
  font-family: "Limelight", Georgia, serif;
  font-size: 2.65rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
  max-width: 760px;
}

.listen-copy p:not(.eyebrow) {
  color: rgba(255, 243, 214, 0.84);
  font-size: 0.96rem;
  max-width: 670px;
}

.broadcast-devices {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr;
  margin: 0 auto;
  max-width: 1120px;
  width: 100%;
}

.music-player {
  align-self: center;
  justify-self: center;
  min-width: 0;
  position: relative;
  width: min(100%, 540px);
}

.player-console {
  background:
    radial-gradient(ellipse at 50% 34%, rgba(255, 231, 163, 0.32), transparent 46%),
    linear-gradient(90deg, rgba(74, 35, 22, 0.3), transparent 16%, transparent 84%, rgba(74, 35, 22, 0.34)),
    repeating-linear-gradient(105deg, rgba(255, 230, 161, 0.09) 0 4px, transparent 4px 18px),
    linear-gradient(135deg, #bf6c25, #7b351f 58%, #4a2316);
  border: 8px solid #351a14;
  border-bottom-width: 12px;
  border-radius: 48% 48% 18px 18px / 23% 23% 18px 18px;
  box-shadow:
    inset 0 0 0 4px rgba(243, 199, 94, 0.26),
    inset 0 -28px 50px rgba(35, 16, 12, 0.28),
    18px 20px 0 rgba(17, 21, 33, 0.26);
  color: var(--ink);
  display: grid;
  gap: 0.75rem;
  isolation: isolate;
  overflow: hidden;
  padding: 1.95rem 1.25rem 1rem;
  position: relative;
}

.player-console::before {
  background:
    radial-gradient(ellipse at 50% 0, rgba(255, 243, 214, 0.38), transparent 62%),
    linear-gradient(90deg, rgba(255, 243, 214, 0.22), transparent 12%, transparent 88%, rgba(255, 243, 214, 0.2));
  content: "";
  inset: 0.75rem;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.player-console::after {
  background:
    linear-gradient(#2a1510, #2a1510) center bottom 0 / 94% 8px no-repeat,
    linear-gradient(#5f2a1a, #5f2a1a) center bottom 12px / 88% 8px no-repeat;
  bottom: 0;
  content: "";
  height: 28px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 0;
}

.player-console > * {
  position: relative;
  z-index: 1;
}

.player-cabinet-top {
  align-items: center;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr 22px 1fr;
  margin: 0 0.6rem 0.35rem;
  min-height: 22px;
}

.player-cabinet-top span {
  background: var(--gold);
  display: block;
  height: 3px;
}

.player-cabinet-top span:nth-child(2) {
  background: var(--red);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  height: 16px;
}

.player-badge {
  align-items: center;
  background:
    radial-gradient(ellipse at 50% 0, rgba(255, 243, 214, 0.32), transparent 68%),
    linear-gradient(180deg, #e7c46d, #9c6c2c);
  border: 3px solid #3a1c14;
  box-shadow: inset 0 0 0 2px rgba(255, 243, 214, 0.22);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  color: #27140e;
  display: flex;
  font-size: 0.76rem;
  font-weight: 900;
  justify-content: space-between;
  letter-spacing: 0;
  line-height: 1.15;
  min-height: 52px;
  padding: 0.8rem 0.9rem;
  text-transform: uppercase;
}

.player-badge span {
  display: inline-flex;
  align-items: center;
  min-height: 1.2em;
}

.player-badge strong {
  align-items: center;
  background: #29140f;
  color: var(--ivory);
  display: inline-flex;
  font-family: "Limelight", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  height: 34px;
  justify-content: center;
  line-height: 1;
  min-width: 42px;
  padding: 0 0.35rem;
}

.radio-window {
  background:
    radial-gradient(ellipse at 50% 8%, rgba(255, 243, 214, 0.22), transparent 52%);
  border: 0;
  box-shadow: none;
  display: grid;
  gap: 0.52rem;
  grid-template-columns: 0.78fr 1fr 0.78fr;
  grid-template-rows: 34px 156px;
  min-height: 194px;
  padding: 0 0.8rem;
  position: relative;
}

.radio-top-grille,
.radio-speaker {
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 243, 214, 0.36), transparent 30%),
    repeating-linear-gradient(60deg, rgba(62, 35, 20, 0.5) 0 2px, transparent 2px 11px),
    repeating-linear-gradient(120deg, rgba(62, 35, 20, 0.4) 0 2px, transparent 2px 11px),
    #cda653;
  border: 5px solid #351a14;
  box-shadow:
    inset 0 0 0 3px rgba(255, 243, 214, 0.16),
    inset 0 0 26px rgba(54, 25, 15, 0.38);
  display: block;
}

.radio-top-grille {
  border-radius: 46px 46px 12px 12px / 30px 30px 12px 12px;
  grid-column: 2;
}

.radio-speaker {
  align-self: stretch;
  border-radius: 88px 88px 18px 18px / 132px 132px 18px 18px;
  grid-row: 2;
}

.radio-speaker-center {
  border-radius: 110px 110px 20px 20px / 150px 150px 20px 20px;
  transform: translateY(-16px);
}

.radio-tuning {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 243, 214, 0.3), transparent),
    rgba(60, 28, 17, 0.24);
  border: 3px solid rgba(53, 26, 20, 0.78);
  border-radius: 42px 42px 12px 12px;
  display: block;
  height: 76px;
  justify-self: center;
  margin-top: -0.4rem;
  position: relative;
  width: min(76%, 330px);
}

.radio-scale {
  align-items: start;
  background:
    linear-gradient(90deg, rgba(52, 32, 22, 0.16), transparent 18%, transparent 82%, rgba(52, 32, 22, 0.14)),
    linear-gradient(180deg, #ecd082, #b88633);
  border: 4px solid #3a1c14;
  border-radius: 48px 48px 12px 12px;
  box-shadow: inset 0 0 0 3px rgba(255, 243, 214, 0.24);
  display: grid;
  gap: 0.2rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  height: 52px;
  left: 50%;
  overflow: hidden;
  padding: 0.42rem 0.45rem;
  position: absolute;
  top: 9px;
  transform: translateX(-50%);
  width: 78%;
}

.radio-scale span {
  color: rgba(52, 32, 22, 0.78);
  display: block;
  font-size: 0.54rem;
  font-weight: 900;
  line-height: 1;
  min-width: 0;
  overflow-wrap: anywhere;
  text-align: center;
  text-transform: uppercase;
}

.radio-scale span:nth-child(even) {
  padding-top: 1rem;
}

.radio-dial {
  background:
    radial-gradient(circle at 36% 30%, rgba(255, 243, 214, 0.88), transparent 20%),
    conic-gradient(#2a1510, #b17832, #2a1510, #6f2f1d, #2a1510);
  border: 4px solid #2a1510;
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 5px rgba(255, 243, 214, 0.18),
    0 4px 0 rgba(35, 16, 12, 0.42);
  display: block;
  height: 46px;
  left: 50%;
  position: absolute;
  top: 37px;
  transform: translateX(-50%);
  width: 46px;
}

.radio-dial::before {
  background: rgba(255, 243, 214, 0.64);
  content: "";
  height: 14px;
  left: 10px;
  position: absolute;
  top: 7px;
  transform: rotate(32deg);
  width: 5px;
}

.radio-dial::after {
  background: #2a1510;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
}

.radio-needle {
  background: var(--red);
  box-shadow: 0 0 0 1px rgba(52, 32, 22, 0.38);
  display: block;
  height: 35px;
  left: 49%;
  position: absolute;
  top: 17px;
  transform: rotate(8deg);
  transform-origin: bottom center;
  width: 2px;
}

.music-player.is-playing .radio-dial {
  box-shadow:
    inset 0 0 0 5px rgba(255, 243, 214, 0.18),
    0 4px 0 rgba(35, 16, 12, 0.42),
    0 0 18px rgba(243, 199, 94, 0.58);
}

.station-presets {
  display: grid;
  gap: 0.32rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: -0.25rem;
}

.station-presets button {
  background:
    linear-gradient(90deg, rgba(255, 243, 214, 0.38), transparent 30%, rgba(52, 32, 22, 0.08)),
    linear-gradient(180deg, #f9f1cf, #d3bd83 72%, #8b6c3d);
  border: 3px solid #321810;
  border-radius: 10px 10px 5px 5px;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.34),
    inset 0 -8px 0 rgba(89, 54, 27, 0.16),
    0 6px 0 rgba(42, 21, 16, 0.48);
  color: #24120d;
  cursor: pointer;
  display: grid;
  font: inherit;
  gap: 0.1rem;
  grid-template-rows: 1fr 1fr;
  justify-items: center;
  min-height: 50px;
  min-width: 0;
  padding: 0.34rem 0.24rem 0.28rem;
  position: relative;
  text-transform: uppercase;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.station-presets button::before {
  background: #4b2216;
  border: 1px solid rgba(255, 243, 214, 0.32);
  border-radius: 50%;
  content: "";
  height: 7px;
  position: absolute;
  right: 0.34rem;
  top: 0.34rem;
  width: 7px;
}

.station-presets button:hover,
.station-presets button[aria-pressed="true"] {
  background:
    linear-gradient(90deg, rgba(255, 243, 214, 0.22), transparent 30%, rgba(52, 32, 22, 0.14)),
    linear-gradient(180deg, #f0d08a, #b77c36 72%, #6b3c20);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.22),
    inset 0 -6px 0 rgba(89, 54, 27, 0.16),
    0 2px 0 rgba(42, 21, 16, 0.48);
  color: #24120d;
  transform: translateY(4px);
}

.station-presets button.has-signal::before {
  background: var(--red);
  box-shadow: 0 0 12px rgba(242, 109, 125, 0.8);
}

.station-presets strong {
  align-self: end;
  font-size: 0.66rem;
  line-height: 1.05;
  overflow-wrap: anywhere;
  text-align: center;
}

.station-presets span {
  align-self: start;
  color: rgba(52, 32, 22, 0.72);
  font-size: 0.55rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.76;
}

.station-presets button:nth-child(even) strong {
  align-self: start;
  padding-top: 0.25rem;
}

.station-presets button:nth-child(even) span {
  align-self: end;
  padding-bottom: 0.18rem;
}

.player-now {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 243, 214, 0.52), rgba(255, 243, 214, 0.18)),
    rgba(255, 250, 240, 0.68);
  border: 2px solid rgba(24, 32, 51, 0.18);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  display: grid;
  gap: 1rem;
  grid-template-columns: 86px minmax(0, 1fr);
  padding: 0.75rem;
}

.player-toggle {
  align-items: center;
  background:
    radial-gradient(circle at 36% 28%, rgba(255, 243, 214, 0.8), transparent 18%),
    conic-gradient(from 40deg, var(--red), var(--plum), var(--teal), var(--red));
  border: 4px solid var(--ink);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px rgba(255, 243, 214, 0.2), 0 7px 0 rgba(24, 32, 51, 0.28);
  cursor: pointer;
  display: inline-flex;
  height: 76px;
  justify-content: center;
  padding: 0;
  position: relative;
  transition: background 180ms ease, transform 180ms ease;
  width: 76px;
}

.player-toggle:hover:not(:disabled) {
  background:
    radial-gradient(circle at 36% 28%, rgba(255, 243, 214, 0.8), transparent 18%),
    conic-gradient(from 40deg, var(--teal), var(--red), var(--gold), var(--teal));
  transform: translateY(-3px);
}

.player-toggle:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.player-toggle span {
  clip: rect(0 0 0 0);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.player-toggle::before {
  border-bottom: 16px solid transparent;
  border-left: 24px solid var(--ivory);
  border-top: 16px solid transparent;
  content: "";
  display: block;
  margin-left: 5px;
}

.music-player.is-playing .player-toggle::before,
.music-player.is-playing .player-toggle::after {
  background: var(--ivory);
  border: 0;
  content: "";
  height: 32px;
  margin: 0 3px;
  width: 8px;
}

.player-track {
  min-width: 0;
}

.player-track p,
.player-track h3 {
  margin: 0;
}

.player-track p {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.player-track h3 {
  font-family: "Limelight", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.player-track span {
  color: var(--muted);
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 0.25rem;
}

.player-volume {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 243, 214, 0.42), rgba(255, 243, 214, 0.16)),
    rgba(69, 31, 20, 0.2);
  border: 2px solid rgba(53, 26, 20, 0.52);
  border-radius: 42px;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: minmax(0, 1fr) 72px;
  min-height: 88px;
  padding: 0.45rem 0.55rem 0.45rem 0.95rem;
}

.player-volume label,
.player-status {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.player-status {
  margin: 0;
  min-height: 1.2rem;
}

.volume-knob-shell {
  height: 68px;
  position: relative;
  width: 68px;
}

.volume-knob-shell input {
  appearance: none;
  cursor: pointer;
  height: 100%;
  inset: 0;
  opacity: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.volume-knob {
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 243, 214, 0.86), transparent 19%),
    radial-gradient(circle, #a87937 0 14%, transparent 15%),
    conic-gradient(from 22deg, #2a1510, #b17832, #f3c75e, #5f2a1a, #2a1510);
  border: 5px solid #2a1510;
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 6px rgba(255, 243, 214, 0.16),
    0 5px 0 rgba(35, 16, 12, 0.42);
  display: block;
  height: 100%;
  pointer-events: none;
  transform: rotate(var(--volume-turn, 81deg));
  transition: transform 120ms ease;
  width: 100%;
}

.volume-knob::after {
  background: var(--ivory);
  border-radius: 999px;
  content: "";
  height: 22px;
  left: 50%;
  position: absolute;
  top: 8px;
  transform: translateX(-50%);
  width: 5px;
}

.volume-knob-shell input:focus-visible + .volume-knob {
  outline: 3px solid var(--ivory);
  outline-offset: 4px;
}

.section-band {
  background:
    linear-gradient(90deg, rgba(8, 124, 122, 0.08), transparent 32%, rgba(214, 66, 58, 0.08)),
    repeating-linear-gradient(90deg, transparent 0 52px, rgba(214, 166, 55, 0.12) 52px 53px),
    var(--ivory);
}

.tour-board,
.tour-atlas,
.news-section,
.story-section,
.press-section {
  padding: 5rem 5vw;
}

.section-head {
  align-items: end;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 auto 2rem;
  max-width: var(--max);
  position: relative;
}

.section-head::after {
  background:
    linear-gradient(90deg, var(--gold) 0 34px, transparent 34px 44px, var(--red) 44px 56px, transparent 56px 66px, var(--teal) 66px 112px);
  bottom: -0.9rem;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  width: min(260px, 54vw);
}

.section-head h2,
.story-copy h2,
.press-section h2 {
  color: var(--ink);
  font-size: 3rem;
  max-width: 760px;
}

.event-grid,
.news-grid {
  display: grid;
  gap: 1rem;
  margin: 0 auto;
  max-width: var(--max);
}

.event-grid {
  grid-template-columns: 1.1fr 1fr 1fr;
}

.event-card,
.news-card {
  background:
    linear-gradient(135deg, rgba(214, 166, 55, 0.1), transparent 34%),
    var(--paper);
  border: 4px double rgba(24, 32, 51, 0.38);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.event-card::after,
.news-card::after {
  border-bottom: 9px solid transparent;
  border-left: 9px solid transparent;
  border-right: 9px solid var(--gold);
  border-top: 9px solid var(--gold);
  content: "";
  position: absolute;
  right: 0.55rem;
  top: 0.55rem;
}

.event-card:hover,
.news-card:hover {
  border-color: rgba(214, 166, 55, 0.85);
  box-shadow: 0 22px 45px rgba(17, 21, 33, 0.24);
  transform: translateY(-5px);
}

.event-card {
  display: grid;
  gap: 1rem;
  grid-template-columns: 86px 1fr;
  min-height: 180px;
  padding: 1rem;
}

.event-featured {
  background:
    linear-gradient(90deg, rgba(255, 243, 214, 0.14) 1px, transparent 1px) 0 0 / 30px 100%,
    var(--teal);
  color: var(--ivory);
  grid-row: span 2;
}

.event-card time {
  align-content: center;
  background: var(--red);
  border: 2px solid rgba(255, 243, 214, 0.34);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  color: white;
  display: grid;
  justify-items: center;
  min-height: 92px;
  padding: 0.5rem;
}

.event-card time span {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-card time strong {
  font-family: "Limelight", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
}

.event-card h3,
.news-card h3 {
  font-size: 1.1rem;
  line-height: 1.2;
  margin: 0 0 0.5rem;
}

.event-card p,
.news-card p {
  color: inherit;
  margin: 0 0 1rem;
}

.event-card a,
.news-card a {
  color: currentColor;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 0.16rem;
  text-underline-offset: 0.25rem;
}

.tour-atlas {
  background:
    radial-gradient(ellipse at 18% 22%, rgba(214, 66, 58, 0.24), transparent 30%),
    radial-gradient(ellipse at 78% 68%, rgba(8, 124, 122, 0.24), transparent 32%),
    repeating-linear-gradient(90deg, rgba(255, 243, 214, 0.08) 0 1px, transparent 1px 44px),
    linear-gradient(135deg, var(--night), #1a2637 58%, var(--plum));
  color: var(--ivory);
  overflow: hidden;
}

.tour-atlas .section-head h2,
.tour-atlas .inline-link {
  color: var(--ivory);
}

.tour-atlas .section-head::after {
  background:
    linear-gradient(90deg, var(--gold) 0 42px, transparent 42px 54px, var(--red) 54px 66px, transparent 66px 78px, var(--teal) 78px 132px);
}

.atlas-layout {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(420px, 0.98fr) minmax(320px, 0.72fr);
  margin: 0 auto;
  max-width: var(--max);
}

.atlas-stage {
  display: grid;
  gap: 1rem;
  justify-items: center;
  min-width: 0;
}

.atlas-globe {
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 36% 30%, rgba(255, 243, 214, 0.18), transparent 18%),
    radial-gradient(circle at 50% 50%, rgba(8, 124, 122, 0.34), rgba(13, 45, 60, 0.9) 58%, #08101c 76%),
    linear-gradient(135deg, #153c49, #0d1526);
  border: 8px double rgba(214, 166, 55, 0.82);
  border-radius: 50%;
  box-shadow:
    inset -44px -30px 60px rgba(0, 0, 0, 0.35),
    inset 26px 20px 48px rgba(255, 243, 214, 0.08),
    18px 22px 0 rgba(17, 21, 33, 0.22);
  isolation: isolate;
  max-width: 620px;
  overflow: hidden;
  position: relative;
  width: min(100%, 620px);
}

.atlas-map-canvas,
.atlas-route-canvas,
.globe-grid,
.globe-points,
.globe-shine {
  inset: 0;
  position: absolute;
}

.atlas-map-canvas,
.atlas-route-canvas {
  height: 100%;
  width: 100%;
}

.atlas-map-canvas {
  opacity: 1;
  z-index: 1;
}

.atlas-route-canvas {
  z-index: 3;
}

.globe-grid {
  background:
    repeating-linear-gradient(90deg, transparent 0 10%, rgba(255, 243, 214, 0.075) 10% calc(10% + 1px)),
    repeating-linear-gradient(0deg, transparent 0 10%, rgba(255, 243, 214, 0.055) 10% calc(10% + 1px));
  mix-blend-mode: screen;
  opacity: 0.62;
  z-index: 2;
}

.globe-grid::before,
.globe-grid::after {
  border: 1px solid rgba(255, 243, 214, 0.13);
  border-radius: 50%;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.globe-grid::before {
  height: 62%;
  width: 32%;
}

.globe-grid::after {
  height: 32%;
  width: 78%;
}

.globe-shine {
  background:
    radial-gradient(ellipse at 27% 20%, rgba(255, 243, 214, 0.26), transparent 22%),
    radial-gradient(ellipse at 72% 78%, rgba(214, 66, 58, 0.15), transparent 26%);
  pointer-events: none;
  z-index: 5;
}

.globe-point {
  --x: 50%;
  --y: 50%;
  align-items: center;
  background: var(--gold);
  border: 2px solid var(--night);
  border-radius: 50%;
  box-shadow:
    0 0 0 3px rgba(255, 243, 214, 0.2),
    0 0 14px rgba(243, 199, 94, 0.52);
  color: var(--night);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 0.64rem;
  font-weight: 900;
  height: 18px;
  justify-content: center;
  left: var(--x);
  line-height: 1;
  min-width: 18px;
  padding: 0;
  position: absolute;
  top: var(--y);
  transform: translate(-50%, -50%);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  width: 18px;
  z-index: 4;
}

.globe-point:hover,
.globe-point[aria-pressed="true"] {
  background: var(--red);
  box-shadow:
    0 0 0 5px rgba(255, 243, 214, 0.28),
    0 0 24px rgba(242, 109, 125, 0.78);
  color: white;
  transform: translate(-50%, -50%) scale(1.22);
}

.atlas-zoom {
  display: flex;
  gap: 0.35rem;
  justify-content: center;
  margin-top: -0.2rem;
}

.atlas-zoom button {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 243, 214, 0.96), rgba(214, 166, 55, 0.84));
  border: 2px solid rgba(17, 21, 33, 0.72);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  min-width: 44px;
  padding: 0 0.65rem;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.atlas-zoom button:hover {
  background:
    linear-gradient(180deg, var(--ivory), var(--gold));
  transform: translateY(-2px);
}

.atlas-zoom button:disabled {
  cursor: not-allowed;
  opacity: 0.46;
}

.atlas-zoom button:disabled:hover {
  background:
    linear-gradient(180deg, rgba(255, 243, 214, 0.96), rgba(214, 166, 55, 0.84));
  transform: none;
}

.atlas-zoom button:focus-visible {
  outline: 3px solid rgba(255, 243, 214, 0.8);
  outline-offset: 2px;
}

.atlas-legend {
  color: rgba(255, 243, 214, 0.76);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  text-transform: uppercase;
}

.atlas-legend span {
  align-items: center;
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 900;
  gap: 0.35rem;
}

.atlas-legend i {
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  height: 0.62rem;
  width: 0.62rem;
}

.atlas-legend span:nth-child(2) i {
  background: var(--red);
}

.atlas-legend span:nth-child(3) i {
  background: var(--teal);
  border-radius: 0;
  height: 0.18rem;
  width: 1.2rem;
}

.atlas-console {
  background:
    linear-gradient(90deg, rgba(255, 243, 214, 0.07) 1px, transparent 1px) 0 0 / 30px 100%,
    rgba(255, 250, 240, 0.08);
  border: 4px double rgba(214, 166, 55, 0.52);
  box-shadow: var(--shadow);
  color: var(--ivory);
  min-width: 0;
  padding: 1rem;
}

.atlas-filters {
  display: grid;
  gap: 0.45rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.atlas-filters button,
.tv-programs button {
  background: rgba(255, 243, 214, 0.92);
  border: 2px solid rgba(17, 21, 33, 0.44);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.66rem;
  font-weight: 900;
  min-height: 40px;
  padding: 0.48rem 0.5rem;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.atlas-filters button:hover,
.atlas-filters button.is-active,
.tv-programs button:hover,
.tv-programs button[aria-pressed="true"] {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}

.atlas-card {
  background:
    linear-gradient(135deg, rgba(214, 166, 55, 0.16), transparent 34%),
    rgba(255, 250, 240, 0.95);
  border: 1px solid rgba(255, 243, 214, 0.32);
  color: var(--ink);
  margin-bottom: 1rem;
  padding: 1rem;
}

.atlas-card time,
.atlas-list time {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.atlas-card h3 {
  font-family: "Limelight", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  margin: 0.35rem 0 0.55rem;
}

.atlas-card p {
  color: var(--muted);
  margin: 0 0 0.8rem;
}

.atlas-card a {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 0.16rem;
  text-transform: uppercase;
  text-underline-offset: 0.25rem;
}

.atlas-list {
  counter-reset: atlas-stop;
  display: grid;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  max-height: 315px;
  overflow: auto;
  padding: 0;
}

.atlas-list li {
  counter-increment: atlas-stop;
}

.atlas-stop {
  align-items: center;
  background: rgba(255, 243, 214, 0.1);
  border: 1px solid rgba(255, 243, 214, 0.2);
  color: var(--ivory);
  cursor: pointer;
  display: grid;
  font: inherit;
  gap: 0.65rem;
  grid-template-columns: 34px minmax(0, 1fr);
  min-height: 66px;
  padding: 0.55rem;
  text-align: left;
  width: 100%;
}

.atlas-stop::before {
  align-items: center;
  background: var(--gold);
  color: var(--ink);
  content: counter(atlas-stop);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.atlas-stop:hover,
.atlas-stop[aria-pressed="true"] {
  background: rgba(214, 66, 58, 0.34);
  border-color: rgba(242, 109, 125, 0.78);
}

.atlas-stop strong,
.atlas-stop span {
  display: block;
}

.atlas-stop strong {
  font-size: 0.82rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.atlas-stop span {
  color: rgba(255, 243, 214, 0.72);
  font-size: 0.72rem;
  margin-top: 0.14rem;
}

.vintage-tv {
  justify-self: center;
  max-width: 1120px;
  scroll-margin-top: 96px;
  width: 100%;
}

.tv-cabinet {
  background:
    radial-gradient(ellipse at 48% 18%, rgba(255, 243, 214, 0.22), transparent 46%),
    repeating-linear-gradient(105deg, rgba(255, 230, 161, 0.08) 0 4px, transparent 4px 18px),
    linear-gradient(135deg, #b76a2d, #6a2f1c 62%, #341914);
  border: 8px solid #2a1510;
  border-bottom-width: 14px;
  border-radius: 28px;
  box-shadow:
    inset 0 0 0 4px rgba(243, 199, 94, 0.22),
    inset 0 -24px 42px rgba(35, 16, 12, 0.28),
    18px 20px 0 rgba(17, 21, 33, 0.24);
  display: grid;
  gap: clamp(0.85rem, 2vw, 1.25rem);
  grid-template-areas:
    "screen panel"
    "screen programs";
  grid-template-columns: minmax(0, 1fr) clamp(168px, 22vw, 230px);
  padding: clamp(1rem, 2.6vw, 1.45rem);
  position: relative;
}

.tv-cabinet::after {
  background:
    linear-gradient(#2a1510, #2a1510) left 12% bottom -30px / 18% 32px no-repeat,
    linear-gradient(#2a1510, #2a1510) right 12% bottom -30px / 18% 32px no-repeat;
  bottom: 0;
  content: "";
  height: 34px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.tv-screen {
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 243, 214, 0.18), transparent 32%),
    repeating-linear-gradient(0deg, rgba(255, 243, 214, 0.08) 0 1px, transparent 1px 4px),
    #0b1020;
  border: clamp(8px, 1.2vw, 12px) solid #24120d;
  border-radius: 44px / 32px;
  box-shadow:
    inset 0 0 34px rgba(0, 0, 0, 0.78),
    0 0 0 3px rgba(243, 199, 94, 0.18);
  grid-area: screen;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.tv-screen iframe,
.tv-cover {
  border: 0;
  border-radius: 28px / 20px;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.tv-screen iframe {
  background: #050814;
  z-index: 1;
}

.tv-cover {
  background: #0b1020;
  color: var(--ivory);
  cursor: pointer;
  padding: 0;
  z-index: 2;
}

.tv-cover img {
  filter: saturate(0.85) contrast(1.06);
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  opacity: 0.78;
  width: 100%;
}

.tv-play-mark {
  align-items: center;
  background: var(--gold);
  border: 3px solid var(--ink);
  color: var(--ink);
  display: inline-flex;
  font-family: "Limelight", Georgia, serif;
  font-size: 1.15rem;
  height: 78px;
  justify-content: center;
  left: 50%;
  position: absolute;
  text-transform: uppercase;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-5deg);
  transition: transform 180ms ease, background 180ms ease;
  width: 112px;
}

.tv-cover:hover .tv-play-mark {
  background: var(--ivory);
  transform: translate(-50%, -50%) rotate(-1deg) scale(1.04);
}

.tv-screen.is-loaded .tv-cover {
  opacity: 0;
  pointer-events: none;
}

.tv-scanlines {
  background:
    radial-gradient(ellipse at 50% 50%, transparent 52%, rgba(0, 0, 0, 0.24) 100%),
    repeating-linear-gradient(0deg, rgba(255, 243, 214, 0.09) 0 1px, transparent 1px 5px);
  inset: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  position: absolute;
  z-index: 3;
}

.tv-panel {
  align-content: center;
  background:
    linear-gradient(90deg, rgba(255, 243, 214, 0.42), rgba(255, 243, 214, 0.18)),
    rgba(69, 31, 20, 0.2);
  border: 3px solid #2a1510;
  color: var(--ink);
  display: grid;
  gap: 0.75rem;
  grid-area: panel;
  min-height: clamp(150px, 18vw, 210px);
  min-width: 0;
  overflow: hidden;
  padding: 0.8rem;
}

.tv-brand,
.tv-panel small {
  display: block;
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.tv-brand {
  color: #30160f;
}

.tv-panel strong {
  display: block;
  font-family: "Limelight", Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  font-weight: 400;
  line-height: 1;
  margin: 0.3rem 0;
  overflow-wrap: anywhere;
}

.tv-panel small {
  color: rgba(48, 22, 15, 0.72);
}

.tv-fallback {
  color: #30160f;
  display: inline-flex;
  font-size: 0.66rem;
  font-weight: 900;
  margin-top: 0.55rem;
  text-decoration-color: var(--red);
  text-decoration-thickness: 0.14rem;
  text-transform: uppercase;
  text-underline-offset: 0.22rem;
}

.tv-fallback:hover {
  color: var(--red);
}

.tv-knobs {
  display: flex;
  gap: 0.65rem;
}

.tv-knobs span {
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 243, 214, 0.86), transparent 20%),
    conic-gradient(#2a1510, #b17832, #f3c75e, #5f2a1a, #2a1510);
  border: 5px solid #2a1510;
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px rgba(255, 243, 214, 0.16);
  display: block;
  height: 54px;
  width: 54px;
}

.tv-programs {
  display: grid;
  gap: 0.45rem;
  grid-area: programs;
  min-width: 0;
}

.inline-link.light {
  color: var(--ivory);
}

.press-section h2 {
  color: var(--ivory);
}

.story-section {
  align-items: center;
  display: grid;
  gap: 3rem;
  grid-template-columns: 0.85fr 1.15fr;
  overflow: hidden;
  position: relative;
}

.story-section::before {
  background:
    radial-gradient(ellipse at 84% 50%, rgba(8, 124, 122, 0.14), transparent 30%),
    radial-gradient(ellipse at 12% 45%, rgba(214, 66, 58, 0.11), transparent 28%),
    repeating-linear-gradient(90deg, transparent 0 58px, rgba(214, 166, 55, 0.12) 58px 59px);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.story-copy {
  justify-self: end;
  max-width: 560px;
}

.story-photo-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 1fr 0.72fr;
  grid-template-rows: 240px 240px;
}

.story-photo-grid img {
  border: 5px double var(--ink);
  height: 100%;
  object-fit: cover;
  transition: filter 180ms ease, transform 180ms ease;
  width: 100%;
}

.story-photo-grid img:hover {
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.018);
}

.story-photo-grid img:first-child {
  grid-row: span 2;
}

.news-section {
  background:
    linear-gradient(90deg, rgba(214, 166, 55, 0.07) 1px, transparent 1px) 0 0 / 34px 100%,
    var(--paper);
}

.news-grid {
  grid-template-columns: repeat(3, 1fr);
}

.news-card {
  min-height: 270px;
  padding: 1.4rem;
}

.news-date {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.press-section {
  background:
    repeating-linear-gradient(90deg, rgba(255, 243, 214, 0.07) 0 1px, transparent 1px 48px),
    linear-gradient(90deg, rgba(17, 21, 33, 0.96), rgba(17, 21, 33, 0.82)),
    url("assets/images/carling-raps.jpg") center / cover;
  border-top: 8px double var(--gold);
  color: var(--ivory);
}

.press-inner {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 0.7fr;
  margin: 0 auto;
  max-width: var(--max);
}

.press-inner p {
  color: rgba(255, 243, 214, 0.86);
  max-width: 700px;
}

.site-footer {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(214, 166, 55, 0.08) 1px, transparent 1px) 0 0 / 34px 100%,
    var(--ink);
  border-top: 5px solid var(--gold);
  color: var(--ivory);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 2rem 5vw;
}

.site-footer div {
  display: grid;
  gap: 0.2rem;
}

.site-footer span {
  color: rgba(255, 243, 214, 0.7);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 4rem;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-poster {
    min-height: 400px;
    padding-bottom: 1.5rem;
  }

  .hero-poster img {
    height: min(520px, 58svh);
  }

  .event-grid,
  .news-grid,
  .story-section,
  .listen-section,
  .broadcast-devices,
  .atlas-layout,
  .press-inner {
    grid-template-columns: 1fr;
  }

  .atlas-layout {
    justify-items: stretch;
  }

  .atlas-globe {
    max-width: 560px;
  }

  .tv-cabinet {
    grid-template-areas:
      "screen"
      "panel"
      "programs";
    grid-template-columns: 1fr;
  }

  .tv-screen {
    grid-row: auto;
  }

  .event-featured {
    grid-row: auto;
  }

  .story-copy {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: center;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    max-width: 100vw;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    background: var(--paper);
    border-top: 1px solid rgba(24, 32, 51, 0.16);
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    grid-column: 1 / -1;
    padding: 1rem 0 0.35rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .brand-copy small {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand-copy span {
    font-size: 1rem;
  }

  .hero {
    max-width: 100vw;
    min-height: 78svh;
    padding-bottom: 0;
  }

  .hero-content {
    max-width: 100%;
    width: 100%;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .hero-actions .button {
    min-width: 0;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .hero-actions .button-ghost {
    grid-column: auto;
  }

  .hero-poster {
    min-height: 320px;
    padding-bottom: 1.25rem;
  }

  .hero-poster img {
    height: min(420px, 48svh);
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .section-head h2,
  .listen-copy h2,
  .story-copy h2,
  .press-section h2 {
    font-size: 2.2rem;
  }

  .tour-board,
  .tour-atlas,
  .news-section,
  .story-section,
  .listen-section,
  .press-section {
    padding: 3.5rem 5vw;
  }

  .event-card {
    grid-template-columns: 74px 1fr;
  }

  .story-photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 230px);
  }

  .story-photo-grid img:first-child {
    grid-row: auto;
  }

  .site-footer {
    align-items: start;
    flex-direction: column;
  }

  .player-now {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .player-toggle {
    height: 64px;
    width: 64px;
  }

  .radio-window {
    gap: 0.35rem;
    grid-template-columns: 0.72fr 1fr 0.72fr;
    grid-template-rows: 28px 126px;
    min-height: 158px;
    padding: 0 0.2rem;
  }

  .radio-tuning {
    width: min(88%, 310px);
  }

  .radio-dial {
    height: 42px;
    width: 42px;
  }

  .radio-needle {
    height: 30px;
  }

  .station-presets {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .atlas-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .atlas-card h3 {
    font-size: 1.55rem;
  }

  .tv-screen {
    border-radius: 34px / 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .radio-dial {
    animation: none;
  }
}
