:root {
      --crest-green: #0f5a32;
      --crest-green-dark: #082c19;
      --crest-green-light: #167346;
      --crest-gold: #d7a928;
      --crest-gold-soft: #f2df9a;
      --crest-white: #ffffff;
      --crest-gray: #f4f6f7;
      --crest-text: #1f2933;
      --crest-border: rgba(15, 90, 50, 0.16);
      --danger: #b42318;
      --shadow: 0 14px 35px rgba(0, 0, 0, 0.16);
      --radius: 20px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, sans-serif;
      background: var(--crest-white);
      color: var(--crest-text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
    }

    .container {
      width: min(1120px, 92%);
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(8, 44, 25, 0.96);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 76px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      color: var(--crest-white);
      font-weight: bold;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      color: var(--crest-white);
      font-weight: bold;
    }

    .logo-image {
      width: 95px;
      height: auto;
      object-fit: contain;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
    }

    .logo-top {
      font-size: 1.12rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 800;
    }

    .logo-bottom {
      font-size: 0.78rem;
      opacity: 0.82;
    }

    .nav {
      display: flex;
      gap: 1.15rem;
    }

    .nav a {
      color: var(--crest-white);
      font-weight: 700;
      position: relative;
    }

    .nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 0;
      height: 2px;
      background: var(--crest-gold);
      transition: width 0.25s ease;
    }

    .nav a:hover::after {
      width: 100%;
    }

    .menu-toggle {
      display: none;
      border: none;
      background: transparent;
      color: var(--crest-white);
      font-size: 1.7rem;
      cursor: pointer;
    }

    .hero {
      position: relative;
      min-height: 92vh;
      display: flex;
      align-items: center;
      color: var(--crest-white);
      background:
        linear-gradient(rgba(4, 14, 8, 0.45), rgba(4, 14, 8, 0.78)),
        url("https://images.unsplash.com/photo-1508098682722-e99c643e7485?auto=format&fit=crop&w=1600&q=80")
        center/cover no-repeat;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 20%, rgba(215, 169, 40, 0.16), transparent 28%),
        linear-gradient(to right, rgba(8, 44, 25, 0.84), rgba(8, 44, 25, 0.34));
    }

    .hero-content {
      position: relative;
      z-index: 1;
      padding: 5rem 0;
    }

    .eyebrow,
    .section-tag {
      color: var(--crest-gold);
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      font-weight: 800;
      margin-bottom: 0.9rem;
    }

    .hero h1,
    .section h2,
    .info-panel h3,
    .timeline-card h3,
    .profile-card h3,
    .rivalry-card h3,
    .mini-card h3 {
      font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
      letter-spacing: 0.02em;
    }

    .hero h1 {
      font-size: clamp(3rem, 7vw, 5.5rem);
      line-height: 0.98;
      max-width: 860px;
      text-transform: uppercase;
    }

    .hero-text {
      max-width: 760px;
      font-size: 1.08rem;
      margin-top: 1rem;
      color: rgba(255, 255, 255, 0.92);
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
      margin-top: 1.6rem;
    }

    .btn {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      min-height: 50px;
      padding: 0.9rem 1.35rem;
      border-radius: 999px;
      font-weight: 800;
      transition: 0.25s ease;
      cursor: pointer;
      border: 2px solid transparent;
    }

    .btn-primary {
      background: var(--crest-gold);
      color: var(--crest-green-dark);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow);
    }

    .btn-secondary {
      background: transparent;
      color: var(--crest-white);
      border-color: rgba(255, 255, 255, 0.55);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.08);
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(140px, 1fr));
      gap: 1rem;
      max-width: 760px;
      margin-top: 2.3rem;
    }

    .stat-card {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: var(--radius);
      padding: 1.2rem;
      backdrop-filter: blur(6px);
    }

    .stat-number {
      display: block;
      font-size: 2.35rem;
      color: var(--crest-gold-soft);
      font-weight: 800;
    }

    .stat-label {
      font-size: 0.95rem;
    }

    .banner-strip {
      background: linear-gradient(90deg, var(--crest-gold), #e5bf58, var(--crest-gold));
      color: var(--crest-green-dark);
      font-weight: 800;
      overflow: hidden;
    }

    .banner-strip-wrap {
      min-height: 56px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 1.5rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .section {
      padding: 5rem 0;
    }

    .alt-section {
      background: var(--crest-gray);
    }

    .section h2 {
      font-size: clamp(2rem, 4vw, 3.1rem);
      color: var(--crest-green-dark);
      margin-bottom: 1rem;
    }

    .section-intro {
      max-width: 760px;
      margin-bottom: 2rem;
    }

    .section-head {
      margin-bottom: 2rem;
    }

    .two-col {
      display: grid;
      grid-template-columns: 1.25fr 1fr;
      gap: 2rem;
      align-items: start;
    }

    .mini-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(140px, 1fr));
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .mini-card,
    .info-panel,
    .timeline-card,
    .profile-card,
    .rivalry-card {
      background: var(--crest-white);
      border: 1px solid var(--crest-border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .mini-card {
      padding: 1rem;
    }

    .mini-card h3 {
      color: var(--crest-green-dark);
      margin-bottom: 0.35rem;
      font-size: 1.2rem;
    }

    .info-panel {
      padding: 1.5rem;
    }

    .info-panel h3 {
      color: var(--crest-green-dark);
      margin-bottom: 1rem;
      font-size: 1.6rem;
    }

    .info-list {
      list-style: none;
      margin-bottom: 1.25rem;
    }

    .info-list li {
      padding: 0.7rem 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .info-list li:last-child {
      border-bottom: none;
    }

    .countdown-box {
      margin-top: 1rem;
      padding: 1rem;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(15, 90, 50, 0.08), rgba(215, 169, 40, 0.12));
    }

    .countdown-label {
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-weight: 800;
      color: var(--crest-green-dark);
      margin-bottom: 0.5rem;
    }

    .countdown {
      font-size: 1.5rem;
      color: var(--crest-green-dark);
      font-weight: 800;
    }

    .chant-btn {
      margin-top: 1rem;
      width: 100%;
    }

    .chant-text {
      min-height: 26px;
      margin-top: 0.8rem;
      font-weight: 800;
      color: var(--crest-green-dark);
    }

    .timeline {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
      gap: 1.15rem;
    }

    .timeline-card,
    .profile-card,
    .rivalry-card {
      padding: 1.4rem;
    }

    .timeline-year {
      display: inline-block;
      margin-bottom: 0.8rem;
      padding: 0.38rem 0.75rem;
      border-radius: 999px;
      background: var(--crest-green);
      color: var(--crest-white);
      font-weight: 800;
    }

    .timeline-card h3,
    .profile-card h3,
    .rivalry-card h3 {
      color: var(--crest-green-dark);
      font-size: 1.45rem;
      margin-bottom: 0.55rem;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 1.15rem;
    }

    .profile-role {
      color: var(--crest-gold);
      font-weight: 800;
      margin-bottom: 0.55rem;
    }

    .rivalry-wrap {
      display: grid;
      grid-template-columns: 1.2fr 0.9fr;
      gap: 2rem;
      align-items: center;
    }

    .rivalry-card {
      background: linear-gradient(135deg, rgba(8, 44, 25, 0.96), rgba(15, 90, 50, 0.96));
      color: var(--crest-white);
      border: none;
    }

    .rivalry-card h3 {
      color: var(--crest-gold-soft);
    }

    .rivalry-card ul {
      list-style: none;
      display: grid;
      gap: 0.7rem;
      margin-top: 1rem;
    }

    .rivalry-card li {
      padding: 0.7rem 0.85rem;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.08);
      font-weight: 700;
    }

    .links-list {
      display: grid;
      gap: 0.9rem;
      margin-top: 1rem;
    }

    .resource-link {
      display: block;
      padding: 1rem 1.15rem;
      border-radius: 16px;
      border: 1px solid var(--crest-border);
      background: var(--crest-white);
      color: var(--crest-green-dark);
      font-weight: 800;
      transition: 0.25s ease;
      box-shadow: var(--shadow);
    }

    .resource-link:hover {
      background: var(--crest-green);
      color: var(--crest-white);
      transform: translateY(-2px);
    }

    form {
      display: grid;
      gap: 0.75rem;
    }

    label {
      font-weight: 800;
      color: var(--crest-green-dark);
    }

    input,
    textarea {
      width: 100%;
      border: 1px solid rgba(31, 41, 51, 0.16);
      border-radius: 12px;
      padding: 0.9rem 1rem;
      font: inherit;
    }

    input:focus,
    textarea:focus {
      outline: 2px solid rgba(215, 169, 40, 0.34);
      border-color: var(--crest-gold);
    }

    .full-width {
      width: 100%;
    }

    .form-message {
      min-height: 24px;
      font-weight: 800;
    }

    .site-footer {
      background: var(--crest-green-dark);
      color: var(--crest-white);
      padding: 1.2rem 0;
    }

    .footer-wrap {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .hidden {
      display: none !important;
    }

    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }

    .reveal.show {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 900px) {
      .two-col,
      .rivalry-wrap {
        display: grid;
        grid-template-columns: 1fr;
      }

      .hero-stats {
        grid-template-columns: 1fr;
        max-width: 360px;
      }

      .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        right: 4%;
        top: 74px;
        width: 220px;
        background: var(--crest-green-dark);
        padding: 1rem;
        border-radius: 16px;
        box-shadow: var(--shadow);
      }

      .nav.show {
        display: flex;
      }

      .menu-toggle {
        display: block;
      }
    }

    @media (max-width: 560px) {
      .section {
        padding: 4rem 0;
      }

      .hero {
        min-height: 84vh;
      }

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

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

      .banner-strip-wrap {
        gap: 0.8rem;
        padding: 0.7rem 0;
        font-size: 0.78rem;
      }
    }
    .table-wrap {
      overflow-x: auto;
      margin-top: 1.5rem;
    }

    .history-table {
      width: 100%;
      border-collapse: collapse;
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .history-table th {
      background: var(--crest-green-dark);
      color: white;
      padding: 12px;
      text-align: left;
    }

    .history-table td {
      padding: 10px 12px;
      border-bottom: 1px solid #eee;
    }

    .history-table tr:hover {
      background: #f8fafc;
    }

    /* Highlight championships */
    .champ {
      color: var(--crest-gold);
      font-weight: 800;
    }

    /* Highlight runner-ups */
    .runner {
      color: #555;
      font-weight: 700;
    }
    .history-table td {
      font-size: 14px;
    }


/* ==============================
   Ultimate History Archive
   ============================== */

.archive-shell {
  background: var(--crest-white);
  border: 1px solid var(--crest-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.archive-trustbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(15, 90, 50, 0.08), rgba(215, 169, 40, 0.12));
  border: 1px solid var(--crest-border);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
}

.archive-trustbar strong {
  color: var(--crest-green-dark);
}

.archive-search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.archive-input,
.archive-select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(31, 41, 51, 0.16);
  border-radius: 14px;
  font: inherit;
  background: #fff;
  color: var(--crest-text);
}

.archive-input:focus,
.archive-select:focus {
  outline: 2px solid rgba(215, 169, 40, 0.34);
  border-color: var(--crest-gold);
}

.archive-hub-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.archive-hub {
  text-align: left;
  border: 1px solid var(--crest-border);
  background: #f8faf9;
  color: var(--crest-green-dark);
  border-radius: 16px;
  padding: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.archive-hub:hover {
  transform: translateY(-2px);
}

.archive-hub.active {
  background: var(--crest-green-dark);
  color: var(--crest-white);
}

.archive-hub strong,
.archive-hub span {
  display: block;
}

.archive-hub span {
  font-size: 0.84rem;
  opacity: 0.82;
  margin-top: 0.2rem;
}

.archive-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.archive-chip,
.archive-action,
.archive-toggle {
  border: none;
  border-radius: 999px;
  padding: 0.7rem 0.95rem;
  font-weight: 800;
  cursor: pointer;
}

.archive-action,
.archive-toggle {
  background: var(--crest-green-dark);
  color: var(--crest-white);
}

.archive-chip {
  background: rgba(15, 90, 50, 0.08);
  color: var(--crest-green-dark);
  border: 1px solid rgba(15, 90, 50, 0.08);
}

.archive-filter-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(130px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.archive-meta {
  color: var(--crest-green-dark);
  font-weight: 800;
  margin-bottom: 1rem;
}

.archive-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.archive-summary-card {
  background: #f8faf9;
  border: 1px solid var(--crest-border);
  border-radius: 16px;
  padding: 0.9rem;
}

.archive-summary-card span {
  display: block;
  color: var(--crest-gold);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.archive-summary-card strong {
  display: block;
  color: var(--crest-green-dark);
  font-size: 1.45rem;
  margin-top: 0.2rem;
}

.archive-results {
  display: grid;
  gap: 1rem;
}

.archive-card {
  background: var(--crest-white);
  border: 1px solid var(--crest-border);
  border-radius: 18px;
  overflow: hidden;
}

.archive-card-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
}

.archive-card h3 {
  color: var(--crest-green-dark);
  margin: 0.35rem 0;
}

.archive-card p {
  margin: 0;
}

.archive-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.archive-badges span {
  background: rgba(15, 90, 50, 0.08);
  color: var(--crest-green-dark);
  border-radius: 999px;
  padding: 0.22rem 0.55rem;
  font-size: 0.76rem;
  font-weight: 800;
}

.archive-source-note {
  margin-top: 0.75rem;
  font-size: 0.86rem;
  color: #5b6972;
  font-weight: 700;
}

.archive-card-body {
  display: none;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: #fbfcfc;
  padding: 1rem;
}

.archive-card-body.show {
  display: block;
}

.archive-lines {
  display: grid;
  gap: 0.5rem;
}

.archive-line {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 0.65rem 0.8rem;
}

.archive-hit {
  background: rgba(215, 169, 40, 0.35);
  border-radius: 4px;
  padding: 0 0.1rem;
}

.archive-empty {
  background: #fff;
  border: 1px dashed var(--crest-border);
  border-radius: 18px;
  padding: 1.25rem;
  text-align: center;
}

@media (max-width: 1100px) {
  .archive-hub-grid {
    grid-template-columns: repeat(3, minmax(160px, 1fr));
  }

  .archive-filter-grid,
  .archive-summary-grid {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
  }
}

@media (max-width: 700px) {
  .archive-search-row,
  .archive-filter-grid,
  .archive-summary-grid,
  .archive-hub-grid {
    grid-template-columns: 1fr;
  }

  .archive-card-head {
    flex-direction: column;
  }
}


/* ==============================
   Fundraiser and Sponsor Flow
   ============================== */

.fundraiser-section {
  background:
    radial-gradient(circle at 8% 8%, rgba(215, 169, 40, 0.18), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f4f6f7 100%);
}

.fundraiser-feature,
.sponsorship-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.4rem;
  align-items: center;
  margin-top: 1.5rem;
}

.fundraiser-copy,
.sponsorship-copy,
.poster-card,
.sponsor-sheet-card,
.sponsor-card {
  background: var(--crest-white);
  border: 1px solid var(--crest-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.fundraiser-copy,
.sponsorship-copy {
  padding: 1.5rem;
}

.fundraiser-copy h3,
.sponsor-card h3 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  color: var(--crest-green-dark);
  letter-spacing: 0.02em;
}

.fundraiser-copy h3 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.05;
  margin: 0.8rem 0;
}

.event-pill,
.sponsor-label {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 0.38rem 0.75rem;
  background: var(--crest-green-dark);
  color: var(--crest-gold-soft);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.event-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 0.75rem;
  margin: 1.2rem 0;
}

.event-details-grid div {
  border: 1px solid var(--crest-border);
  border-radius: 16px;
  padding: 0.95rem;
  background: #f8faf9;
}

.event-details-grid strong {
  display: block;
  color: var(--crest-green-dark);
  font-size: 1.35rem;
  line-height: 1;
}

.event-details-grid span {
  display: block;
  margin-top: 0.35rem;
  font-weight: 700;
  color: #53616b;
}

.fundraiser-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-outline-dark {
  color: var(--crest-green-dark);
  border-color: rgba(15, 90, 50, 0.3);
  background: transparent;
}

.btn-outline-dark:hover {
  background: rgba(15, 90, 50, 0.08);
}

.poster-card,
.sponsor-sheet-card {
  overflow: hidden;
}

.poster-card img,
.sponsor-sheet-card img {
  width: 100%;
  display: block;
}

.poster-card figcaption {
  padding: 0.85rem 1rem;
  color: #53616b;
  font-weight: 700;
  font-size: 0.92rem;
}

.sponsor-showcase {
  margin-top: 3rem;
}

.compact-head {
  margin-bottom: 1.1rem;
}

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

.sponsor-card {
  padding: 1.1rem;
}

.title-sponsor {
  color: var(--crest-white);
  background: linear-gradient(135deg, #061b44, #082c19);
  border: none;
}

.title-sponsor h3,
.title-sponsor p {
  color: var(--crest-white);
}

.image-sponsor {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  align-items: center;
}

.image-sponsor img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--crest-border);
  background: #fff;
}

.sponsorship-panel {
  margin-top: 1.5rem;
  grid-template-columns: 0.95fr 1.05fr;
}

.tier-list {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

.tier-list span {
  display: block;
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  background: rgba(15, 90, 50, 0.08);
  color: var(--crest-green-dark);
  font-weight: 800;
}

.contact-panel p {
  margin-bottom: 1rem;
}

.contact-stack {
  display: grid;
  gap: 0.75rem;
}

@media (max-width: 900px) {
  .fundraiser-feature,
  .sponsorship-panel,
  .sponsor-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .event-details-grid,
  .image-sponsor {
    grid-template-columns: 1fr;
  }

  .image-sponsor img {
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: contain;
  }
}

/* Archive request-first mobile cleanup */
.archive-start {
  display: grid;
  gap: 0.35rem;
  color: var(--crest-green-dark);
}

.archive-start strong {
  font-size: 1.05rem;
}

.archive-start span {
  color: #5b6972;
  font-weight: 700;
}

@media (max-width: 700px) {
  .archive-shell {
    padding: 0.75rem;
  }

  .archive-trustbar,
  .archive-card-head,
  .archive-card-body {
    padding: 0.85rem;
  }

  .archive-hub,
  .archive-input,
  .archive-select,
  .archive-action,
  .archive-chip,
  .archive-toggle {
    min-height: 46px;
  }

  .archive-results {
    gap: 0.75rem;
  }
}

/* Top support section additions */
.top-support-section {
  padding-top: 4rem;
}

.advert-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.advert-card {
  background: var(--crest-white);
  border: 1px solid var(--crest-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.advert-feature {
  grid-column: span 2;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1.05fr);
  grid-template-rows: 1fr;
  align-items: center;
}

.advert-card img {
  width: 100%;
  height: 100%;
  max-height: 720px;
  object-fit: cover;
  display: block;
  background: #fff;
}

.advert-card:not(.advert-feature) img {
  height: 440px;
  object-fit: contain;
  padding: 0.8rem;
}

.advert-copy {
  padding: 1.4rem;
}

.advert-copy h3,
.fellowship-copy h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  color: var(--crest-green-dark);
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.advert-copy h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.6rem);
  margin: 0.8rem 0;
}

.small-copy p {
  margin-bottom: 0;
}

.fellowship-panel {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.25rem;
  align-items: stretch;
}

.fellowship-copy {
  background: linear-gradient(135deg, var(--crest-green-dark), #082c19);
  color: var(--crest-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fellowship-copy h2,
.fellowship-copy p,
.fellowship-copy .section-tag {
  color: var(--crest-white);
}

.fellowship-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.fellowship-gallery figure {
  margin: 0;
  background: var(--crest-white);
  border: 1px solid var(--crest-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.fellowship-gallery img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.fellowship-gallery figcaption {
  padding: 0.75rem 0.9rem;
  font-weight: 800;
  color: var(--crest-green-dark);
}

@media (max-width: 900px) {
  .advert-showcase,
  .advert-feature,
  .fellowship-panel,
  .fellowship-gallery {
    grid-template-columns: 1fr;
  }

  .advert-feature {
    grid-column: span 1;
  }

  .advert-card img,
  .advert-card:not(.advert-feature) img {
    height: auto;
    max-height: none;
    object-fit: contain;
  }
}

@media (max-width: 560px) {
  .top-support-section {
    padding-top: 3rem;
  }

  .advert-copy,
  .fellowship-copy {
    padding: 1rem;
  }

  .fellowship-gallery img {
    height: 220px;
  }
}

/* v9 featured flyer wall */
.top-flyer-wall {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0 1rem;
}

.top-flyer-card {
  position: relative;
  min-height: 360px;
  background: #fff;
  border: 1px solid var(--crest-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.top-flyer-card.main-flyer {
  grid-row: span 2;
  min-height: 760px;
}

.top-flyer-card.schedule-flyer {
  grid-column: span 2;
  min-height: 420px;
}

.top-flyer-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #fff;
  padding: 0.4rem;
}

.top-flyer-label {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  padding: 0.8rem 0.95rem;
  border-radius: 999px;
  background: rgba(8, 44, 25, 0.94);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,0.22);
}

.top-flyer-label span {
  color: var(--crest-gold-soft);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.top-flyer-label strong {
  color: #fff;
  font-size: 0.95rem;
  white-space: nowrap;
}

.top-flyer-actions {
  justify-content: center;
  margin: 1.25rem 0 2rem;
}

@media (max-width: 1000px) {
  .top-flyer-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .top-flyer-card.main-flyer,
  .top-flyer-card.schedule-flyer {
    grid-row: span 1;
    grid-column: span 2;
    min-height: auto;
  }

  .top-flyer-card {
    min-height: auto;
  }

  .top-flyer-card img {
    height: auto;
  }
}

@media (max-width: 620px) {
  .top-flyer-wall {
    grid-template-columns: 1fr;
  }

  .top-flyer-card.main-flyer,
  .top-flyer-card.schedule-flyer {
    grid-column: span 1;
  }

  .top-flyer-label {
    position: static;
    border-radius: 0;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* v10 clean support layout */
.support-hub {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.25rem;
}

.support-hero-card,
.support-feature-card,
.support-mini-card {
  background: var(--crest-white);
  border: 1px solid var(--crest-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.support-hero-card {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(260px, 0.9fr);
  align-items: center;
  border-top: 8px solid var(--crest-gold);
}

.support-card-media {
  background: #fff;
  padding: 0.85rem;
}

.support-card-media img {
  width: 100%;
  display: block;
  border-radius: 18px;
  object-fit: contain;
  background: #fff;
}

.schedule-card .support-card-media img {
  max-height: 520px;
}

.support-card-copy {
  padding: clamp(1.1rem, 2.4vw, 2rem);
}

.support-card-copy h3,
.support-mini-card h3 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  color: var(--crest-green-dark);
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0.7rem 0;
}

.support-card-copy h3 {
  font-size: clamp(1.8rem, 3vw, 3.25rem);
}

.support-feature-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.support-feature-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border-top: 8px solid var(--crest-green);
}

.tall-media img {
  max-height: 680px;
}

.support-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.support-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.support-mini-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-left: 8px solid var(--crest-gold);
}

.support-mini-card img {
  width: 100%;
  max-height: 240px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
}

.support-mini-card p {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .support-hero-card,
  .support-feature-row,
  .support-mini-grid {
    grid-template-columns: 1fr;
  }

  .support-mini-card {
    grid-template-columns: 140px 1fr;
  }
}

@media (max-width: 620px) {
  .support-card-media {
    padding: 0.5rem;
  }

  .support-card-copy {
    padding: 1rem;
  }

  .support-mini-card {
    grid-template-columns: 1fr;
  }

  .support-mini-card img {
    max-height: none;
  }
}

/* v11 schedule placement and image zoom */
.schedule-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(215, 169, 40, 0.18), transparent 28%),
    linear-gradient(135deg, #f7f9f6, #ffffff);
}

.schedule-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 1.15fr);
  gap: 1.5rem;
  align-items: center;
}

.schedule-copy {
  background: linear-gradient(135deg, var(--crest-green-dark), var(--crest-green));
  color: var(--crest-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 2.4vw, 2rem);
  border-top: 8px solid var(--crest-gold);
}

.schedule-copy h2,
.schedule-copy p,
.schedule-copy .section-tag {
  color: var(--crest-white);
}

.schedule-copy .btn {
  margin-top: 1rem;
}

.schedule-image-card {
  background: var(--crest-white);
  border: 1px solid var(--crest-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.8rem;
}

.schedule-image-card img {
  width: 100%;
  display: block;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
}

.zoomable-image {
  cursor: zoom-in;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(3, 12, 7, 0.88);
}

.image-lightbox.show {
  display: flex;
}

.image-lightbox img {
  max-width: min(96vw, 1200px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 999px;
  background: var(--crest-gold);
  color: var(--crest-green-dark);
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .schedule-wrap {
    grid-template-columns: 1fr;
  }
}


/* ==============================
   NFL Talent Section
   ============================== */
.nfl-talent-section {
  padding: 5rem 0;
  background:
    radial-gradient(circle at 14% 12%, rgba(215, 169, 40, 0.16), transparent 28%),
    linear-gradient(135deg, var(--crest-green-dark), #0f2f1d);
  color: var(--crest-white);
}

.nfl-talent-section .section-header {
  max-width: 850px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--crest-gold-soft);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.nfl-talent-section h2 {
  color: var(--crest-white);
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 0.8rem;
}

.nfl-talent-section .section-header p {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
}

.nfl-talent-card {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 1.5rem;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(215, 169, 40, 0.32);
  border-radius: var(--radius);
  padding: clamp(1rem, 2.4vw, 1.75rem);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.nfl-talent-content h3 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  color: var(--crest-gold-soft);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
}

.nfl-talent-content > p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  margin-bottom: 1.35rem;
}

.nfl-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.25rem 0;
}

.nfl-filter-btn {
  border: 1px solid rgba(215, 169, 40, 0.55);
  background: rgba(255, 255, 255, 0.08);
  color: var(--crest-white);
  padding: 0.65rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: 0.2s ease;
}

.nfl-filter-btn:hover,
.nfl-filter-btn.active {
  background: var(--crest-gold);
  color: var(--crest-green-dark);
}

.nfl-name-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.nfl-name-card {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 1rem;
}

.nfl-name-card.hidden {
  display: none;
}

.nfl-name-card h4 {
  margin-bottom: 0.35rem;
  color: var(--crest-white);
  font-size: 1.12rem;
}

.nfl-name-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  margin: 0;
}

.nfl-team-line {
  display: block;
  margin-top: 0.65rem;
  color: var(--crest-gold-soft);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
}

.nfl-talent-badge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  min-height: 220px;
  background: linear-gradient(160deg, var(--crest-gold), #8b6a21);
  color: var(--crest-green-dark);
  border-radius: 22px;
  text-align: center;
}

.nfl-talent-badge span {
  font-size: 4rem;
  font-weight: 950;
  line-height: 1;
}

.nfl-talent-badge strong {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .nfl-talent-card {
    grid-template-columns: 1fr;
  }

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

  .nfl-talent-badge {
    min-height: 150px;
  }
}

@media (max-width: 620px) {
  .nfl-name-grid {
    grid-template-columns: 1fr;
  }

  .nfl-filter-row {
    justify-content: center;
  }

  .nfl-talent-badge span {
    font-size: 3rem;
  }
}

/* ==============================
   Smart Archive Result Cleanup
   ============================== */
.archive-card.is-best-match {
  border-color: rgba(215, 169, 40, 0.7);
}

.archive-card-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-bottom: 0.6rem;
}

.archive-match-reasons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.75rem 0 0;
}

.archive-match-reasons span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 0.28rem 0.58rem;
  background: rgba(215, 169, 40, 0.18);
  color: var(--crest-green-dark);
  border: 1px solid rgba(215, 169, 40, 0.38);
  font-size: 0.78rem;
  font-weight: 800;
}

.archive-fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 0.6rem;
  margin: 0.8rem 0 0;
}

.archive-fact {
  border: 1px solid var(--crest-border);
  border-radius: 14px;
  background: #f8faf9;
  padding: 0.7rem 0.8rem;
}

.archive-fact span {
  display: block;
  color: #5b6972;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.22rem;
}

.archive-fact strong {
  display: block;
  color: var(--crest-green-dark);
  font-size: 0.96rem;
  line-height: 1.25;
}

.archive-preview-line {
  margin-top: 0.75rem;
  padding: 0.75rem 0.85rem;
  border-left: 4px solid var(--crest-gold);
  border-radius: 12px;
  background: rgba(215, 169, 40, 0.12);
  color: var(--crest-green-dark);
  font-weight: 800;
}

.archive-card-body h4 {
  color: var(--crest-green-dark);
  margin-bottom: 0.65rem;
}

.archive-line.duplicate-muted {
  opacity: 0.75;
}

@media (max-width: 700px) {
  .archive-fact-grid {
    grid-template-columns: 1fr;
  }

  .archive-match-reasons span {
    font-size: 0.74rem;
  }
}


/* ==============================
   Charger Media Videos
   ============================== */
.media-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(215, 169, 40, 0.16), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f4f6f7 100%);
}

