:root {
  --black: #050505;
  --white: #fff;
  --red: #cf3434;
  --header-height: 86px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: "Inter", Arial, sans-serif;
}

.production-switcher {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto;
  display: flex;
  height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255,255,255,.16);
  background: #050505;
  color: #cfcfcf;
  font: 700 11px/1 "Inter", Arial, sans-serif;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.production-switcher a { padding: 0 12px; color: inherit; text-decoration: none; }
.production-switcher a + a { border-left: 1px solid rgba(255,255,255,.3); }
.production-switcher a:hover,
.production-switcher a:focus-visible,
.production-switcher .is-current { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }

a { color: inherit; }
img, video { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--black);
  background: var(--white);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 30px;
  left: 0;
  display: flex;
  width: 100%;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 13px clamp(22px, 3.5vw, 58px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(3,3,3,.88);
  backdrop-filter: blur(12px);
  transition: min-height .25s ease, background-color .25s ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  background: rgba(3,3,3,.96);
}

.brand { flex: 0 1 500px; }
.brand img { width: min(500px, 40vw); }

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 38px);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(13px, 1.05vw, 18px);
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}

.primary-nav a {
  position: relative;
  text-decoration: none;
  transition: color .2s ease;
}

.primary-nav a:not(.primary-nav__cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transition: transform .2s ease;
}

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

.primary-nav__cta {
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,.58);
  transition: color .2s ease, border-color .2s ease, background-color .2s ease !important;
}

.primary-nav__cta:hover,
.primary-nav__cta:focus-visible {
  color: var(--white) !important;
  border-color: var(--red);
  background: var(--red);
}

.menu-toggle { display: none; }

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 75px) 24px 48px;
  background: #080a0e url("../../uploads/2025/07/Image.png") center / cover no-repeat;
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media { object-fit: cover; }

.hero__shade {
  background:
    linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.08) 52%, rgba(0,0,0,.7)),
    radial-gradient(circle at center, transparent 20%, rgba(0,0,0,.38) 100%);
}

.hero__content {
  position: relative;
  display: flex;
  width: min(720px, 90vw);
  align-items: center;
  flex-direction: column;
  text-align: center;
  animation: hero-in .9s .15s both ease-out;
}

.hero__art {
  width: min(430px, 67vw);
  filter: drop-shadow(0 8px 22px rgba(0,0,0,.65));
}

.hero__tagline {
  margin: 25px 0 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(18px, 1.8vw, 29px);
  line-height: 1.08;
  text-transform: uppercase;
  text-shadow: 0 3px 14px #000;
}

.archive-context {
  display: grid;
  width: 100%;
  margin: 0;
  place-items: center;
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: #080808;
  color: rgba(255,255,255,.78);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 600;
  letter-spacing: .06em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}

.archive-context p { margin: 0; }

.archive-context__cast {
  margin-top: 6px !important;
  color: rgba(255,255,255,.62);
  font-family: "Inter", Arial, sans-serif;
  font-size: .88em;
  font-weight: 400;
  letter-spacing: .01em;
  text-transform: none;
}

.song-ticker {
  width: 100%;
  overflow: hidden;
  padding-block: 25px;
  background: #08111d url("../../uploads/2025/04/RTV-Cast-Banner.jpg") left top / cover no-repeat;
}

.song-ticker__track {
  display: flex;
  width: max-content;
  animation: song-ticker 44s linear infinite;
}

.song-ticker__set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.song-ticker h2 {
  display: flex;
  min-width: clamp(210px, 24vw, 340px);
  min-height: 180px;
  flex: 0 0 auto;
  margin: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 26px 28px;
  color: #d7242b;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: .88;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.song-ticker h2 span { display: block; }

@keyframes song-ticker {
  to { transform: translateX(-50%); }
}

.video-section {
  padding: 65px clamp(22px, 3.5vw, 56px);
  background: #8c663e url("../../uploads/2025/04/RTV25-Background.jpg") center / cover no-repeat;
}

.video-section__grid {
  display: grid;
  width: min(1500px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
}

.video-embed {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-embed__poster {
  position: absolute;
  inset: 0;
  display: block;
}

.video-embed__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-embed__poster::after {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.08);
  content: "";
  transition: background-color .2s ease;
}

.video-embed__poster:hover::after,
.video-embed__poster:focus-visible::after { background: rgba(0,0,0,.25); }

.video-embed__play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 66px;
  height: 46px;
  border-radius: 12px;
  background: #f03;
  transform: translate(-50%, -50%);
}

.video-embed__play::after {
  position: absolute;
  top: 50%;
  left: 52%;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 17px solid #fff;
  content: "";
  transform: translate(-50%, -50%);
}

.review {
  position: relative;
  min-height: 850px;
  padding: 84px 24px 75px;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

.review::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,10,20,.2) 0%, rgba(2,10,20,.27) 38%, rgba(2,10,20,.38) 100%);
  content: "";
  pointer-events: none;
}

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

.review--first {
  background-image: url("../../uploads/2025/04/RTV-Cast-Banner.jpg");
}

.review__carousel {
  position: relative;
  width: min(912px, 100%);
  min-height: 174px;
  margin: 0 auto;
}

.review__quote {
  position: absolute;
  inset: 0;
  width: 100%;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transition: opacity .7s ease;
}

.review__quote.is-active { opacity: 1; pointer-events: auto; }

