:root {
  --red: #c0392b;
  --red-strong: #a93226;
  --gold: #c9972a;
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #1c1c1c;
  --dark-4: #262626;
  --gray: #777777;
  --gray-light: #aaaaaa;
  --gray-soft: rgba(255, 255, 255, 0.07);
  --gray-soft-2: rgba(255, 255, 255, 0.12);
  --white: #ffffff;
  --success: #2ecc71;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--white);
  font-family: "Instrument Sans", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

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

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

[hidden] {
  display: none !important;
}

.ticker-wrap {
  background: var(--red);
  overflow: hidden;
  padding: 8px 0;
  position: relative;
  z-index: 200;
}

.ticker-track {
  animation: ticker 32s linear infinite;
  display: flex;
  white-space: nowrap;
  width: max-content;
}

.ticker-item {
  color: var(--white);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 0 34px;
  text-transform: uppercase;
}

.ticker-item::before {
  content: "o ";
  opacity: 0.6;
}

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

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

.site-nav {
  align-items: center;
  backdrop-filter: blur(20px);
  background: rgba(10, 10, 10, 0.96);
  border-bottom: 1px solid var(--gray-soft);
  display: flex;
  height: 68px;
  justify-content: space-between;
  padding: 0 48px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo,
.footer-brand .logo {
  background: none;
  border: 0;
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.nav-logo {
  cursor: pointer;
}

.nav-logo em,
.footer-brand .logo em {
  color: var(--red);
  font-style: normal;
}

.nav-actions {
  align-items: center;
  display: flex;
  gap: 14px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 28px;
}

.nav-link,
.see-all,
.footer-col button {
  background: none;
  border: 0;
  color: var(--gray-light);
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-link:hover,
.footer-col button:hover {
  color: var(--white);
}

.nav-link.active {
  color: var(--red);
}

.nav-cta,
.btn-primary,
.submit-btn {
  background: var(--red);
  border: 0;
  border-radius: 2px;
  color: var(--white);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 14px 28px;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta {
  font-size: 11px;
  padding: 10px 18px;
}

.nav-cta:hover,
.btn-primary:hover,
.submit-btn:hover {
  background: var(--red-strong);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  color: var(--white);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 14px 28px;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--white);
}

.nav-hamburger {
  background: none;
  border: 0;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-hamburger span {
  background: var(--white);
  display: block;
  height: 2px;
  width: 24px;
}

.mobile-nav {
  align-items: center;
  background: rgba(0, 0, 0, 0.97);
  display: flex;
  flex-direction: column;
  gap: 28px;
  inset: 0;
  justify-content: center;
  position: fixed;
  z-index: 999;
}

.mobile-close {
  background: none;
  border: 0;
  color: var(--white);
  cursor: pointer;
  font-size: 30px;
  position: absolute;
  right: 24px;
  top: 24px;
}

.mobile-nav-link {
  background: none;
  border: 0;
  color: var(--white);
  cursor: pointer;
  font-family: "Playfair Display", serif;
  font-size: 34px;
  font-weight: 900;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: var(--red);
}

.page {
  display: none;
}

.page.active {
  display: block;
}

.page-top {
  padding-top: 56px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  min-height: 90vh;
  overflow: hidden;
  position: relative;
}

.hero-left {
  border-right: 1px solid var(--gray-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 88px 48px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  align-items: center;
  color: var(--gold);
  display: flex;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  gap: 10px;
  letter-spacing: 0.18em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-dot {
  animation: pulse 1.5s infinite;
  background: var(--red);
  border-radius: 50%;
  height: 6px;
  width: 6px;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.45;
    transform: scale(0.8);
  }
}

.hero-headline,
.about-hero h1,
.show-title,
.section-hdr h2,
.team-section h2,
.contact-left h1,
.contact-right h2,
.modal-panel h2 {
  font-family: "Playfair Display", serif;
}

.hero-headline {
  font-size: clamp(44px, 5.6vw, 78px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 24px;
}

.hero-headline em,
.about-hero h1 em,
.contact-left h1 em,
.footer-bottom em {
  color: var(--red);
  font-style: normal;
}

.hero-sub {
  color: var(--gray-light);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-right {
  background: var(--dark-2);
  display: flex;
  flex-direction: column;
}

.hero-featured {
  background: linear-gradient(180deg, var(--dark-3) 0%, rgba(10, 10, 10, 0.32) 100%);
  cursor: pointer;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  overflow: hidden;
  padding: 40px;
  position: relative;
}

.hero-featured::before {
  background: linear-gradient(180deg, transparent 18%, rgba(0, 0, 0, 0.9) 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-featured-img {
  inset: 0;
  position: absolute;
}

.hero-featured-img::after {
  background: repeating-linear-gradient(
    45deg,
    rgba(192, 57, 43, 0.03) 0,
    rgba(192, 57, 43, 0.03) 1px,
    transparent 1px,
    transparent 40px
  );
  content: "";
  inset: 0;
  position: absolute;
}

.hero-featured-content {
  position: relative;
  z-index: 2;
}

.hero-featured h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.hero-featured-meta,
.hero-side-item .meta,
.news-card-meta,
.video-card-info .meta,
.show-ep-count,
.about-mission-label,
.contact-info-item h4,
.contact-socials h4,
.form-group label,
.footer-col h4,
.footer-phrase,
.modal-meta {
  font-family: "DM Mono", monospace;
}

.hero-featured-meta {
  color: var(--gray-light);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-side {
  border-top: 1px solid var(--gray-soft);
}

.hero-side-item {
  align-items: center;
  border-bottom: 1px solid var(--gray-soft);
  cursor: pointer;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 20px 40px;
  transition: background 0.2s ease;
}

.hero-side-item:hover {
  background: var(--dark-3);
}

.hero-side-item h4 {
  font-family: "Playfair Display", serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 6px;
}

.hero-side-item .meta {
  color: var(--gray);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-side-num {
  color: rgba(255, 255, 255, 0.07);
  font-family: "Playfair Display", serif;
  font-size: 34px;
  font-weight: 900;
}

.tag,
.cat-btn {
  border-radius: 2px;
  display: inline-flex;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tag {
  align-items: center;
  background: var(--red);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  padding: 5px 10px;
}

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

.tag.dark {
  background: var(--dark-4);
  border: 1px solid var(--gray-soft);
}

.tag.accent {
  background: #8e44ad;
}

.divider {
  background: var(--gray-soft);
  height: 1px;
}

.section-hdr {
  align-items: center;
  border-bottom: 1px solid var(--gray-soft);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 48px 48px 24px;
}

.section-hdr-left {
  align-items: center;
  display: flex;
  gap: 16px;
}

.section-hdr-bar {
  background: var(--red);
  height: 28px;
  width: 4px;
}

.section-hdr h2 {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.section-hdr-sub {
  color: var(--gray);
  font-size: 12px;
  margin-top: 4px;
}

.see-all {
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.see-all:hover {
  opacity: 0.7;
}

.news-grid,
.shows-grid,
.videos-grid,
.about-values {
  background: var(--gray-soft);
  display: grid;
  gap: 1px;
}

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

.home-news-grid {
  margin-top: 0;
}

.news-card,
.video-card,
.show-card,
.value-card,
.team-card {
  background: var(--dark);
}

.news-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.news-card:hover {
  background: var(--dark-3);
  transform: translateY(-2px);
}

.news-card-img,
.video-thumb {
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.news-card-img {
  height: 180px;
}

.img-ph {
  align-items: center;
  color: rgba(255, 255, 255, 0.18);
  display: flex;
  font-family: "Playfair Display", serif;
  font-size: 12px;
  height: 100%;
  justify-content: center;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  width: 100%;
}

.news-card h3,
.video-card-info h4,
.value-card h3,
.about-mission h2 {
  font-family: "Playfair Display", serif;
}

.news-card h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.news-card p,
.show-desc,
.value-card p,
.about-hero-right p,
.about-mission p,
.contact-left p,
.footer-brand p,
.submit-cta p {
  color: var(--gray-light);
  line-height: 1.8;
}

.news-card p {
  font-size: 13px;
}

.news-card-meta {
  align-items: center;
  border-top: 1px solid var(--gray-soft);
  color: var(--gray);
  display: flex;
  font-size: 10px;
  justify-content: space-between;
  letter-spacing: 0.08em;
  margin-top: auto;
  padding-top: 12px;
  text-transform: uppercase;
}

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

.show-card {
  min-height: 330px;
  overflow: hidden;
  padding: 56px 48px;
  position: relative;
  transition: background 0.2s ease;
}

.show-card.is-link {
  cursor: pointer;
}

.show-card:hover {
  background: var(--dark-3);
}

.show-card::before {
  content: "";
  inset: 0;
  opacity: 0.08;
  position: absolute;
  transition: opacity 0.2s ease;
}

.show-card:hover::before {
  opacity: 0.13;
}

.show-coc::before {
  background: radial-gradient(circle at 30% 50%, var(--red) 0%, transparent 70%);
}

.show-edc::before {
  background: radial-gradient(circle at 70% 50%, var(--gold) 0%, transparent 70%);
}

.show-ep-count {
  color: var(--gray);
  font-size: 10px;
  letter-spacing: 0.11em;
  position: absolute;
  right: 48px;
  text-transform: uppercase;
  top: 40px;
}

.show-icon {
  align-items: center;
  border: 1px solid var(--gray-soft-2);
  color: var(--white);
  display: inline-flex;
  font-family: "DM Mono", monospace;
  font-size: 14px;
  font-weight: 500;
  height: 46px;
  justify-content: center;
  letter-spacing: 0.14em;
  margin-bottom: 26px;
  position: relative;
  width: 64px;
  z-index: 1;
}

.show-title {
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.show-desc {
  font-size: 14px;
  max-width: 420px;
  position: relative;
  z-index: 1;
}

.show-cta {
  color: var(--red);
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-top: 24px;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.gold-c {
  color: var(--gold);
}

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

.videos-grid.expanded {
  margin-top: 0;
}

.video-card {
  transition: background 0.2s ease;
}

.video-card:hover {
  background: var(--dark-3);
}

.video-thumb {
  height: 200px;
}

.play-btn {
  background: rgba(192, 57, 43, 0.92);
  border-radius: 50%;
  height: 54px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
}

.play-btn::before {
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--white);
  border-top: 9px solid transparent;
  content: "";
  left: 22px;
  position: absolute;
  top: 18px;
}

.video-card-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 24px 24px;
}

.video-card-info h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.video-card-info .meta {
  color: var(--gray);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.category-row {
  border-bottom: 1px solid var(--gray-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 48px;
}

.cat-btn {
  background: var(--dark-3);
  border: 1px solid var(--gray-soft);
  color: var(--gray-light);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  justify-content: center;
  padding: 8px 18px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cat-btn.is-active,
.cat-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.submit-cta {
  background: var(--dark-2);
  border-top: 1px solid var(--gray-soft);
  padding: 64px 48px;
  text-align: center;
}

.submit-cta-label {
  color: var(--gold);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.submit-cta h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 900;
  margin-bottom: 16px;
}

.submit-cta p {
  font-size: 15px;
  margin: 0 auto 32px;
  max-width: 560px;
}

.about-hero {
  align-items: center;
  border-bottom: 1px solid var(--gray-soft);
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  padding: 100px 48px;
}

.about-hero h1 {
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.about-hero-right p {
  font-size: 17px;
  margin-bottom: 20px;
}

.about-values {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card {
  background: var(--dark-2);
  padding: 48px 40px;
}

.value-icon {
  color: var(--gray-light);
  font-family: "DM Mono", monospace;
  font-size: 20px;
  letter-spacing: 0.15em;
  margin-bottom: 22px;
}

.v-bar {
  background: var(--red);
  height: 3px;
  margin-bottom: 20px;
  width: 34px;
}

.gold-bar {
  background: var(--gold);
}

.gray-bar {
  background: var(--gray-light);
}

.value-card h3 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
}

.about-mission {
  border-top: 1px solid var(--gray-soft);
  display: grid;
  gap: 80px;
  grid-template-columns: 300px minmax(0, 1fr);
  padding: 80px 48px;
}

.about-mission-label {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-mission h2 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.1;
  margin-top: 12px;
}

.about-mission p {
  font-size: 16px;
  margin-bottom: 20px;
}

.team-section {
  border-top: 1px solid var(--gray-soft);
  padding: 80px 48px;
}

.team-section h2 {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 40px;
}

.team-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-card {
  background: var(--dark-2);
  border-radius: 2px;
  padding: 28px;
}

.team-avatar {
  align-items: center;
  background: var(--dark-4);
  border: 2px solid var(--gray-soft);
  border-radius: 50%;
  color: var(--red);
  display: flex;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 900;
  height: 64px;
  justify-content: center;
  margin-bottom: 16px;
  width: 64px;
}

.gold-avatar {
  color: var(--gold);
}

.gray-avatar {
  color: var(--gray-light);
}

.red-avatar {
  color: var(--red);
}

.team-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-card .role {
  color: var(--gold);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.09em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.team-card p {
  color: var(--gray);
  font-size: 12px;
  line-height: 1.7;
}

.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: calc(100vh - 120px);
}

.contact-left {
  background: var(--dark-2);
  border-right: 1px solid var(--gray-soft);
  padding: 80px 48px;
}

.contact-left h1 {
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
}

.contact-left p {
  font-size: 15px;
  margin-bottom: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item h4,
.contact-socials h4,
.form-group label,
.footer-col h4 {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.contact-info-item p,
.contact-info-item a {
  color: var(--gray-light);
  font-size: 14px;
}

.contact-info-item a:hover {
  color: var(--white);
}

.contact-socials {
  border-top: 1px solid var(--gray-soft);
  margin-top: 40px;
  padding-top: 40px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-link {
  align-items: center;
  color: var(--gray-light);
  display: flex;
  gap: 14px;
  transition: color 0.2s ease;
}

.social-link:hover {
  color: var(--white);
}

.social-link-icon {
  align-items: center;
  border-radius: 2px;
  color: var(--white);
  display: flex;
  font-family: "DM Mono", monospace;
  font-size: 13px;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.s-tiktok {
  background: #010101;
}

.s-ig {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.s-x {
  background: #000000;
}

.s-yt {
  background: #ff0000;
}

.social-handle {
  font-size: 14px;
  font-weight: 600;
}

.social-network {
  color: var(--gray);
  font-size: 11px;
}

.contact-right {
  padding: 80px 48px;
}

.contact-right h2 {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 8px;
}

.form-sub {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 40px;
}

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

.form-group {
  margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-3);
  border: 1px solid var(--gray-soft);
  border-radius: 2px;
  color: var(--white);
  outline: none;
  padding: 14px 18px;
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: rgba(28, 28, 28, 0.96);
  border-color: var(--red);
}

.form-group textarea {
  height: 140px;
  resize: vertical;
}

.form-note {
  color: var(--gray);
  font-size: 12px;
  margin-top: 8px;
}

.submit-btn {
  margin-top: 8px;
  width: 100%;
}

.form-success {
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0.35);
  border-radius: 2px;
  color: var(--success);
  font-size: 14px;
  margin-top: 16px;
  padding: 18px;
  text-align: center;
}

footer {
  background: var(--dark-2);
  border-top: 1px solid var(--gray-soft);
  padding: 64px 48px 32px;
}

.footer-top {
  display: grid;
  gap: 48px;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  margin-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  max-width: 300px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  color: var(--gray);
  font-size: 13px;
  padding: 5px 0;
}

.footer-col button {
  color: var(--gray);
  font-size: 13px;
  padding: 0;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid var(--gray-soft);
  color: var(--gray);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 12px;
}

.footer-phrase {
  color: var(--gray);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.modal {
  align-items: center;
  background: rgba(0, 0, 0, 0.78);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 1200;
}

.modal-panel {
  background: linear-gradient(180deg, #151515, #0d0d0d);
  border: 1px solid var(--gray-soft);
  box-shadow: var(--shadow);
  max-width: 680px;
  padding: 40px;
  position: relative;
  width: 100%;
}

.modal-close {
  background: none;
  border: 0;
  color: var(--white);
  cursor: pointer;
  font-size: 30px;
  position: absolute;
  right: 20px;
  top: 16px;
}

.modal-kicker {
  color: var(--gold);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.modal-panel h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 12px;
  padding-right: 36px;
}

.modal-meta {
  color: var(--gray);
  font-size: 11px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.modal-panel p {
  color: var(--gray-light);
  font-size: 15px;
  line-height: 1.9;
}

.c1 {
  background: linear-gradient(135deg, #1a0505 0%, #2a0a0a 100%);
}

.c2 {
  background: linear-gradient(135deg, #050a1a 0%, #0a1a2a 100%);
}

.c3 {
  background: linear-gradient(135deg, #0a0a05 0%, #1a1a0a 100%);
}

.c4 {
  background: linear-gradient(135deg, #0a0505 0%, #1a0a0a 100%);
}

.c5 {
  background: linear-gradient(135deg, #050a05 0%, #0a1a0a 100%);
}

.c6 {
  background: linear-gradient(135deg, #05050a 0%, #0a0a1a 100%);
}

.fade-in {
  animation: fade-in 0.5s ease both;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-right {
    display: none;
  }

  .news-grid,
  .videos-grid,
  .about-values,
  .footer-top,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shows-grid,
  .contact-wrap,
  .about-hero,
  .about-mission {
    grid-template-columns: 1fr;
  }

  .about-hero,
  .about-mission {
    gap: 40px;
  }

  .contact-left {
    border-bottom: 1px solid var(--gray-soft);
    border-right: 0;
  }

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

@media (max-width: 768px) {
  .site-nav {
    padding: 0 24px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-left,
  .section-hdr,
  .category-row,
  .about-hero,
  .about-mission,
  .team-section,
  .contact-left,
  .contact-right,
  .submit-cta,
  footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-left {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .section-hdr {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 20px;
    padding-top: 32px;
  }

  .news-grid,
  .videos-grid,
  .about-values,
  .team-grid,
  .footer-top,
  .form-row {
    grid-template-columns: 1fr;
  }

  .show-card {
    padding: 48px 24px;
  }

  .show-ep-count {
    position: static;
  }

  .modal-panel {
    padding: 32px 24px;
  }
}

@media (max-width: 520px) {
  .ticker-item {
    font-size: 10px;
    padding: 0 22px;
  }

  .hero-headline {
    font-size: 42px;
  }

  .about-hero h1,
  .contact-left h1 {
    font-size: 42px;
  }

  .mobile-nav-link {
    font-size: 28px;
  }
}
