/*
Theme Name: Street Hitz Radio
Theme URI: https://streethitz.casthost.net
Author: CastHost
Author URI: https://www.casthost.net
Description: Custom WordPress theme for Street Hitz Radio.
Version: 1.0.0
Text Domain: street-hitz-radio
*/

:root {
  --shr-black: #070707;
  --shr-ink: #0d0e10;
  --shr-panel: #141518;
  --shr-panel-soft: #1a1b1f;
  --shr-line: rgba(255, 255, 255, 0.12);
  --shr-line-strong: rgba(255, 255, 255, 0.24);
  --shr-white: #f7f7f5;
  --shr-silver: #b9bbc0;
  --shr-muted: #898c93;
  --shr-red: #e61720;
  --shr-red-bright: #ea1820;
  --shr-red-dark: #8d0c12;
  --shr-display: "Teko", Impact, sans-serif;
  --shr-body: "Barlow", sans-serif;
  --shr-container: min(1180px, calc(100% - 40px));
  --shr-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--shr-red) var(--shr-ink);
  scrollbar-width: auto;
}

html::-webkit-scrollbar {
  width: 12px;
}

html::-webkit-scrollbar-track {
  background: var(--shr-ink);
}

html::-webkit-scrollbar-thumb {
  border: 3px solid var(--shr-ink);
  border-radius: 999px;
  background: var(--shr-red);
}

html::-webkit-scrollbar-thumb:hover {
  background: var(--shr-red-bright);
}

body {
  margin: 0;
  background: var(--shr-black);
  color: var(--shr-white);
  font-family: var(--shr-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  content: "";
  opacity: 0.11;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.34'/%3E%3C/svg%3E");
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

::selection {
  background: var(--shr-red);
  color: #fff;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  background: #fff;
  color: #000;
}

.shr-container {
  width: var(--shr-container);
  margin-inline: auto;
}

.shr-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 15px;
  color: var(--shr-red-bright);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.shr-kicker::before {
  width: 24px;
  height: 2px;
  content: "";
  background: currentColor;
}

.shr-heading {
  margin: 0;
  font-family: var(--shr-display);
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.82;
  text-transform: uppercase;
}

.shr-heading em {
  color: var(--shr-red);
  font-style: normal;
}

.shr-lead {
  max-width: 670px;
  margin: 24px 0 0;
  color: var(--shr-silver);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.shr-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 13px 23px;
  border: 1px solid var(--shr-red);
  background: var(--shr-red);
  color: #fff;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transition: 180ms ease;
}

.shr-button:hover,
.shr-button:focus-visible {
  border-color: var(--shr-red-bright);
  background: var(--shr-red-bright);
  box-shadow: 0 0 0 6px rgba(239, 27, 35, 0.13);
  transform: translateY(-2px);
}

.shr-button--ghost {
  border-color: var(--shr-line-strong);
  background: transparent;
}

.shr-button--ghost:hover,
.shr-button--ghost:focus-visible {
  border-color: var(--shr-white);
  background: var(--shr-white);
  color: var(--shr-black);
  box-shadow: none;
}

.shr-arrow {
  font-size: 1rem;
  line-height: 0;
}

/* Header */
.shr-site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 200ms ease, border-color 200ms ease;
}

.shr-site-header.is-scrolled,
body:not(.home) .shr-site-header {
  border-color: var(--shr-line);
  background: rgba(7, 7, 7, 0.92);
  backdrop-filter: blur(16px);
}

.shr-header-inner {
  display: grid;
  min-height: 82px;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
}

.shr-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.shr-brand img {
	width: 92px;
	height: 70px;
	object-fit: contain;
}

.shr-nav {
  justify-self: end;
}

.shr-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.shr-menu a {
  position: relative;
  display: block;
  padding: 8px 0;
  color: var(--shr-silver);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shr-menu a::after {
  position: absolute;
  right: 100%;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--shr-red);
  transition: right 180ms ease;
}

.shr-menu a:hover,
.shr-menu a:focus-visible,
.shr-menu .current-menu-item > a {
  color: #fff;
}

.shr-menu a:hover::after,
.shr-menu a:focus-visible::after,
.shr-menu .current-menu-item > a::after {
  right: 0;
}

.shr-header-listen {
  min-height: 42px;
  padding: 10px 17px;
}

.shr-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--shr-line-strong);
  background: transparent;
  color: #fff;
}

.shr-menu-toggle span,
.shr-menu-toggle span::before,
.shr-menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.shr-menu-toggle span {
  position: relative;
}

.shr-menu-toggle span::before,
.shr-menu-toggle span::after {
  position: absolute;
  left: 0;
  content: "";
}

