/*
Theme Name: MiRadio One Page
Theme URI: https://miradio.com/
Author: MiRadio.com
Description: A responsive one-page WordPress theme for MiRadio.com and La Mega 97.5 FM.
Version: 1.0.0
Requires at least: 6.2
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: miradio-one-page
Tags: one-column
*/

:root {
  --ink: #070708;
  --ink-soft: #101012;
  --panel: #151518;
  --paper: #f4f2ec;
  --line: rgba(255, 255, 255, 0.14);
  --white: #f8f7f3;
  --muted: #b6b5ba;
  --red: #e31319;
  --red-bright: #fb2027;
  --red-dark: #8e050b;
  --yellow: #ffd400;
  --teal: #13a89e;
  --shell: 1280px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
}

::selection {
  color: #000;
  background: var(--yellow);
}

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

a {
  color: inherit;
}

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

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

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #000;
  background: var(--yellow);
  border-radius: 4px;
  font-weight: 900;
  text-decoration: none;
  transform: translateY(-170%);
  transition: transform 160ms ease;
}

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

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(5, 5, 6, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(calc(100% - 48px), 1400px);
  min-height: 84px;
  margin-inline: auto;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  text-decoration: none;
  line-height: 1;
}

.brand-main {
  position: relative;
  font-size: 2.05rem;
  font-weight: 950;
  letter-spacing: -0.085em;
}

.brand-main span {
  color: var(--yellow);
}

.brand-main em {
  margin-left: 0.09em;
  color: var(--red);
  font-size: 0.47em;
  font-style: normal;
  letter-spacing: -0.03em;
}