.media-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.media-video-card,
.media-image-card {
  background: var(--crest-white);
  border: 1px solid var(--crest-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.media-image-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 0.55fr;
  align-items: center;
}

.media-video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.media-video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.media-image-card img {
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: contain;
  background: #000;
  display: block;
}

.media-copy {
  padding: 1.2rem;
}

.media-copy h3 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  color: var(--crest-green-dark);
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.05;
  margin: 0.75rem 0 0.45rem;
}

.media-copy p {
  color: var(--crest-text);
  font-weight: 650;
}

@media (max-width: 900px) {
  .media-feature-grid,
  .media-image-card {
    grid-template-columns: 1fr;
  }

  .media-image-card {
    grid-column: auto;
  }

  .media-image-card img {
    height: auto;
    max-height: none;
  }
}


/* v16 sponsor video placement */
.sponsor-video-showcase {
  margin-top: 2rem;
}

.sponsor-video-showcase .section-intro {
  margin-bottom: 1.1rem;
}

.sponsor-video-grid {
  margin-top: 0.75rem;
}

.scoreboard-only-grid {
  grid-template-columns: 1fr;
}

.scoreboard-only-grid .media-image-card {
  grid-column: auto;
}

/* v18 sponsor video cards */
.support-mini-card-with-video {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
}