.shr-menu-toggle span::before {
  top: -6px;
}

.shr-menu-toggle span::after {
  top: 6px;
}

/* Hero */
.shr-hero {
  position: relative;
  min-height: 880px;
  overflow: hidden;
  border-bottom: 1px solid var(--shr-line);
  background:
    radial-gradient(circle at 78% 44%, rgba(239, 27, 35, 0.18), transparent 26%),
    linear-gradient(112deg, #070707 0 48%, #101114 48% 100%);
}

.shr-hero::before {
  position: absolute;
  top: -20%;
  left: 52%;
  width: 2px;
  height: 145%;
  content: "";
  background: var(--shr-red);
  box-shadow: 18px 0 0 rgba(239, 27, 35, 0.14), 36px 0 0 rgba(239, 27, 35, 0.08);
  transform: rotate(14deg);
  transform-origin: top;
}

.shr-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.shr-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 880px;
  align-items: center;
  padding-top: 120px;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 80px;
}

.shr-hero-copy {
  position: relative;
  padding-bottom: 80px;
}

.shr-hero .shr-heading {
  font-size: clamp(5rem, 10.5vw, 10.5rem);
  line-height: 0.72;
}

.shr-hero .shr-heading span {
  display: block;
}

.shr-hero .shr-heading span:nth-child(2) {
  margin-left: 0.45em;
  color: var(--shr-red);
  text-shadow: 8px 8px 0 rgba(255, 255, 255, 0.08);
}

.shr-hero-copy > .shr-kicker {
  margin-bottom: 26px;
}

.shr-hero-copy > p:not(.shr-kicker) {
  max-width: 520px;
  margin: 30px 0 0;
  color: var(--shr-silver);
  font-size: 1.08rem;
}

.shr-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.shr-hero-art {
  position: relative;
  align-self: end;
  padding: 0;
}

.shr-hero--studio-background .shr-hero-inner {
  isolation: isolate;
  grid-template-columns: 1fr;
}

.shr-hero--studio-background .shr-hero-copy {
  z-index: 4;
  max-width: 680px;
}

.shr-hero--studio-background .shr-hero-art {
  position: absolute;
  z-index: 1;
  top: 0;
  right: calc((100vw - 100%) / -2);
  bottom: 0;
  left: calc((100vw - 100%) / -2);
  width: auto;
  height: 100%;
  align-self: stretch;
}

.shr-logo-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shr-shadow);
  transform: rotate(1.6deg);
}

.shr-logo-stage::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(150deg, transparent 46%, rgba(239, 27, 35, 0.2));
}

.shr-logo-stage img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.shr-studio-stage {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #050505;
  isolation: isolate;
}

.shr-studio-stage::before,
.shr-studio-stage::after {
  position: absolute;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.shr-studio-stage::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.96) 0%, rgba(7, 7, 7, 0.82) 36%, rgba(7, 7, 7, 0.28) 72%, rgba(7, 7, 7, 0.46) 100%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.72), transparent 48%),
    radial-gradient(circle at 78% 48%, rgba(230, 23, 32, 0.3), transparent 38%);
}

.shr-studio-stage::after {
  top: -35%;
  bottom: -35%;
  left: -48%;
  width: 24%;
  background: linear-gradient(90deg, transparent, rgba(230, 23, 32, 0.22), transparent);
  filter: blur(16px);
  opacity: 0;
  transform: rotate(12deg);
  animation: shrStudioSweep 12s ease-in-out infinite;
}

.shr-studio-stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: brightness(0.72) contrast(1.14) saturate(0.86);
  transform: scale(1.04) translate3d(-0.7%, 0, 0);
  animation: shrStudioPush 16s ease-in-out infinite alternate;
}

.shr-live-card {
  position: absolute;
  right: -26px;
  bottom: 8px;
  width: min(410px, 86%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(10, 10, 11, 0.95);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

.shr-live-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.shr-live-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.shr-live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--shr-red-bright);
  box-shadow: 0 0 0 6px rgba(239, 27, 35, 0.12);
  animation: shrPulse 1.8s infinite;
}

.shr-frequency {
  color: var(--shr-muted);
  font-family: var(--shr-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
}

.shr-live-card iframe,
.shr-player-frame iframe,
.shr-history-frame iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 0;
  background: #111;
}

.shr-live-card iframe {
  height: 150px;
}

.shr-scroll-note {
  position: absolute;
  bottom: 30px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--shr-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shr-scroll-note::before {
  width: 42px;
  height: 1px;
  content: "";
  background: var(--shr-red);
}

/* Signal bar */
.shr-signal-bar {
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--shr-red);
  color: #fff;
}