.brand-sub {
  margin-top: 6px;
  color: var(--yellow);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.brand-sub strong {
  color: var(--red-bright);
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(17px, 2.2vw, 35px);
}

.primary-nav a {
  position: relative;
  padding: 31px 0 28px;
  color: #dedde0;
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 3px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.active {
  color: #fff;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.active::after {
  transform: scaleX(1);
}

.header-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 19px;
  color: #fff;
  background: var(--red);
  border-radius: 5px;
  box-shadow: 0 10px 24px rgba(227, 19, 25, 0.22);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease;
}

.header-live:hover,
.header-live:focus-visible {
  background: var(--red-bright);
  transform: translateY(-2px);
}

.live-bars {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 20px;
}

.live-bars i {
  display: block;
  width: 2px;
  height: 45%;
  background: #fff;
  border-radius: 2px;
  animation: bounce 800ms ease-in-out infinite alternate;
}

.live-bars i:nth-child(2) { height: 95%; animation-delay: 120ms; }
.live-bars i:nth-child(3) { height: 65%; animation-delay: 240ms; }
.live-bars i:nth-child(4) { height: 35%; animation-delay: 360ms; }

@keyframes bounce {
  to { transform: scaleY(0.42); }
}

.menu-toggle {
  display: none;
  place-content: center;
  width: 46px;
  height: 46px;
  padding: 10px;
  color: #fff;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 23px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 84px);
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 32%, rgba(227, 19, 25, 0.17), transparent 29%),
    linear-gradient(108deg, #070708 0%, #0c0c0e 48%, #170407 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  scroll-margin-top: 84px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  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: 54px 54px;
  content: "";
  mask-image: linear-gradient(to right, #000, transparent 82%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -5vw;
  bottom: -125px;
  width: 58vw;
  height: 260px;
  background: repeating-linear-gradient(90deg, transparent 0 12px, rgba(227, 19, 25, 0.31) 13px 17px);
  content: "";
  opacity: 0.72;
  transform: perspective(450px) rotateX(63deg) rotateZ(-4deg);
  transform-origin: bottom;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  top: 50px;
  right: 9%;
  width: 420px;
  height: 420px;
  background: rgba(227, 19, 25, 0.24);
  border-radius: 50%;
  filter: blur(120px);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(470px, 1.06fr);
  align-items: center;
  min-height: calc(100svh - 84px);
  padding-block: 48px 58px;
  gap: clamp(40px, 5vw, 78px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 14px;
  color: var(--red-bright);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span {
  flex: 0 0 auto;
  width: 30px;
  height: 3px;
  background: currentColor;
}

.eyebrow.light {
  color: var(--yellow);
}

.hero h1,
.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.7rem, 6.6vw, 6.8rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.86;
  text-transform: uppercase;
}

.hero h1 mark,
.page-hero h1 mark {
  display: block;
  color: var(--yellow);
  background: transparent;
}

.hero-lead {
  max-width: 610px;
  margin: 22px 0 0;
  color: #d0cfd2;
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.65;
}

.hero-player {
  display: grid;
  grid-template-columns: minmax(165px, 0.75fr) minmax(285px, 1.25fr);
  margin-top: 27px;
  overflow: hidden;
  background: linear-gradient(112deg, #a5070e, var(--red) 58%, #a3070e);
  border: 1px solid rgba(255, 212, 0, 0.7);
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.42);
}

.player-station {
  display: flex;
  align-items: center;
  min-height: 90px;
  padding: 18px 20px;
  gap: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.player-station p {
  margin: 0 0 2px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.player-station h2 {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.1;
}

.pulse-dot {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 212, 0, 0.75);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(255, 212, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 212, 0, 0); }
}

.player-controls {
  display: grid;
  grid-template-columns: auto minmax(90px, 1fr) minmax(90px, 0.6fr);
  align-items: center;
  min-height: 90px;
  padding: 14px 20px;
  gap: 13px;
}

.round-play {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  padding: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.25);
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.round-play:hover,
.round-play:focus-visible,
.round-play.playing {
  color: #111;
  background: var(--yellow);
  border-color: var(--yellow);
  transform: scale(1.05);
}

.round-play span {
  margin-left: 3px;
  font-size: 1rem;
  font-weight: 900;
}

.round-play.playing span {
  margin-left: 0;
}

.player-status {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.player-status strong {
  overflow: hidden;
  font-size: 0.83rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.player-status span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.68rem;
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 7px;
}

.volume-control > span:first-child {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.volume-control input {
  width: 100%;
  min-width: 68px;
  accent-color: var(--yellow);
  cursor: pointer;
}

.app-link {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 57px;
  padding: 10px 18px;
  gap: 11px;
  background: rgba(0, 0, 0, 0.17);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  text-decoration: none;
  transition: background 160ms ease;
}

.app-link:hover,
.app-link:focus-visible {
  background: rgba(0, 0, 0, 0.3);
}

.app-icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  color: var(--red);
  background: #fff;
  border-radius: 7px;
  font-size: 1.15rem;
  font-weight: 950;
}

.app-link > span:last-child {
  display: flex;
  flex-direction: column;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
}

.app-link small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.61rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.show-times {
  display: flex;
  margin: 25px 0 0;
}

.show-times div {
  padding-right: 27px;
}

.show-times div + div {
  padding-left: 27px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.show-times dt {
  color: #8f8f95;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.show-times dd {
  margin: 3px 0 0;
  color: #fff;
  font-size: 0.96rem;
  font-weight: 850;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  top: -15px;
  right: -15px;
  width: 66%;
  height: 66%;
  border-top: 2px solid var(--yellow);
  border-right: 2px solid var(--yellow);
  content: "";
}

.image-frame {
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px 8px 0 0;
  box-shadow: var(--shadow);
}

.image-frame img {
  height: auto;
}

.host-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 14px 19px 16px;
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  border-left: 5px solid var(--yellow);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.38);
}

.host-card span {
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.host-card strong {
  margin-top: 2px;
  font-size: 1.12rem;
}

.station-band {
  background: var(--yellow);
  color: #111;
}

.station-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 96px;
}

.station-band p {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 20px 38px 20px 0;
  gap: 18px;
}

.station-band p + p {
  padding-right: 0;
  padding-left: 38px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
}

.station-band strong {
  flex: 0 0 auto;
  font-size: 1.12rem;
  font-weight: 950;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.station-band span {
  color: rgba(0, 0, 0, 0.67);
  font-size: 0.77rem;
  font-weight: 750;
}

.feature-section,
.interviews-section {
  padding-block: 92px 100px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 30px;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.section-heading .eyebrow {
  margin-bottom: 9px;
}

.section-heading h2,
.advertise-copy h2,
.artist-cta h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.96;
  text-transform: uppercase;
}

.text-link {
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-underline-offset: 6px;
  text-transform: uppercase;
}

.text-link span {
  margin-left: 6px;
  font-size: 1.15em;
}

.interview-feature {
  display: grid;
  grid-template-columns: minmax(330px, 0.86fr) minmax(0, 1.14fr);
  min-height: 480px;
  overflow: hidden;
  background: linear-gradient(120deg, #151518, #0b0b0d);
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.artist-photo {
  position: relative;
  isolation: isolate;
  min-height: 480px;
  overflow: hidden;
  background: linear-gradient(145deg, #260408, #09090b);
}

.artist-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.artist-photo::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 3, 4, 0.88) 0%, rgba(3, 3, 4, 0.12) 48%, transparent 72%);
  content: "";
  pointer-events: none;
}

.artist-photo-badge {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  gap: 18px;
  background: rgba(5, 5, 6, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 4px solid var(--yellow);
  border-radius: 5px;
  backdrop-filter: blur(10px);
}

.artist-photo-badge span {
  color: #fff;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.artist-photo-badge strong {
  color: var(--yellow);
  font-size: 0.82rem;
  white-space: nowrap;
}

.interview-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 72px);
}

.tag {
  width: max-content;
  margin: 0 0 15px;
  padding: 6px 10px;
  color: #fff;
  background: var(--red);
  border-radius: 3px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.tag.yellow {
  color: #111;
  background: var(--yellow);
}

.tag.teal {
  background: var(--teal);
}

.interview-copy h3 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(2.6rem, 4.5vw, 4.9rem);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.91;
  text-transform: uppercase;
}

.with-line {
  margin: 9px 0 23px;
  color: var(--yellow);
  font-size: 1.32rem;
  font-weight: 850;
}

.date-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 5px;
  color: var(--yellow);
  font-size: 1rem;
  font-weight: 850;
}

.date-line span {
  color: var(--red-bright);
  font-size: 0.8rem;
}

.interview-copy > p:not(.tag):not(.date-line):not(.with-line) {
  max-width: 580px;
  margin: 16px 0 26px;
  color: var(--muted);
  font-size: 1.01rem;
}

.hero-actions,
.card-actions,
.advertise-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 12px 30px rgba(227, 19, 25, 0.23);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-bright);
}