.support-mini-content {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1rem;
  align-items: center;
}

.support-mini-content img {
  width: 100%;
  max-height: 230px;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--crest-border);
}

.support-video-box {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--crest-border);
  background: var(--crest-green-dark);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.support-video-box video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  background: #000;
}

.support-video-contain video {
  object-fit: contain;
  background: #000;
}

.support-video-caption {
  padding: 1rem;
  background: linear-gradient(135deg, var(--crest-green-dark), var(--crest-green));
}

.support-video-caption h4 {
  margin-top: 0.5rem;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.2;
}

.support-video-caption p {
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (max-width: 700px) {
  .support-mini-content {
    grid-template-columns: 1fr;
  }

  .support-mini-content img {
    max-height: none;
  }
}


/* v19 scoreboard single image cleanup */
.scoreboard-section {
  background:
    radial-gradient(circle at 8% 10%, rgba(215, 169, 40, 0.12), transparent 28%),
    var(--crest-gray);
}

.scoreboard-single-card {
  width: min(900px, 100%);
  margin: 0 auto;
  background: var(--crest-white);
  border: 1px solid var(--crest-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.scoreboard-single-card img {
  width: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}


/* Charger blanket fundraiser image */
.top-fundraiser-image {
  width: min(920px, 100%);
  margin: 0 auto 2rem;
  background: var(--crest-white);
  border: 1px solid var(--crest-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.top-fundraiser-image img {
  width: 100%;
  display: block;
  object-fit: contain;
  background: #d6cc00;
}

@media (max-width: 700px) {
  .top-fundraiser-image {
    margin-bottom: 1.4rem;
  }
}