.shr-signal-track {
  display: flex;
  width: max-content;
  animation: shrMarquee 26s linear infinite;
}

.shr-signal-track span {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  padding: 12px 25px;
  font-family: var(--shr-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.shr-signal-track span::after {
  content: "●";
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.5rem;
}

/* Sections */
.shr-section {
  position: relative;
  padding: 120px 0;
}

.shr-section--panel {
  background: var(--shr-ink);
}

.shr-section--silver {
  background: #e7e7e5;
  color: #0a0a0b;
}

.shr-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
}

.shr-section-head .shr-heading {
  max-width: 760px;
}

.shr-section-note {
  max-width: 330px;
  margin: 0 0 5px;
  color: var(--shr-muted);
}

.shr-listen-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 24px;
}

.shr-audio-panel {
  position: relative;
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--shr-line);
  background: var(--shr-panel);
}

.shr-audio-panel::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 92px;
  height: 4px;
  content: "";
  background: var(--shr-red);
}

.shr-panel-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.shr-panel-label h3 {
  margin: 0;
  font-family: var(--shr-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.shr-panel-label span {
  color: var(--shr-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shr-player-frame iframe {
  height: 316px;
}

.shr-history-frame iframe {
  height: 511px;
}

.shr-manifesto-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 85px;
}

.shr-manifesto-mark {
  position: relative;
  min-height: 490px;
  overflow: hidden;
  background: var(--shr-panel);
}

.shr-manifesto-mark img {
  width: 100%;
  height: 100%;
  min-height: 490px;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.9);
}

.shr-manifesto-copy .shr-heading {
  font-size: clamp(4rem, 7.5vw, 7rem);
}

.shr-manifesto-copy p:not(.shr-kicker) {
  color: #3f4147;
  font-size: 1.1rem;
}

.shr-manifesto-copy .shr-button--ghost {
  border-color: rgba(0, 0, 0, 0.25);
  color: #0a0a0b;
}

.shr-manifesto-copy .shr-button--ghost:hover {
  background: #0a0a0b;
  color: #fff;
}

.shr-paths {
  display: grid;
  border-top: 1px solid var(--shr-line);
  border-left: 1px solid var(--shr-line);
  grid-template-columns: repeat(3, 1fr);
}

.shr-path-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 34px;
  border-right: 1px solid var(--shr-line);
  border-bottom: 1px solid var(--shr-line);
  background: var(--shr-panel);
  transition: background 220ms ease, transform 220ms ease;
}

.shr-path-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  content: "";
  background: var(--shr-red);
  opacity: 0;
  transition: opacity 220ms ease;
}

.shr-path-card:hover,
.shr-path-card:focus-within {
  z-index: 2;
  background: #1d1e22;
  transform: translateY(-8px);
}

.shr-path-card:hover::before,
.shr-path-card:focus-within::before {
  opacity: 1;
}

.shr-path-number {
  color: var(--shr-red);
  font-family: var(--shr-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}

.shr-path-card h3 {
  max-width: 250px;
  margin: 100px 0 15px;
  font-family: var(--shr-display);
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 0.85;
  text-transform: uppercase;
}

.shr-path-card p {
  max-width: 300px;
  margin: 0;
  color: var(--shr-muted);
}

.shr-path-link {
  position: absolute;
  right: 34px;
  bottom: 30px;
  left: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--shr-line);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shr-growth {
  overflow: hidden;
}

.shr-growth::before {
  position: absolute;
  top: 50%;
  right: -80px;
  width: 330px;
  height: 330px;
  border: 62px solid rgba(239, 27, 35, 0.15);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.shr-growth-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 60px;
}

.shr-growth-copy {
  max-width: 760px;
}

/* Inner pages */
.shr-page-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: 170px 0 80px;
  border-bottom: 1px solid var(--shr-line);
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.96), rgba(7, 7, 7, 0.55)),
    url("assets/img/street-hitz-logo-hero.webp") center / cover;
}

.shr-page-hero-inner {
  position: relative;
  z-index: 2;
}

.shr-page-hero .shr-heading {
  max-width: 900px;
  font-size: clamp(5rem, 12vw, 10rem);
}

.shr-page-content {
  padding: 100px 0 130px;
  background: var(--shr-ink);
}

.shr-prose {
  font-size: 1.06rem;
}

.shr-prose > *:first-child {
  margin-top: 0;
}

.shr-prose h2,
.shr-prose h3 {
  font-family: var(--shr-display);
  font-weight: 600;
  line-height: 0.92;
  text-transform: uppercase;
}

.shr-prose h2 {
  margin: 70px 0 25px;
  font-size: clamp(3rem, 6vw, 5rem);
}

