:root {
  color-scheme: light;
  --ink: #17201c;
  --muted: #5b655f;
  --paper: #f7f4ed;
  --panel: #fffaf0;
  --line: #ded4c3;
  --green: #0d6b57;
  --green-dark: #084538;
  --coral: #d94f35;
  --gold: #e3a82b;
  --blue: #245c8f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px clamp(16px, 3vw, 40px);
  background: rgba(247, 244, 237, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 160px;
}

.brand-logo {
  display: block;
  width: 58px;
  height: 34px;
  border-radius: 4px;
  object-fit: contain;
  background: #02050b;
  box-shadow: 0 0 18px rgba(36, 92, 143, 0.42);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.1;
  font-size: 0.95rem;
}

.brand small,
.eyebrow {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

nav a {
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 700;
}

nav a:hover {
  background: #ece5d8;
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 64vh;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  align-items: center;
  gap: clamp(22px, 4vw, 56px);
  padding: clamp(28px, 5vw, 62px) clamp(18px, 5vw, 68px);
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 40%, rgba(39, 132, 226, 0.24), transparent 35%),
    linear-gradient(135deg, #02050b 0%, #0d1d36 45%, #fffaf0 46%, var(--paper) 100%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 16px;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--gold), var(--coral), var(--blue));
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero h1 {
  margin: 8px 0 16px;
  font-size: clamp(2.25rem, 4.9vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero p {
  max-width: 520px;
  color: #36413b;
  font-size: clamp(0.98rem, 1.5vw, 1.16rem);
  margin: 8px 0;
}

.hero p strong,
.about-section p strong,
.live-section p strong,
.contact-section p strong {
  color: var(--coral);
}

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

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  background: rgba(2, 5, 11, 0.64);
  color: white;
  font-weight: 800;
}

.social-links img {
  width: 17px;
  height: 17px;
  display: block;
  filter: brightness(0) invert(1);
}

.social-links a:hover {
  background: var(--blue);
}

.social-links .instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.social-links .facebook {
  background: #1877f2;
}

.social-links .youtube {
  background: #ff0033;
}

.social-links .tiktok {
  background: #111111;
}

.contact-social a {
  border-color: #bcae97;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

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

.button.ghost {
  border-color: #bcae97;
  background: rgba(255, 250, 240, 0.7);
}

.hero-media {
  position: relative;
  display: grid;
  min-height: 330px;
  place-items: center;
}

.hero-logo {
  width: min(100%, 500px);
  max-height: 310px;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 0 28px rgba(82, 172, 255, 0.66));
}

.broadcast-ring {
  position: absolute;
  border: 2px solid rgba(13, 107, 87, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-one {
  top: 50%;
  left: 50%;
  width: 210px;
  height: 210px;
}

.ring-two {
  top: 50%;
  left: 50%;
  width: 360px;
  height: 360px;
}

.ring-three {
  top: 50%;
  left: 50%;
  width: 520px;
  height: 520px;
}

.studio-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: min(92%, 420px);
  aspect-ratio: 1 / 1.08;
  padding: 34px;
  place-items: center;
  transform: translate(-50%, -50%) rotate(-3deg);
  border: 1px solid #2d3832;
  border-radius: 8px;
  background:
    radial-gradient(circle at 68% 34%, rgba(227, 168, 43, 0.24), transparent 28%),
    linear-gradient(145deg, #1b2722, #30463d);
  box-shadow: 0 32px 70px rgba(23, 32, 28, 0.24);
}

.dial {
  width: 150px;
  height: 150px;
  border: 16px solid #fff1d2;
  border-radius: 50%;
  background: conic-gradient(from 40deg, var(--coral), var(--gold), var(--green), var(--blue), var(--coral));
  box-shadow: inset 0 0 0 24px #17201c;
}

.meter-row,
.waveform,
.levels {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 8px;
}

.meter-row span {
  width: 36px;
  height: 12px;
  border-radius: 999px;
  background: var(--gold);
}

.meter-row span:nth-child(2),
.meter-row span:nth-child(4) {
  background: var(--coral);
}

.waveform i {
  display: block;
  width: 12px;
  height: 42px;
  border-radius: 999px;
  background: #fff1d2;
  animation: pulse 1.2s infinite ease-in-out;
}

.waveform i:nth-child(2n) {
  height: 76px;
  animation-delay: 0.15s;
}

.waveform i:nth-child(3n) {
  height: 58px;
  animation-delay: 0.28s;
}

.live-section,
.about-section,
.presentation-section,
.contact-section,
.content-band,
.schedule-section {
  padding: clamp(32px, 5vw, 58px) clamp(18px, 5vw, 68px);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  background: #fffdf7;
  border-bottom: 1px solid var(--line);
}

.about-section p {
  max-width: 760px;
  margin: 0 0 16px;
  color: #36413b;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.presentation-section {
  background: #f3efe5;
  border-bottom: 1px solid var(--line);
}

.presentation-copy {
  max-width: 920px;
}

.presentation-copy p {
  color: #36413b;
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  margin: 0 0 14px;
}

.presentation-copy blockquote {
  margin: 22px 0;
  padding: 16px 20px;
  border-left: 5px solid var(--coral);
  background: #fffaf0;
  color: var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 800;
}

.presentation-copy .signature {
  margin-top: 18px;
}

.bottom-image-section {
  padding: clamp(26px, 5vw, 54px) clamp(18px, 5vw, 68px);
  background: #02050b;
}

.image-slider {
  position: relative;
  width: min(100%, 980px);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

.slider-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.slider-image.is-active {
  opacity: 1;
  transform: translateX(0);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.slider-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
}

.slider-dots button.is-active {
  width: 32px;
  background: var(--gold);
}

.live-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 28px;
  align-items: center;
  background: #17201c;
  color: white;
}

.live-section p {
  color: #d8e2dc;
}

.player {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 22%, rgba(248, 205, 87, 0.26), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.24);
}

.play-button {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffe587, var(--gold) 58%, #f08f55);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(248, 205, 87, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.play-button:hover {
  transform: translateY(-2px);
}

.player.is-playing .play-button {
  box-shadow: 0 0 0 8px rgba(248, 205, 87, 0.12), 0 16px 36px rgba(248, 205, 87, 0.35);
}

.play-icon {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid currentColor;
}

.play-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.player.is-playing .play-icon {
  width: 24px;
  height: 28px;
  margin-left: 0;
  border: 0;
  background: linear-gradient(90deg, currentColor 0 35%, transparent 35% 65%, currentColor 65%);
}

.now-playing strong,
.now-playing span {
  display: block;
}

.now-playing span {
  color: #cbd9d2;
}

.levels {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 58px;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(11, 24, 20, 0.34);
  overflow: hidden;
}

.levels span {
  width: min(7vw, 12px);
  height: 16px;
  border-radius: 999px 999px 3px 3px;
  background: linear-gradient(180deg, var(--gold), var(--coral));
  opacity: 0.5;
  transform-origin: bottom;
}

.player.is-playing .levels span {
  animation: equalize 1s infinite ease-in-out;
}

.levels span:nth-child(1) { height: 18px; animation-delay: 0s; }
.levels span:nth-child(2) { height: 34px; animation-delay: 0.11s; }
.levels span:nth-child(3) { height: 24px; animation-delay: 0.04s; }
.levels span:nth-child(4) { height: 46px; animation-delay: 0.19s; }
.levels span:nth-child(5) { height: 28px; animation-delay: 0.08s; }
.levels span:nth-child(6) { height: 52px; animation-delay: 0.24s; }
.levels span:nth-child(7) { height: 40px; animation-delay: 0.15s; }
.levels span:nth-child(8) { height: 22px; animation-delay: 0.28s; }
.levels span:nth-child(9) { height: 48px; animation-delay: 0.06s; }
.levels span:nth-child(10) { height: 30px; animation-delay: 0.21s; }
.levels span:nth-child(11) { height: 38px; animation-delay: 0.12s; }
.levels span:nth-child(12) { height: 20px; animation-delay: 0.31s; }

.section-heading {
  max-width: 680px;
  margin-bottom: 24px;
}

h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.85rem);
  line-height: 1;
  letter-spacing: 0;
}

.show-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.show-card {
  min-height: 200px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.show-card span {
  display: inline-block;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.show-card h3 {
  margin: 24px 0 8px;
  font-size: 1.28rem;
}

.show-card p,
.contact-section p {
  color: var(--muted);
}

.contact-phone a,
footer a {
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.show-card p {
  font-size: 0.95rem;
}

.schedule-section {
  background: #ece5d8;
}

.schedule-list {
  display: grid;
  gap: 10px;
}

.schedule-list div {
  display: grid;
  grid-template-columns: 120px 1fr 170px;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #cabda7;
}

.schedule-list time {
  color: var(--green-dark);
  font-weight: 800;
}

.schedule-list span {
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: 28px;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #bcae97;
  border-radius: 6px;
  background: #fffdf7;
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
}

textarea {
  resize: vertical;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(18px, 6vw, 88px);
  background: var(--green-dark);
  color: white;
}

footer p {
  margin: 0;
}

@keyframes pulse {
  0%, 100% { transform: scaleY(0.45); opacity: 0.6; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes equalize {
  0%, 100% { transform: scaleY(0.36); opacity: 0.45; }
  25% { transform: scaleY(0.95); opacity: 0.95; }
  50% { transform: scaleY(0.62); opacity: 0.7; }
  75% { transform: scaleY(1.14); opacity: 1; }
}

@media (max-width: 820px) {
  .site-header {
    position: static;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    padding: 8px 12px;
  }

  nav {
    justify-content: flex-end;
    gap: 2px;
    font-size: 0.82rem;
  }

  nav a {
    padding: 6px 5px;
  }

  .brand {
    gap: 8px;
    min-width: 132px;
  }

  .brand-logo {
    width: 48px;
    height: 28px;
  }

  .brand strong {
    font-size: 0.78rem;
  }

  .brand small {
    display: none;
  }

  .hero,
  .about-section,
  .live-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 14px;
    padding: 20px 16px 28px;
  }

  .hero-media {
    order: -1;
    min-height: 190px;
  }

  .hero-logo {
    width: min(100%, 300px);
    max-height: 180px;
  }

  .ring-three {
    width: 390px;
    height: 390px;
  }

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

  .schedule-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .brand {
    min-width: 0;
  }

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

  .hero p {
    font-size: 0.94rem;
  }

  .social-links a {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 0.86rem;
  }

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

  .play-button {
    width: 72px;
    height: 72px;
  }
}