.review__quote blockquote {
  margin: 0;
  color: #ee862c;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(36px, 3.6vw, 45.6px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.review__quote figcaption {
  margin-top: 7px;
  color: var(--white);
  font-size: 16px;
  line-height: 28px;
}

.about-copy {
  width: min(707px, 100%);
  margin: 45px auto 0;
  color: var(--white);
  font-size: 16px;
  line-height: 28px;
}

.about-copy p {
  margin: 0 0 22px;
  text-align: justify;
}

.about-copy p:last-child { margin-bottom: 0; }

.about-logo {
  width: min(707px, 100%);
  margin: 29px auto 0;
}

.about-logo img { width: 100%; }

.photo-gallery {
  display: grid;
  width: 100%;
  background: #000;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.photo-gallery a {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  background: #080808;
}

.photo-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter .25s ease, transform .35s ease;
}

.photo-gallery a:hover img,
.photo-gallery a:focus-visible img {
  filter: brightness(.75);
  transform: scale(1.025);
}

.photo-credit {
  margin: 0;
  padding: 18px 24px 20px;
  color: rgba(255,255,255,.82);
  background: #000;
  font-size: 14px;
  text-align: center;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  padding: 54px;
  border: 0;
  background: rgba(0,0,0,.94);
}

.lightbox::backdrop { background: rgba(0,0,0,.86); }

.lightbox[open] { display: grid; place-items: center; }

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lightbox__close {
  position: fixed;
  z-index: 2;
  top: 12px;
  right: 22px;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  font: 300 44px/1 Arial, sans-serif;
  cursor: pointer;
}

.contact-modal {
  width: min(520px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  padding: 46px clamp(26px, 5vw, 52px);
  border: 1px solid rgba(255,255,255,.22);
  color: var(--white);
  background: #0b0b0b;
  box-shadow: 0 24px 80px rgba(0,0,0,.7);
  text-align: center;
}

.contact-modal::backdrop { background: rgba(0,0,0,.78); }
.contact-modal p { line-height: 1.6; }
.contact-modal__eyebrow { margin: 0; color: var(--red); font: 700 12px/1 "Montserrat", Arial, sans-serif; letter-spacing: .16em; text-transform: uppercase; }
.contact-modal__logo { width: min(290px, 78%); height: auto; margin: 30px auto 28px; }
.contact-modal__email { display: inline-block; margin-top: 12px; color: var(--white); font-weight: 600; overflow-wrap: anywhere; text-underline-offset: 4px; }
.contact-modal__email:hover,
.contact-modal__email:focus-visible { color: var(--red); }
.contact-modal__close { position: absolute; top: 12px; right: 16px; padding: 4px; border: 0; color: var(--white); background: transparent; font: 300 34px/1 Arial, sans-serif; cursor: pointer; }
.contact-form { display: grid; gap: 16px; margin-top: 28px; text-align: left; }
.contact-form label { display: grid; gap: 7px; color: var(--red); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px 13px; border: 1px solid rgba(255,255,255,.3); border-radius: 0; color: var(--white); background: #050505; font: inherit; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--red); outline: 2px solid rgba(224,50,43,.22); }
.contact-submit { padding: 14px 18px; border: 0; color: var(--white); background: var(--red); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.contact-submit:disabled { cursor: wait; opacity: .65; }
.contact-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.contact-status { margin: 0; color: #ffb7a8; font-size: .86rem; line-height: 1.45; text-align: left; }
.contact-status.is-success { color: #bce5af; }

.site-footer {
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.72);
  background: #050505;
}

.site-footer nav { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px 0; }
.site-footer a { padding: 0 16px; font: 600 11px/1.4 "Montserrat", Arial, sans-serif; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.site-footer a + a { border-left: 1px solid rgba(255,255,255,.25); }
.site-footer a:hover,
.site-footer a:focus-visible { color: var(--red); text-decoration: underline; text-underline-offset: 4px; }

@keyframes hero-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  :root { --header-height: 72px; }
  .brand img { width: min(390px, 61vw); }

  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0 10px 12px;
    border: 0;
    color: var(--white);
    background: transparent;
    font: 600 12px "Montserrat", sans-serif;
    letter-spacing: .09em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .menu-toggle__lines { display: grid; gap: 4px; }
  .menu-toggle__lines i { display: block; width: 24px; height: 2px; background: currentColor; transition: transform .2s, opacity .2s; }
  .menu-toggle[aria-expanded="true"] i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 15px 24px 24px;
    background: rgba(3,3,3,.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s, transform .2s;
  }

  .primary-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .primary-nav a { padding: 14px 0; }
  .primary-nav a::after { display: none; }
  .primary-nav__cta { margin-top: 10px; text-align: center; }
  .video-section__grid { grid-template-columns: 1fr; width: min(620px, 100%); gap: 32px; }
  .photo-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .site-header { padding-inline: 18px; }
  .menu-toggle__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
  .hero { min-height: 100svh; padding-inline: 18px; }
  .hero__art { width: min(380px, 79vw); }
  .hero__tagline { margin-top: 18px; }
  .song-ticker h2 { min-width: 190px; min-height: 150px; padding: 22px 20px; font-size: 29px; }
  .review { min-height: 680px; padding-top: 64px; }
  .photo-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lightbox { padding: 44px 12px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero__media { display: none; }
  .song-ticker { overflow-x: auto; }
  .song-ticker__track { animation: none; }
}