.shr-prose h3 {
  margin: 42px 0 18px;
  font-size: 2.2rem;
}

.shr-prose p,
.shr-prose li {
  color: var(--shr-silver);
}

.shr-prose a:not(.shr-button) {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--shr-red);
  text-underline-offset: 4px;
}

.shr-intro-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}

.shr-intro-stat {
  padding: 28px;
  border-top: 4px solid var(--shr-red);
  background: var(--shr-panel);
}

.shr-intro-stat strong {
  display: block;
  font-family: var(--shr-display);
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.shr-intro-stat span {
  color: var(--shr-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shr-feature-grid {
  display: grid;
  margin: 42px 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.shr-feature-card {
  padding: 30px;
  border: 1px solid var(--shr-line);
  background: var(--shr-panel);
}

.shr-feature-card strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-family: var(--shr-display);
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.shr-feature-card p {
  margin: 0;
  color: var(--shr-muted);
}

.shr-form-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 80px;
}

.shr-form-intro {
  position: sticky;
  top: 120px;
}

.shr-form-intro h2 {
  margin-top: 0;
}

.shr-form-box {
  padding: 36px;
  border: 1px solid var(--shr-line);
  background: var(--shr-panel);
}

.shr-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.shr-field {
  min-width: 0;
}

.shr-field--full {
  grid-column: 1 / -1;
}

.shr-field label {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shr-field input,
.shr-field select,
.shr-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--shr-line-strong);
  border-radius: 0;
  outline: 0;
  background: #0d0e10;
  color: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.shr-field textarea {
  min-height: 160px;
  resize: vertical;
}

.shr-field input:focus,
.shr-field select:focus,
.shr-field textarea:focus {
  border-color: var(--shr-red);
  box-shadow: 0 0 0 4px rgba(239, 27, 35, 0.12);
}

.shr-field small {
  display: block;
  margin-top: 8px;
  color: var(--shr-muted);
  font-size: 0.78rem;
}

.shr-honeypot {
  position: absolute;
  left: -9999px;
}

.shr-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
}

.shr-form-actions p {
  max-width: 360px;
  margin: 0;
  color: var(--shr-muted);
  font-size: 0.78rem;
}

.shr-notice {
  margin: 0 0 24px;
  padding: 14px 18px;
  border-left: 4px solid var(--shr-red);
  background: rgba(239, 27, 35, 0.1);
  color: #fff;
}

.shr-notice--success {
  border-color: #4bc67b;
  background: rgba(75, 198, 123, 0.1);
}

/* Footer */
.shr-site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--shr-line);
  background: #080809;
}

.shr-footer-main {
  display: grid;
  padding: 80px 0 62px;
  grid-template-columns: 1.1fr 0.7fr 0.9fr;
  gap: 80px;
}

.shr-footer-brand img {
	width: 150px;
	height: auto;
	object-fit: contain;
}

.shr-footer-brand h2 {
  margin: 20px 0 8px;
  font-family: var(--shr-display);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 0.9;
  text-transform: uppercase;
}

.shr-footer-brand p {
  max-width: 340px;
  margin: 0;
  color: var(--shr-muted);
}

.shr-footer-heading {
  margin: 0 0 22px;
  color: #ef1b23;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.shr-footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.shr-footer-links li + li {
  margin-top: 10px;
}

.shr-footer-links a {
  color: var(--shr-silver);
}

.shr-footer-links a:hover,
.shr-footer-links a:focus-visible {
  color: #fff;
}

.shr-footer-listen {
  padding: 28px;
  border: 1px solid var(--shr-line);
  background: var(--shr-panel);
}

.shr-footer-listen h3 {
  margin: 0 0 10px;
  font-family: var(--shr-display);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 0.9;
  text-transform: uppercase;
}

.shr-footer-listen p {
  margin: 0 0 18px;
  color: var(--shr-muted);
}

.shr-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--shr-line);
  color: var(--shr-muted);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.shr-footer-bottom a:hover {
  color: #fff;
}

/* Motion */
.shr-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.shr-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes shrPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.82); }
}

@keyframes shrMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes shrStudioPush {
  from { transform: scale(1.04) translate3d(-0.7%, 0, 0); }
  to { transform: scale(1.11) translate3d(0.8%, -0.6%, 0); }
}