.button-outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.28);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--yellow);
}

.button-quiet {
  color: var(--yellow);
  background: transparent;
  border-color: rgba(255, 212, 0, 0.42);
}

.button-yellow {
  color: #0a0a0b;
  background: var(--yellow);
  box-shadow: 0 12px 30px rgba(255, 212, 0, 0.16);
}

.button-yellow:hover,
.button-yellow:focus-visible {
  background: #ffe23e;
}

.button-glass {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.advertise-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0a0a0c;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.advertise-backdrop {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 12% 42%, rgba(18, 90, 210, 0.27), transparent 32%),
    radial-gradient(circle at 86% 28%, rgba(227, 19, 25, 0.3), transparent 34%);
}

.advertise-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(450px, 1.16fr);
  align-items: center;
  min-height: 540px;
  padding-block: 76px 62px;
  gap: clamp(40px, 6vw, 86px);
}

.advertise-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 22px 0 0;
  color: #cac9ce;
  font-size: 1.08rem;
}

.advertise-copy .advertise-note {
  margin-top: 10px;
  color: #a9a8ae;
  font-size: 0.92rem;
}

.advertise-actions {
  margin-top: 28px;
}

.ad-benefits {
  display: grid;
  gap: 14px;
}

.ad-benefits article {
  position: relative;
  padding: 27px 30px 27px 84px;
  overflow: hidden;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 4px solid var(--yellow);
  border-radius: 7px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.ad-benefits article > span {
  position: absolute;
  top: 22px;
  left: 24px;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.ad-benefits h3 {
  margin: 0;
  font-size: 1.18rem;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.ad-benefits p {
  margin: 7px 0 0;
  color: #b9b8bd;
  font-size: 0.91rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  margin-bottom: 92px;
  overflow: hidden;
  background: #f7f7f5;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 5px solid var(--yellow);
  border-radius: 8px;
  box-shadow: var(--shadow);
  scroll-margin-top: 110px;
}

.contact-intro {
  position: relative;
  isolation: isolate;
  padding: clamp(36px, 5vw, 62px);
  overflow: hidden;
  background: linear-gradient(145deg, #8f050c, #d51219 64%, #8c050c);
}

.contact-intro::after {
  position: absolute;
  z-index: -1;
  right: -75px;
  bottom: -90px;
  width: 245px;
  height: 245px;
  border: 2px solid rgba(255, 212, 0, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255, 212, 0, 0.06), 0 0 0 58px rgba(255, 212, 0, 0.04);
  content: "";
}

.contact-intro .eyebrow {
  color: var(--yellow);
}

.contact-intro h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.95;
  text-transform: uppercase;
}

.contact-intro > p:not(.eyebrow):not(.contact-email) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.contact-email {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.83rem;
}

.contact-email a {
  color: #fff;
  font-weight: 850;
  text-underline-offset: 4px;
}

.contact-form {
  padding: clamp(34px, 5vw, 62px);
  color: #17171a;
}

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

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label > span {
  color: #313136;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.contact-form label > span strong {
  color: var(--red);
}

.contact-form label > span small {
  margin-left: 5px;
  color: #7a7a81;
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: #161619;
  background: #efeff0;
  border: 1px solid #d0d0d3;
  border-radius: 4px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form input,
.contact-form select {
  min-height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 145px;
  padding: 13px 14px;
  line-height: 1.5;
  resize: vertical;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: #ababaf;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: #fff;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(227, 19, 25, 0.12);
}

.form-full {
  grid-column: 1 / -1;
}

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

.form-footer p {
  max-width: 380px;
  margin: 0;
  color: #707077;
  font-size: 0.74rem;
}

.form-footer .button {
  min-width: 210px;
  cursor: pointer;
}

.form-status {
  min-height: 1.5em;
  margin: 14px 0 0;
  color: #68686e;
  font-size: 0.8rem;
}

.form-status p {
  margin: 0;
}

.form-notice {
  padding: 12px 14px;
  border-radius: 4px;
  font-weight: 750;
}

.form-notice.success {
  color: #17582c;
  background: #e7f7eb;
  border: 1px solid #9bd3a9;
}

.form-notice.error {
  color: #821017;
  background: #fff0f0;
  border: 1px solid #e7a6aa;
}

.contact-form .miradio-hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.site-footer {
  padding: 54px 0 24px;
  background: #030304;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding-bottom: 38px;
  gap: 55px;
}

.footer-brand .brand-main {
  font-size: 1.82rem;
}

.footer-details {
  color: #a8a8ad;
  font-size: 0.84rem;
}

.footer-details p {
  margin: 4px 0;
}

.footer-details a,
.footer-nav a {
  text-decoration: none;
}

.footer-details a:hover,
.footer-details a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--yellow);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  color: #707077;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.74rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  text-underline-offset: 4px;
}

/* Interviews */
.page-hero {
  position: relative;
  isolation: isolate;
  min-height: 390px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 35%, rgba(255, 212, 0, 0.1), transparent 22%),
    linear-gradient(105deg, #060607 0%, #1e0508 62%, #7b060c 100%);
  border-bottom: 1px solid var(--red);
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  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: 46px 46px;
  content: "";
  mask-image: linear-gradient(to right, #000, transparent 85%);
}

.page-hero-pattern {
  position: absolute;
  z-index: -1;
  right: -40px;
  bottom: -105px;
  width: 520px;
  height: 270px;
  background-image: radial-gradient(circle, rgba(255, 212, 0, 0.34) 2px, transparent 2.5px);
  background-size: 18px 18px;
  opacity: 0.72;
  transform: rotate(-9deg);
}

.page-hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 390px;
  padding-block: 54px;
}

.page-hero h1 {
  max-width: 1050px;
}

.page-hero h1 mark {
  display: inline;
}

.page-hero p:last-child {
  margin: 23px 0 0;
  color: #d2d2d4;
  font-size: 1.12rem;
}

.spotlight-card {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  overflow: hidden;
  background: linear-gradient(132deg, #151518, #0b0b0d);
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.poster-large {
  min-height: 620px;
}

.spotlight-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 6vw, 78px);
}

.spotlight-content h2 {
  margin: 0;
  font-size: clamp(3.2rem, 5.6vw, 6rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.84;
  text-transform: uppercase;
}

.event-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 27px;
  padding-block: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.event-details > div {
  display: flex;
  align-items: center;
  min-width: 0;
  padding-right: 13px;
  gap: 10px;
}

.event-details > div + div {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.event-details > div > span {
  color: var(--red-bright);
  font-size: 0.68rem;
  font-weight: 950;
}

.event-details p {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin: 0;
}

.event-details small {
  color: #83838a;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.event-details strong {
  overflow: hidden;
  font-size: 0.77rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.spotlight-content > p:not(.tag):not(.with-line) {
  max-width: 620px;
  margin: 0 0 27px;
  color: var(--muted);
  font-size: 1rem;
}

.music-section {
  padding-block: 94px 104px;
  background: #0d0d0f;
  border-block: 1px solid rgba(255, 255, 255, 0.07);
}

.section-note {
  margin: 0;
  color: #87878d;
  font-size: 0.8rem;
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.music-card {
  overflow: hidden;
  background: #151518;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.26);
  transition: transform 180ms ease, border-color 180ms ease;
}

.music-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.music-art {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 250px;
  padding: 25px;
  overflow: hidden;
}

.music-art::before,
.music-art::after {
  position: absolute;
  content: "";
}

.music-art::before {
  top: -80px;
  right: -60px;
  width: 240px;
  height: 240px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255, 255, 255, 0.04), 0 0 0 58px rgba(255, 255, 255, 0.03);
}

.music-art::after {
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent 65%);
}

.accent-red .music-art { background: linear-gradient(135deg, #170509, #cc1018 55%, #3f0409); }
.accent-yellow .music-art { background: linear-gradient(135deg, #211b01, #b99500 55%, #463800); }
.accent-teal .music-art { background: linear-gradient(135deg, #04201e, #07887f 55%, #073633); }

.music-art span,
.music-art i {
  position: relative;
  z-index: 1;
}

.music-art span {
  font-size: clamp(2.3rem, 3.8vw, 4rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.music-art i {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.music-info {
  padding: 27px 27px 30px;
}

.music-info h3 {
  margin: 0;
  font-size: 1.38rem;
  line-height: 1.15;
}

.music-info > p:not(.tag) {
  min-height: 68px;
  margin: 12px 0 20px;
  color: #a9a9af;
  font-size: 0.88rem;
}

.music-info a {
  color: var(--yellow);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.artist-cta {
  background: linear-gradient(105deg, #a50710, #df141b 54%, #87050c);
}

.artist-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 230px;
  padding-block: 45px;
  gap: 40px;
}

.artist-cta h2 {
  max-width: 820px;
}

/* Legal */
.legal-page {
  min-height: calc(100vh - 84px);
  background: var(--paper);
  color: #202023;
}

.legal-hero {
  padding: 76px 0 66px;
  color: #fff;
  background: linear-gradient(115deg, #09090a, #250407 72%, #86070d);
  border-bottom: 5px solid var(--yellow);
}

.legal-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 0.9;
  text-transform: uppercase;
}

.legal-hero > .shell > p:last-child {
  margin: 22px 0 0;
  color: #bebdc2;
  font-size: 0.82rem;
}

.legal-content {
  max-width: 900px;
  padding-block: 64px 88px;
}

.legal-content > p:first-child {
  margin-top: 0;
  padding-bottom: 30px;
  color: #4e4e55;
  border-bottom: 1px solid #d7d4cc;
  font-size: 1.12rem;
  line-height: 1.7;
}

.legal-content h2 {
  margin: 40px 0 9px;
  color: #151518;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.legal-content p {
  color: #4c4b50;
  line-height: 1.75;
}

.legal-content a {
  color: #a1060d;
  font-weight: 800;
  text-underline-offset: 4px;
}

.legal-footer {
  padding-top: 24px;
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
    justify-self: end;
  }

  .primary-nav {
    position: absolute;
    top: 84px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 24px 20px;
    background: #080809;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 35px rgba(0, 0, 0, 0.38);
    gap: 0;
  }

  .primary-nav.open {
    display: flex;
  }

  .primary-nav a {
    padding: 15px 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .primary-nav a::after {
    bottom: -1px;
  }

  .header-live {
    grid-column: 2;
    grid-row: 1;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.88fr);
  }

  .hero-player {
    grid-template-columns: 1fr;
  }

  .player-station {
    min-height: 66px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .player-controls {
    min-height: 82px;
  }

  .footer-main {
    grid-template-columns: auto 1fr;
  }

  .footer-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .spotlight-card {
    grid-template-columns: 0.78fr 1.22fr;
  }

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

  .event-details > div,
  .event-details > div + div {
    padding: 7px 0;
    border: 0;
  }
}

@media (max-width: 900px) {
  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-block: 62px 82px;
    gap: 52px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    max-width: 760px;
  }

  .station-band p {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
  }

  .interview-feature,
  .spotlight-card {
    grid-template-columns: 1fr;
  }

  .artist-photo,
  .poster-large {
    min-height: 440px;
  }

  .advertise-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 72px;
  }

  .ad-benefits {
    max-width: 760px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    margin-bottom: 72px;
  }

  .music-grid {
    grid-template-columns: 1fr;
  }

  .music-card {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
  }

  .music-art {
    min-height: 280px;
  }

  .music-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .music-info > p:not(.tag) {
    min-height: auto;
  }

  .artist-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .shell,
  .header-inner {
    width: min(calc(100% - 28px), var(--shell));
  }

  .header-inner {
    min-height: 76px;
    gap: 12px;
  }

  .brand-main {
    font-size: 1.75rem;
  }

  .brand-sub {
    max-width: 220px;
    overflow: hidden;
    font-size: 0.55rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-live {
    display: none;
  }

  .menu-toggle {
    grid-column: 3;
  }

  .primary-nav {
    top: 76px;
  }

  .hero-inner {
    padding-block: 50px 66px;
    gap: 44px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .hero-lead {
    margin-top: 19px;
  }

  .hero-player {
    margin-top: 23px;
  }

  .player-controls {
    grid-template-columns: auto 1fr;
    padding: 15px 17px;
  }

  .volume-control {
    grid-column: 1 / -1;
  }

  .app-link {
    justify-content: flex-start;
  }

  .show-times {
    flex-direction: column;
    gap: 12px;
  }

  .show-times div,
  .show-times div + div {
    padding: 0;
    border: 0;
  }

  .station-band-inner {
    grid-template-columns: 1fr;
  }

  .station-band p,
  .station-band p + p {
    padding: 18px 0;
    border: 0;
  }

  .station-band p + p {
    border-top: 1px solid rgba(0, 0, 0, 0.18);
  }

  .feature-section,
  .interviews-section {
    padding-block: 70px 76px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 25px;
    gap: 14px;
  }

  .section-heading h2,
  .advertise-copy h2 {
    font-size: 2.45rem;
  }

  .artist-photo,
  .poster-large {
    min-height: 380px;
  }

  .artist-photo-badge {
    right: 18px;
    bottom: 18px;
    left: 18px;
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .interview-copy,
  .spotlight-content {
    padding: 34px 25px 39px;
  }

  .interview-copy h3,
  .spotlight-content h2 {
    font-size: 2.75rem;
  }

  .advertise-inner {
    gap: 36px;
  }

  .contact-intro,
  .contact-form {
    padding: 37px 26px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-full {
    grid-column: auto;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer .button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-nav {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .page-hero,
  .page-hero-inner {
    min-height: 340px;
  }

  .music-card {
    display: block;
  }

  .music-art {
    min-height: 230px;
  }

  .artist-cta-inner {
    min-height: 290px;
  }

  .hero-actions,
  .advertise-actions,
  .card-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .legal-hero {
    padding-block: 62px 54px;
  }

  .legal-content {
    padding-block: 48px 66px;
  }
}

@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;
  }
}


/* Full-page WordPress canvas safeguards */
html, body {
  width: 100%;
  min-width: 0;
  margin: 0 !important;
  padding: 0 !important;
  background: #070708 !important;
}

#miradio-page {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  color: #f8f7f3;
  background: #070708;
}

.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}
