﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:   #0A0E1A;
      --parch:  #F2E8D5;
      --red:    #EE2E2D;
      --gold:   #EE2E2D;
      --smoke:  #8A8F9E;
      --white:  #FDFAF4;
      --dark:   #141824;
      --page-gutter: clamp(1rem, 3vw, 2rem);
      --page-max-width: 1320px;
    }

    html {
      scroll-behavior: smooth;
      font-size: 100%;
      min-width: 0;
      max-width: 100%;
      overflow-x: hidden;
    }

    body {
      background: var(--navy);
      color: var(--parch);
      font-family: 'Source Sans 3', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      line-height: 1.9;
      overflow-x: hidden;
      padding-bottom: 220px;
      min-width: 0;
      max-width: 100%;
    }

    html {
      min-width: 0;
      max-width: 100%;
      overflow-x: hidden;
    }

    section {
      overflow-x: hidden;
    }

    .page-inner {
      margin: 0 auto;
      max-width: 1320px;
      padding: 0 1.5rem;
      width: min(100%, 1320px);
    }


    p, li, .hero-sub, .section-intro, .lead, .small-print, .tier ul li, .contact-card p {
      font-size: 1.08rem;
      font-weight: 600;
    }

    h1 { font-size: clamp(2.5rem, 5.2vw, 3.8rem); }
    h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); }
    h3 { font-size: 1.28rem; }

    .join-link {
      color: var(--red);
      text-decoration: none;
      font-weight: 600;
    }
    .join-link:hover { text-decoration: underline; }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0 clamp(1rem, 3vw, 2rem);
      min-height: 58px;
      background: rgba(10,14,26,0.92);
      border-bottom: 1px solid rgba(238,46,45,0.22);
      backdrop-filter: blur(18px);
      box-shadow: inset 0 -1px 0 rgba(255,255,255,0.04), 0 18px 36px rgba(0,0,0,0.18);
    }
    .nav-logo {
      font-family: 'Special Elite', cursive;
      font-size: 1.05rem;
      color: var(--red);
      letter-spacing: 0.04em;
      text-decoration: none;
      white-space: nowrap;
    }
    .nav-links {
      display: flex;
      flex: 1 1 auto;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: clamp(0.9rem, 1.2vw, 1.8rem);
      list-style: none;
      margin: 0;
      padding: 0;
      min-width: 0;
    }
    .nav-links li {
      min-width: 0;
    }
    .nav-links a {
      color: var(--parch);
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: color 0.2s ease, transform 0.2s ease;
      white-space: nowrap;
    }
    .nav-links a:hover { color: #FFFFFF; }
    .nav-links a.active,
    .nav-links a[aria-current="page"] {
      color: var(--red);
    }
    .language-selector {
      min-width: 180px;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.35rem;
      flex-shrink: 0;
      white-space: nowrap;
    }
    .nav-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      padding: 0;
      border: 1px solid rgba(255,255,255,0.16);
      border-radius: 999px;
      background: transparent;
      color: var(--white);
      cursor: pointer;
      transition: border-color 0.2s ease, background 0.2s ease;
    }
    .nav-toggle:hover,
    .nav-toggle:focus-visible {
      border-color: var(--red);
      background: #EE2E2D;
      outline: none;
    }
    .nav-toggle-bar {
      display: block;
      width: 20px;
      height: 2px;
      background: currentColor;
      border-radius: 999px;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }
    .nav-toggle-bar + .nav-toggle-bar { margin-top: 4px; }
    nav.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
    nav.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    nav.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    @media (max-width: 767px) {
      nav {
        padding: 0.75rem var(--page-gutter);
        height: auto;
        min-height: 58px;
        align-items: center;
      }
      .nav-toggle {
        display: inline-flex;
        flex-direction: column;
      }
      .nav-links {
        position: absolute;
        top: calc(100% + 0.5rem);
        right: var(--page-gutter);
        left: var(--page-gutter);
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
        padding: 0.75rem;
        background: rgba(10,14,26,0.98);
        border: 1px solid #EE2E2D;
        border-radius: 18px;
        box-shadow: 0 18px 40px rgba(0,0,0,0.28);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-6px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
      }
      nav.nav-open .nav-links {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
      }
      .nav-links li {
        width: 100%;
      }
      .nav-links a {
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: 0.7rem 0.8rem;
        border-radius: 12px;
      }
      .nav-links a:hover,
      .nav-links a:focus-visible {
        background: #EE2E2D;
        color: #FFFFFF;
      }
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 6rem 2rem 4rem;
      overflow: hidden;
      background: linear-gradient(to bottom, rgba(10,14,26,0.35) 0%, rgba(10,14,26,0.52) 60%, rgba(10,14,26,0.88) 100%);
    }

    .social-share-image {
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      clip: rect(0 0 0 0);
      white-space: nowrap;
      border: 0;
    }

    .about-visual,
    .pillars-photo,
    .episodes-photo,
    .merch-card {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      border: 1px solid #EE2E2D;
      box-shadow: 0 18px 40px rgba(0,0,0,0.22);
      background: rgba(255,255,255,0.04);
    }

    .about-visual img,
    .pillars-photo img,
    .episodes-photo img,
    .merch-card img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      background: linear-gradient(180deg, #ffffff 0%, #f3e8cb 100%);
      padding: 0.55rem;
    }

    .about-visual { min-height: 320px; margin-top: 0.5rem; }
    .pillars-photo { min-height: 280px; margin-top: 2.2rem; }
    .episodes-photo { min-height: 280px; margin-top: 2rem; }
    .merch-card { min-height: 220px; }

    .photo-caption {
      position: absolute;
      left: 1rem;
      right: 1rem;
      bottom: 1rem;
      padding: 0.7rem 0.9rem;
      border-radius: 999px;
      background: rgba(10,14,26,0.76);
      color: var(--parch);
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      backdrop-filter: blur(8px);
      text-align: center;
    }

    .merch-strip {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
      margin-top: 2rem;
    }

    .community-highlights-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.25rem;
      margin-top: 2rem;
      align-items: stretch;
    }

    .community-highlight-card {
      padding: 1.35rem 1.4rem;
      border: 1px solid #EE2E2D;
      border-radius: 20px;
      background: rgba(255,255,255,0.04);
      text-align: center;
      box-shadow: 0 16px 36px rgba(0,0,0,0.16);
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .community-highlight-preview {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 14px;
      margin-bottom: 1rem;
      border: 1px solid rgba(255,255,255,0.08);
      display: block;
    }

    .community-highlight-card h3 {
      font-family: 'Playfair Display', serif;
      color: var(--white);
      margin: 0.3rem 0 0.4rem;
    }

    .community-highlight-card p {
      color: var(--smoke);
      margin-bottom: 0.9rem;
    }

    .community-highlight-card a {
      display: inline-block;
      padding: 0.72rem 1rem;
      border-radius: 999px;
      border: 1px solid var(--red);
      background: var(--red);
      color: var(--white);
      text-decoration: none;
      font-weight: 700;
      transition: background 0.3s, border-color 0.3s, color 0.3s;
    }

    .community-highlight-card a:hover {
      background: #FF4A49;
      border-color: #FF4A49;
    }
    .community-highlight-card a:active { background: #D62828; border-color: #D62828; }

    /* Decorative stars */
    .star-line {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      margin-bottom: 1.4rem;
      color: var(--red);
      font-size: 0.75rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
    }
    .star-line::before, .star-line::after {
      content: '';
      display: block;
      width: 60px;
      height: 1px;
      background: var(--red);
      opacity: 0.6;
    }

    .broadcast-stamp {
      display: inline-block;
      border: 3px solid var(--red);
      color: var(--red);
      font-family: 'Special Elite', cursive;
      font-size: 0.72rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      padding: 0.3rem 1rem;
      margin: 1.9rem auto 0;
      transform: rotate(-1.5deg);
      opacity: 0.92;
      max-width: min(90vw, 320px);
      line-height: 1.5;
    }

    @media (max-width: 700px) {
      .broadcast-stamp {
        font-size: 0.62rem;
        padding: 0.25rem 0.75rem;
        margin: 1.4rem auto 0;
      }
    }

    .hero-title-group {
      display: block;
      margin: 0;
      position: relative;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 9vw, 7rem);
      font-weight: 900;
      line-height: 0.95;
      color: var(--white);
      letter-spacing: -0.02em;
      margin: 3.2rem 0 0.4rem;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--red);
    }

    .fights-back {
      font-family: 'Special Elite', cursive;
      font-size: clamp(1.4rem, 4vw, 2.8rem);
      color: var(--red);
      letter-spacing: 0.06em;
      margin: 0 0 1.6rem;
      display: block;
    }

    @media (max-width: 768px) {
      .hero-title-group {
        top: 3.1rem;
      }
    }

    .hero-sub {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: var(--smoke);
      max-width: 600px;
      margin: 0 auto 2.5rem;
      font-weight: 600;
      line-height: 1.7;
    }
    .hero-sub strong {
      color: var(--parch);
      font-weight: 600;
    }

    .hero-cta-group {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      justify-content: center;
      align-items: center;
    }
    .hero-cta-row {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      align-items: center;
    }
    .hero-cta-stack {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.45rem;
    }
    .hero-cta-caption {
      font-family: 'Special Elite', cursive;
      font-size: 0.78rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--red);
    }
    .btn-primary {
      background: var(--red);
      color: var(--white);
      border: 2px solid var(--red);
      padding: 0.85rem 2rem;
      font-family: 'Source Sans 3', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
    }
    .btn-primary:hover { background: #FF4A49; border-color: #FF4A49; transform: none; }
    .btn-primary:active { background: #D62828; border-color: #D62828; }

    .btn-outline {
      background: #2C2C2C;
      color: var(--white);
      border: 2px solid #555555;
      padding: 0.85rem 2rem;
      font-family: 'Source Sans 3', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
    }
    .btn-outline:hover { background: #444444; border-color: #EE2E2D; color: #EE2E2D; transform: none; }
    .btn-outline:active { background: #2C2C2C; border-color: #555555; color: var(--white); }

    /* mic-icon removed — using photo hero */

    /* Broadcast ticker */
    .ticker-wrap {
      background: #B91C1C;
      padding: 0.45rem 0;
      overflow: hidden;
      white-space: nowrap;
    }
    .ticker-inner {
      display: inline-block;
      animation: ticker 28s linear infinite;
      font-family: 'Special Elite', cursive;
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      color: var(--white);
    }
    .footer-brand { color: #FF7770; }
    .footer-muted { color: #C5CBD6; opacity: 1; }
    .footer-call-link { background: #22C55E; color: #0A0E1A; }
    @keyframes ticker {
      from { transform: translateX(100vw); }
      to   { transform: translateX(-100%); }
    }

    /* ── HERO ── */
    .homepage-top-video-wrap {
      width: 100%;
      margin: 0;
      padding: 0;
      background: #000;
      border-bottom: 1px solid rgba(238,46,45,0.22);
      line-height: 0;
    }

    .homepage-top-video {
      display: block;
      width: 100%;
      max-height: 52vh;
      min-height: 220px;
      aspect-ratio: 16 / 9;
      object-fit: cover;
      object-position: center;
      background: #000;
      margin: 0;
      padding: 0;
    }

    @media (max-width: 900px) {
      .homepage-top-video {
        max-height: 40vh;
        min-height: 180px;
      }
    }

    @media (max-width: 600px) {
      .homepage-top-video {
        max-height: 32vh;
        min-height: 160px;
      }
    }

    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 6rem var(--page-gutter) 4rem;
      overflow: hidden;
      isolation: isolate;
    }

    /* hero image placed with an <img> so object-fit/object-position work consistently */
    .hero-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100% !important;
      object-fit: cover;
      object-position: center center;
      display: block;
      z-index: 0;
    }

    .hero-media {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      display: block;
      overflow: hidden;
      pointer-events: none;
    }

    .hero-badge {
      display: none;
    }

    @media (max-width: 700px) {
      .broadcast-stamp {
        font-size: 0.62rem;
        padding: 0.22rem 0.7rem;
        margin-bottom: 1.2rem;
        max-width: calc(100% - 170px);
        white-space: normal;
      }
    }

    @media (max-width: 480px) {
      .broadcast-stamp {
        font-size: 0.6rem;
        padding: 0.18rem 0.6rem;
        max-width: calc(100% - 130px);
      }
      .hero-badge {
        top: 3.6rem;
        right: 0.4rem;
        left: auto;
        width: 95px;
      }
    }

    /* gradient overlay above the image */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(10,14,26,0.35) 0%, rgba(10,14,26,0.52) 60%, rgba(10,14,26,0.88) 100%);
      z-index: 0;
      pointer-events: none;
    }

    section {
      padding: 4rem var(--page-gutter);
    }

    .section-inner {
      margin: 0 auto;
      width: min(100%, var(--page-max-width));
      max-width: var(--page-max-width);
    }

    /* ensure hero content sits above image + overlay */
    .hero > div {
      position: relative;
      z-index: 2;
      width: 100%;
      padding-top: 4.5rem;
      margin-top: 1rem;
    }

    .eyebrow::before {
      content: '';
      display: block;
      width: 30px;
      height: 1px;
      background: var(--red);
    }

    h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 700;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 1.5rem;
    }
    h2 em { font-style: italic; color: var(--red); }

    .section-rule {
      width: 48px;
      height: 3px;
      background: var(--red);
      margin-bottom: 2rem;
    }

    p { color: var(--parch); font-size: 1.05rem; line-height: 1.75; margin-bottom: 1.2rem; }
    p:last-child { margin-bottom: 0; }

    /* ── ABOUT ── */
    #about { background: var(--dark); }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
      margin-top: 2.5rem;
    }
    @media (max-width: 700px) { .about-grid { grid-template-columns: 1fr; gap: 2rem; } }

    .mandate-box {
      border-left: 3px solid var(--red);
      padding-left: 1.5rem;
      margin-top: 1.5rem;
    }
    .mandate-box p {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 1.15rem;
      color: var(--red);
      line-height: 1.6;
    }

    /* ── PILLARS ── */
    #pillars { background: var(--navy); }

    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }
    @media (max-width: 700px) { .pillars-grid { grid-template-columns: 1fr; } }

    .pillar {
      border-top: 2px solid var(--red);
      padding-top: 1.5rem;
    }
    .pillar-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      font-weight: 900;
      color: var(--red);
      line-height: 1;
      margin-bottom: 0.5rem;
      opacity: 0.5;
    }
    .pillar h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.7rem;
    }
    .pillar p { font-size: 0.95rem; color: var(--smoke); }

    /* ── EPISODE ── */
    #episodes { background: var(--dark); }

    .episodes-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.25rem;
      margin-top: 2rem;
    }
    .ep-card {
      border: 1px solid #EE2E2D;
      padding: 1.5rem;
      position: relative;
      transition: border-color 0.2s, transform 0.2s ease;
      background: rgba(255,255,255,0.03);
      border-radius: 18px;
      min-height: 100%;
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
    }
    .ep-card:hover {
      border-color: var(--red);
      transform: translateY(-2px);
    }
    .ep-card-featured {
      border-color: #EE2E2D;
      box-shadow: none;
    }
    .ep-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      flex-wrap: wrap;
    }
    .ep-label {
      font-family: 'Special Elite', cursive;
      font-size: 0.7rem;
      letter-spacing: 0.25em;
      color: var(--red);
      text-transform: uppercase;
    }
    .ep-status {
      font-family: 'Special Elite', cursive;
      font-size: 0.62rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 0.28rem 0.55rem;
      border-radius: 999px;
      border: 1px solid #EE2E2D;
      color: var(--parch);
      background: #EE2E2D;
    }
    .ep-status.aired { color: #ffd8a8; border-color: rgba(255,216,168,0.35); }
    .ep-status.upcoming { color: #ffe2a8; border-color: rgba(255,226,168,0.35); }
    .ep-date {
      font-size: 0.78rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--smoke);
      margin: 0;
    }
    .ep-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.24rem;
      font-weight: 700;
      color: var(--white);
      margin: 0;
      line-height: 1.25;
    }
    .ep-card p { font-size: 0.95rem; color: var(--smoke); margin: 0; }
    .ep-link-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.65rem;
      margin-top: auto;
      padding-top: 0.25rem;
    }
    .ep-link-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.7rem 1.1rem;
      border-radius: 999px;
      background: var(--red);
      border: 1px solid var(--red);
      color: var(--white);
      text-decoration: none;
      font-size: 0.78rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-weight: 700;
      transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
      box-shadow: none;
    }
    .ep-link-btn:hover {
      background: #FF4A49;
      border-color: #FF4A49;
      transform: none;
    }
    .ep-link-btn:active { background: #D62828; border-color: #D62828; }
    .listen-live-section {
      padding: 2rem 1.5rem 0;
    }
    .listen-live-card {
      max-width: 900px;
      margin: 0 auto;
      padding: 1.5rem;
      border: 1px solid #EE2E2D;
      background: rgba(255,255,255,0.04);
      border-radius: 24px;
      box-shadow: 0 16px 40px rgba(0,0,0,0.22);
    }
    .listen-live-layout {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 1.5rem;
      align-items: center;
    }
    .listen-live-copy {
      text-align: left;
    }
    .listen-live-eyebrow {
      display: inline-block;
      margin-bottom: 0.65rem;
      font-family: 'Special Elite', cursive;
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--red);
    }
    .listen-live-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.35rem, 2.2vw, 1.8rem);
      margin: 0 0 0.7rem;
      color: var(--white);
      line-height: 1.2;
    }
    .listen-live-text {
      margin: 0 0 1rem;
      color: var(--smoke);
      font-size: 0.98rem;
      line-height: 1.7;
    }
    .listen-live-image {
      display: block;
      width: 100%;
      max-width: 520px;
      margin: 0 auto;
      border-radius: 16px;
      border: 1px solid #EE2E2D;
      object-fit: cover;
    }
    .broadcast-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin: 1rem 0 1.2rem;
    }
    .broadcast-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.8rem 1rem;
      border-radius: 999px;
      background: var(--red);
      color: var(--white);
      text-decoration: none;
      font-size: 0.78rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-weight: 700;
      border: 1px solid var(--red);
      transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
    }
    .broadcast-btn:hover {
      transform: none;
      background: #FF4A49;
      border-color: #FF4A49;
    }
    .broadcast-btn.secondary {
      background: #2C2C2C;
      border: 1px solid #555555;
      color: var(--white);
    }
    .broadcast-btn.secondary:hover { background: #444444; border-color: #EE2E2D; color: #EE2E2D; }
    .broadcast-btn:active { background: #D62828; border-color: #D62828; color: var(--white); }
    .broadcast-media {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .broadcast-schedule-box {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 18px;
      padding: 1rem 1.1rem;
    }
    .broadcast-schedule-box h3 {
      margin: 0 0 0.5rem;
      font-family: 'Playfair Display', serif;
      color: var(--white);
      font-size: 1.1rem;
    }
    .station-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 0.45rem;
    }
    .station-list li {
      color: var(--smoke);
      font-size: 0.95rem;
    }
    .station-list strong {
      color: var(--white);
    }
    .broadcast-note {
      margin-top: 0.7rem;
      color: var(--smoke);
      font-size: 0.95rem;
      line-height: 1.6;
    }
    @media (max-width: 800px) {
      .episodes-grid { grid-template-columns: 1fr; }
      .listen-live-layout { grid-template-columns: 1fr; }
      .listen-live-copy { text-align: center; }
      .broadcast-actions { justify-content: center; }
    }

    /* ── MISSION ── */
    #mission {
      background: var(--navy);
      text-align: center;
    }
    .mission-quote {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.5rem, 4vw, 2.4rem);
      font-style: italic;
      font-weight: 700;
      color: var(--white);
      max-width: 780px;
      margin: 0 auto 1.5rem;
      line-height: 1.3;
    }
    .mission-quote em { color: var(--red); font-style: normal; }

    .mission-sub {
      color: var(--smoke);
      font-size: 0.95rem;
      max-width: 560px;
      margin: 0 auto 3rem;
    }

    .methodology-row {
      display: flex;
      justify-content: center;
      gap: 3rem;
      flex-wrap: wrap;
      margin-top: 2.5rem;
    }
    .method-item {
      text-align: center;
      min-width: 140px;
    }
    .method-icon {
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }
    .method-label {
      font-family: 'Special Elite', cursive;
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--red);
    }
    .method-desc {
      font-size: 0.85rem;
      color: var(--smoke);
      margin-top: 0.3rem;
    }

    /* ── SPONSOR ── */
    #sponsor { background: var(--dark); }

    .sponsor-intro {
      max-width: 640px;
      margin-bottom: 3rem;
    }

    .tiers-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-bottom: 3rem;
    }
    @media (max-width: 700px) { .tiers-grid { grid-template-columns: 1fr; } }

    .tier {
      border: 1px solid #EE2E2D;
      padding: 1.8rem 1.5rem;
      position: relative;
    }
    .tier.featured {
      border-color: var(--red);
      background: #EE2E2D;
    }
    .tier-badge {
      position: absolute;
      top: -12px; left: 50%;
      transform: translateX(-50%);
      background: var(--red);
      color: var(--navy);
      font-family: 'Special Elite', cursive;
      font-size: 0.62rem;
      letter-spacing: 0.18em;
      padding: 0.2rem 0.8rem;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .tier-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.3rem;
    }
    .tier-price {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--red);
      margin-bottom: 1rem;
      line-height: 1;
    }
    .tier-price span {
      font-size: 0.9rem;
      color: var(--smoke);
      font-weight: 400;
    }
    .tier ul {
      list-style: none;
      font-size: 0.88rem;
      color: var(--parch);
    }
    .tier ul li {
      padding: 0.35rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
    }
    .tier ul li::before { content: '★'; color: var(--red); font-size: 0.65rem; margin-top: 0.25rem; flex-shrink: 0; }

    /* ── ACTION ARMY ── */
    .action-army-section {
      background: #EE2E2D;
      border-top: 1px solid #EE2E2D;
      border-bottom: 1px solid #EE2E2D;
    }
    .action-army-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid #EE2E2D;
      border-radius: 24px;
      padding: 2rem;
      box-shadow: 0 16px 36px rgba(0,0,0,0.2);
    }
    .action-army-form {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: 1.4rem;
    }
    .action-army-form input {
      flex: 1 1 260px;
      min-width: 240px;
      padding: 0.9rem 1rem;
      border-radius: 999px;
      border: 1px solid #EE2E2D;
      font: inherit;
    }
    .action-army-form button {
      border: 1px solid var(--red);
      border-radius: 999px;
      padding: 0.9rem 1.4rem;
      background: var(--red);
      color: var(--white);
      font: inherit;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s, border-color 0.3s, color 0.3s;
    }
    .action-army-form button:hover { background: #FF4A49; border-color: #FF4A49; }
    .action-army-form button:active { background: #D62828; border-color: #D62828; }
    .shorts-section {
      background: var(--dark);
    }
    .shorts-layout {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 1.5rem;
      align-items: start;
    }
    .shorts-card, .dog-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid #EE2E2D;
      border-radius: 20px;
      padding: 1rem;
      max-width: 480px;
    }
    .shorts-card img, .dog-card img {
      display: block;
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 14px;
      margin-bottom: 0.8rem;
    }
    .dog-card {
      max-width: 100%;
    }
    .dog-card .btn-primary {
      display: inline-block;
      margin-top: 0.8rem;
      text-decoration: none;
    }

    /* ── CONTACT ── */
    .sponsor-section {
      display: block;
    }
    #contact {
      background: var(--navy);
      text-align: center;
    }
    .contact-card {
      display: inline-block;
      border: 2px solid var(--red);
      padding: 3rem 3.5rem;
      max-width: 540px;
      width: 100%;
      margin-top: 2rem;
    }
    .contact-card p { color: var(--smoke); font-size: 0.95rem; margin-bottom: 0.5rem; }
    .contact-card a {
      color: var(--white);
      text-decoration: none;
      font-size: 1.05rem;
      font-weight: 600;
    }
    .contact-card a:hover { text-decoration: underline; }
    .contact-divider { width: 40px; height: 1px; background: var(--red); margin: 1.2rem auto; opacity: 0.4; }

    .booking-section {
      padding: 2rem 1.5rem 0;
    }
    .booking-card {
      background: #EE2E2D;
      border: 1px solid #EE2E2D;
      border-radius: 28px;
      padding: 2rem;
      box-shadow: 0 20px 40px rgba(0,0,0,0.2);
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 1.5rem;
      align-items: center;
      overflow: hidden;
      position: relative;
    }
    .booking-card::before {
      content: "";
      position: absolute;
      inset: auto -30px 0 auto;
      width: 180px;
      height: 180px;
      background: #EE2E2D;
      pointer-events: none;
    }
    .booking-copy h2 {
      margin-bottom: 0.7rem;
      font-family: 'Playfair Display', serif;
      color: var(--white);
    }
    .booking-copy p {
      color: var(--smoke);
      margin-bottom: 0.9rem;
      line-height: 1.75;
    }
    .booking-meta {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 0.7rem;
      color: var(--parch);
      font-weight: 600;
    }
    .booking-icon {
      width: 46px;
      height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      background: #EE2E2D;
      color: var(--red);
      font-size: 1.2rem;
      flex-shrink: 0;
    }
    .booking-contact-list {
      display: grid;
      gap: 0.6rem;
      margin-top: 1rem;
    }
    .booking-contact-list a {
      color: var(--parch);
      text-decoration: none;
      font-weight: 600;
    }
    .booking-contact-list a:hover { color: #D62828; }
    .booking-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.9rem 1.2rem;
      border-radius: 999px;
      background: var(--red);
      color: var(--white);
      text-decoration: none;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      border: 1px solid var(--red);
      transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
      margin-top: 1rem;
    }
    .booking-cta:hover {
      background: #FF4A49;
      border-color: #FF4A49;
      transform: none;
    }
    .booking-cta:active { background: #D62828; border-color: #D62828; }
    .booking-photos {
      display: grid;
      gap: 1rem;
    }
    .booking-photo {
      display: block;
      width: 100%;
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,0.12);
      object-fit: cover;
      min-height: 220px;
      max-height: 320px;
      box-shadow: 0 16px 36px rgba(0,0,0,0.18);
    }

    @media (max-width: 900px) {
      .booking-card { grid-template-columns: 1fr; }
      .booking-photos { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 600px) {
      .booking-card { padding: 1.4rem; }
      .booking-photos { grid-template-columns: 1fr; }
    }

    /* ── FOOTER ── */
    footer {
      background: var(--dark);
      border-top: 1px solid #EE2E2D;
      padding: 2rem;
      text-align: center;
    }
    .footer-logo {
      font-family: 'Special Elite', cursive;
      font-size: 1rem;
      color: var(--red);
      margin-bottom: 0.5rem;
    }
    footer p {
      font-size: 0.78rem;
      color: var(--smoke);
      margin-bottom: 0.2rem;
    }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    @media (max-width: 700px) {
      .merch-strip { grid-template-columns: 1fr; }
    }

    @media (max-width: 480px) {
      nav {
        padding: 0.8rem 1rem;
        align-items: flex-start;
      }
      .nav-links {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        justify-content: flex-end;
      }
      .nav-links a {
        font-size: 0.75rem;
      }
      section { padding: 4rem 1rem; }
      .contact-card { padding: 2rem 1.5rem; }
    }
    
    .sheriff-card-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(320px, 1fr));
      gap: 1.25rem;
      margin-top: 2rem;
    }
    .spotlight-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid #EE2E2D;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 16px 36px rgba(0,0,0,0.14);
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }
    .spotlight-preview {
      width: 100%;
      display: block;
      object-fit: contain;
      object-position: center;
      height: auto;
      min-height: 320px;
      background: rgba(255,255,255,0.05);
    }
    .spotlight-preview.sheriff-star {
      width: 50%;
      min-height: 160px;
      margin: 0 auto 1rem;
      display: block;
      object-fit: contain;
    }
    .spotlight-copy {
      padding: 1.5rem 1.5rem 2rem;
      text-align: left;
    }
    .video-feature {
      display: grid;
      grid-template-columns: 1.6fr 1fr;
      gap: 1.5rem;
      align-items: start;
      margin-top: 2rem;
    }
    .video-player {
      width: 100%;
      aspect-ratio: 16 / 9;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow: 0 18px 40px rgba(0,0,0,0.22);
      min-height: 360px;
      max-height: 520px;
      background: #000;
    }
    .video-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 1rem;
      color: var(--smoke);
      padding: 0.5rem 0.25rem;
    }
    .video-copy p {
      margin: 0;
      line-height: 1.8;
      font-size: 1.05rem;
    }
    @media (max-width: 900px) {
      .video-feature {
        grid-template-columns: 1fr;
      }
      .video-player {
        min-height: 260px;
      }
    }
    .spotlight-copy h3 {
      margin: 0 0 0.85rem;
      color: var(--white);
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
    }
    .spotlight-copy p {
      margin: 0 0 1.2rem;
      color: var(--smoke);
      line-height: 1.75;
    }
    .spotlight-copy .btn-primary {
      margin-top: auto;
    }
    @media (max-width: 900px) {
      .sheriff-card-grid {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 700px) {
      .spotlight-preview {
        min-height: 200px;
      }
    }
    /* Mobile hero adjustments for better cropping and spacing */
    @media (max-width: 768px) {
      .hero {
        min-height: 0;
        justify-content: flex-end;
        align-items: center;
        padding: 2rem 1rem 2rem;
      }

      .hero > div {
        padding-top: 1rem;
        margin-top: 0;
      }

      .hero h1 { margin-top: 1rem; }
      .hero-hotline { margin-top: 1.5rem !important; padding-top: 1rem !important; }
      .hero-hotline-number { font-size: 1.15rem !important; line-height: 1.35; }

      .hero::before {
        background: linear-gradient(to bottom, rgba(10,14,26,0.25) 0%, rgba(10,14,26,0.55) 65%, rgba(10,14,26,0.9) 100%);
      }

      .hero-img {
        object-position: 35% 35%;
      }

      .hero > div {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 720px;
      }
    }