@keyframes shrStudioSweep {
  0%, 18% { left: -48%; opacity: 0; }
  34% { opacity: 0.7; }
  55%, 100% { left: 125%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .shr-reveal { opacity: 1; transform: none; }
  .shr-studio-stage img { animation: none; transform: scale(1.04); }
  .shr-studio-stage::after { display: none; }
}

@media (max-width: 1050px) {
  .shr-header-inner { gap: 20px; }
  .shr-menu { gap: 18px; }
  .shr-header-listen { display: none; }
  .shr-hero-inner { gap: 38px; }
  .shr-live-card { right: -10px; }
  .shr-manifesto-grid { gap: 50px; }
  .shr-footer-main { gap: 40px; }
}

@media (max-width: 850px) {
  :root { --shr-container: min(100% - 32px, 720px); }
  .shr-menu-toggle { display: inline-flex; justify-self: end; }
  .shr-header-inner { grid-template-columns: 1fr auto; }
  .shr-nav {
    position: absolute;
    top: 82px;
    right: 0;
    left: 0;
    display: none;
    padding: 14px 20px 24px;
    border-bottom: 1px solid var(--shr-line);
    background: rgba(7, 7, 7, 0.98);
  }
  .shr-nav.is-open { display: block; }
  .shr-menu { align-items: stretch; flex-direction: column; gap: 0; }
  .shr-menu a { padding: 15px 0; border-bottom: 1px solid var(--shr-line); }
  .shr-hero, .shr-hero-inner { min-height: 760px; }
  .shr-hero-inner { padding-top: 170px; padding-bottom: 85px; grid-template-columns: 1fr; }
  .shr-hero-copy { padding-bottom: 0; }
  .shr-hero .shr-heading { font-size: clamp(5rem, 22vw, 9rem); }
  .shr-hero--studio-background .shr-hero-art {
    top: 0;
    right: calc((100vw - 100%) / -2);
    bottom: 0;
    left: calc((100vw - 100%) / -2);
    width: auto;
    height: auto;
  }
  .shr-hero--studio-background .shr-studio-stage::before {
    background:
      linear-gradient(90deg, rgba(7, 7, 7, 0.9), rgba(7, 7, 7, 0.54)),
      linear-gradient(0deg, rgba(7, 7, 7, 0.82), transparent 54%),
      radial-gradient(circle at 76% 42%, rgba(230, 23, 32, 0.26), transparent 42%);
  }
  .shr-hero--studio-background .shr-studio-stage img { object-position: 62% center; }
  .shr-scroll-note { display: none; }
  .shr-section { padding: 90px 0; }
  .shr-section-head { align-items: start; flex-direction: column; margin-bottom: 38px; }
  .shr-listen-grid, .shr-manifesto-grid, .shr-intro-grid, .shr-form-layout { grid-template-columns: 1fr; }
  .shr-manifesto-grid, .shr-form-layout { gap: 45px; }
  .shr-paths { grid-template-columns: 1fr; }
  .shr-path-card { min-height: 320px; }
  .shr-path-card h3 { margin-top: 55px; }
  .shr-growth-inner { align-items: start; grid-template-columns: 1fr; gap: 30px; }
  .shr-form-intro { position: static; }
  .shr-footer-main { grid-template-columns: 1fr 1fr; }
  .shr-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .shr-brand img { width: 84px; height: 64px; }
  .shr-hero, .shr-hero-inner { min-height: 720px; }
  .shr-hero-inner { padding-top: 135px; padding-bottom: 70px; }
  .shr-hero .shr-heading { font-size: clamp(4.5rem, 25vw, 7rem); }
  .shr-hero .shr-heading span:nth-child(2) { margin-left: 0.18em; }
  .shr-hero-actions .shr-button { width: 100%; }
  .shr-logo-stage { transform: none; }
  .shr-live-card { position: relative; right: auto; bottom: auto; width: calc(100% - 22px); margin: -24px auto 0; }
  .shr-section { padding: 74px 0; }
  .shr-heading { font-size: clamp(3.2rem, 17vw, 5.2rem); }
  .shr-audio-panel { padding: 16px; }
  .shr-player-frame iframe { height: 316px; }
  .shr-history-frame iframe { height: 470px; }
  .shr-manifesto-mark, .shr-manifesto-mark img { min-height: 330px; }
  .shr-feature-grid, .shr-form-grid { grid-template-columns: 1fr; }
  .shr-form-box { padding: 22px; }
  .shr-form-actions { align-items: stretch; flex-direction: column; }
  .shr-form-actions .shr-button { width: 100%; }
  .shr-page-hero { min-height: 430px; padding-top: 140px; padding-bottom: 55px; }
  .shr-page-content { padding: 70px 0 95px; }
  .shr-footer-main { grid-template-columns: 1fr; padding-top: 60px; }
  .shr-footer-brand { grid-column: auto; }
  .shr-footer-bottom { align-items: start; flex-direction: column; }
}
