:root {
  --brand-red: #c52233;
  --brand-red-dark: #8f1322;
  --brand-gold: #e0b33b;
  --ink: #17202a;
  --muted: #66717e;
  --paper: #ffffff;
  --soft: #f6f5f2;
  --line: #e7e4df;
  --shadow: rgba(23, 32, 42, 0.09);
  --display-font: Georgia, "Times New Roman", serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--brand-red-dark);
  text-decoration: none;
}

a:hover {
  color: var(--brand-red);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

h1,
h2 {
  font-family: var(--display-font);
  font-weight: 700;
  letter-spacing: -0.035em;
}

p {
  margin-bottom: 1rem;
}

.container {
  max-width: 1180px;
}

.eyebrow {
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-red);
}

.section {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.section-soft {
  background: var(--soft);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 2.25rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 15%, rgba(197, 34, 51, 0.09), transparent 28rem),
    linear-gradient(145deg, #f7f5f0 0%, #fff 62%);
  border-bottom: 1px solid var(--line);
}

.py-lg-6 {
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.hero-section h1 {
  max-width: 760px;
  font-size: clamp(3rem, 6vw, 5.25rem);
  line-height: 0.98;
  margin-bottom: 1.5rem;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.7;
  color: var(--muted);
  max-width: 640px;
}

.hero-panel,
.feature-box,
.contact-card,
.info-card,
.cta-card,
.schedule-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: 0 8px 24px var(--shadow);
}

.hero-panel {
  position: relative;
  padding: 2rem;
  color: #fff;
  background: #17202a;
  border: 0;
  border-top: 4px solid var(--brand-red);
  border-radius: 1.25rem;
  box-shadow: 0 24px 60px rgba(23, 32, 42, 0.2);
}

.panel-header {
  margin-bottom: 1rem;
}

.panel-header h2 {
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #fff;
}

.panel-header p {
  margin: 0.35rem 0 1.5rem;
  color: #aeb7c1;
}

.season-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.season-status-dot {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #58ce82;
  box-shadow: 0 0 0 4px rgba(88, 206, 130, 0.13);
}

.bg-success-soft {
  background: rgba(22, 163, 74, 0.12) !important;
}

.text-success {
  color: #166534 !important;
}

.season-summary {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.season-summary li {
  display: grid;
  grid-template-columns: 6.25rem 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: #fff;
}

.season-summary li > span {
  color: #9da8b3;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.season-summary li > strong {
  font-size: 0.95rem;
  font-weight: 600;
}

.info-card {
  padding: 1.5rem;
}

.metric {
  max-width: 15rem;
  font-family: var(--display-font);
  font-size: 1.35rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 0;
}

.schedule-box {
  overflow: hidden;
  padding: 0;
}

.schedule-item {
  display: grid;
  grid-template-columns: minmax(110px, 0.7fr) 2fr;
  gap: 1.5rem;
  padding: 1.5rem;
  border-top: 1px solid var(--line);
}

.schedule-item:first-child {
  border-top: none;
}

.schedule-day {
  font-weight: 700;
  color: var(--brand-red-dark);
}

.schedule-date {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}

.schedule-dot {
  width: 0.55rem;
  height: 0.55rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand-red);
}

.schedule-time {
  margin-bottom: 0.25rem;
  font-weight: 750;
}

.schedule-dates {
  margin-bottom: 0.25rem;
  color: var(--brand-red-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.section-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-weight: 750;
}

.section-link span {
  display: inline-block;
  margin-left: 0.25rem;
  transition: transform 150ms ease;
}

.section-link:hover span {
  transform: translateX(3px);
}

.schedule-meta {
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.announcement-stack {
  display: grid;
  gap: 1rem;
}

.announcement-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand-red);
  border-radius: 0.85rem;
  padding: 1.2rem 1.25rem;
  box-shadow: 0 6px 20px rgba(23, 32, 42, 0.04);
}

.announcement-closure {
  position: relative;
  padding: 1.5rem 1.6rem;
  background: linear-gradient(135deg, #fff5ed, #fffaf7);
  border-color: #eabda8;
  border-left: 6px solid #c94b18;
  box-shadow: 0 14px 32px rgba(169, 65, 22, 0.12);
}

.announcement-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--brand-red);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.announcement-closure .announcement-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  color: #fff;
  background: #b83d10;
}

.announcement-closure .announcement-label::before {
  content: "!";
  display: grid;
  width: 1rem;
  height: 1rem;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 50%;
  font-size: 0.65rem;
  line-height: 1;
}

.announcement-closure h3 {
  color: #7e280b;
  font-size: 1.2rem;
}

.announcement-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.announcement-item p,
.announcement-item ul {
  margin-bottom: 0;
  color: var(--muted);
}

.location-card,
.contact-card,
.feature-box {
  padding: 1.5rem;
}

.location-card-with-map {
  overflow: hidden;
  padding: 0;
}

.location-map {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.location-card-content {
  padding: 1.5rem;
}

.location-card h3 {
  font-size: 1.2rem;
}

.trophy-section {
  background: #fff;
}

.trophy-section .section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.35rem);
}

.trophy-copy {
  max-width: 30rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.trophy-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 1.25rem;
  background: var(--soft);
  box-shadow: 0 24px 60px rgba(23, 32, 42, 0.16);
}

.trophy-photo::after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(14, 20, 26, 0.68));
}

.trophy-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.trophy-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 1.5rem;
  bottom: 1.25rem;
  left: 1.5rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
}

.story-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: var(--paper);
  box-shadow: 0 18px 45px rgba(23, 32, 42, 0.1);
}

.story-photo {
  position: relative;
  display: block;
  min-height: 470px;
  overflow: hidden;
  color: #fff;
  background: #202830;
}

.story-photo::after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, rgba(12, 17, 22, 0.75));
}

.story-photo img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  transition: transform 350ms ease;
}

.story-photo > span {
  position: absolute;
  z-index: 1;
  right: 1.5rem;
  bottom: 1.35rem;
  left: 1.5rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.story-photo:hover img {
  transform: scale(1.025);
}

.story-content {
  padding: clamp(2rem, 5vw, 4rem);
}

.story-content h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.story-content > p:not(.eyebrow) {
  margin-bottom: 1.75rem;
  color: var(--muted);
}

.story-download {
  display: inline-block;
}

.download-meta {
  display: block;
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.page-hero {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 0;
}

.about-intro-title {
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.history-facts dl > div {
  display: grid;
  grid-template-columns: 5rem 1fr;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.history-facts dt {
  color: var(--brand-red);
  font-family: var(--display-font);
  font-size: 1.75rem;
}

.history-facts dd {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.history-timeline {
  position: relative;
  max-width: 900px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.history-timeline::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  bottom: 0.75rem;
  left: 5.4rem;
  width: 1px;
  background: #d9d4cd;
}

.history-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 4.4rem 1fr;
  gap: 2rem;
  padding: 0 0 2.25rem;
}

.history-timeline li:last-child {
  padding-bottom: 0;
}

.history-timeline li::before {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: 5.05rem;
  width: 0.75rem;
  height: 0.75rem;
  border: 3px solid var(--soft);
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 0 0 0 1px var(--brand-red);
}

.history-year {
  color: var(--brand-red-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.history-timeline h3 {
  margin-bottom: 0.35rem;
  font-size: 1.15rem;
}

.history-timeline p {
  margin: 0;
  color: var(--muted);
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
  color: #fff;
  background: linear-gradient(125deg, var(--brand-red-dark), var(--brand-red));
  border: 0;
  box-shadow: 0 22px 50px rgba(143, 19, 34, 0.2);
}

.cta-card .eyebrow,
.cta-card h2 {
  color: #fff;
}

.cta-card h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.cta-card p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255,255,255,0.78);
}

.contact-form,
.feature-box,
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.contact-form {
  padding: 1.5rem;
}

.contact-card-title {
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.contact-roster > div {
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}

.contact-roster dt {
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-roster dd {
  margin: 0.15rem 0 0;
  color: var(--ink);
  font-weight: 700;
}

.form-control {
  border-radius: 0.75rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
}

.resource-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(23, 32, 42, 0.05);
}

.resource-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.resource-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.resource-format {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--brand-red);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.resource-link {
  font-weight: 750;
}

.site-footer {
  background: #111820;
  color: #e5e7eb;
  padding-top: 4.5rem;
  padding-bottom: 1.5rem;
}

.site-footer a {
  color: #d1d5db;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
}

.site-footer h4 {
  margin-bottom: 1rem;
  color: #8f9aa5;
  font-family: inherit;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer li + li {
  margin-top: 0.6rem;
}

.site-footer p {
  max-width: 360px;
  color: #98a3ae;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #fff !important;
  font-size: 1.1rem;
  font-weight: 800;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 3rem;
  padding-top: 1.25rem;
  font-size: 0.85rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink) !important;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: inline-grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--brand-red);
  font-family: var(--display-font);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
}

.brand-copy {
  font-size: 0.98rem;
  font-weight: 500;
}

.navbar {
  min-height: 74px;
  border-color: rgba(23, 32, 42, 0.09) !important;
  background: rgba(255,255,255,0.94) !important;
  backdrop-filter: blur(12px);
}

.navbar-toggler {
  padding: 0.45rem;
  border: 0;
  border-radius: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(197, 34, 51, 0.14);
}

.nav-link {
  position: relative;
  padding: 0.6rem 0.8rem !important;
  color: var(--ink) !important;
  font-size: 0.9rem;
  font-weight: 650;
}

.nav-link.active,
.nav-link:hover {
  color: var(--brand-red) !important;
}

.btn {
  border-radius: 0.65rem;
  font-weight: 750;
}

.btn-lg {
  padding: 0.8rem 1.25rem;
  font-size: 0.98rem;
}

.btn-primary {
  --bs-btn-bg: var(--brand-red);
  --bs-btn-border-color: var(--brand-red);
  --bs-btn-hover-bg: var(--brand-red-dark);
  --bs-btn-hover-border-color: var(--brand-red-dark);
}

.btn-outline-primary {
  --bs-btn-color: var(--brand-red-dark);
  --bs-btn-border-color: #c9bfc0;
  --bs-btn-hover-bg: var(--brand-red-dark);
  --bs-btn-hover-border-color: var(--brand-red-dark);
}

.custom-table th,
.custom-table td {
  padding: 0.9rem 1rem;
}

.fee-schedule {
  overflow: hidden;
  margin-bottom: 0;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
}

.fee-schedule caption {
  color: var(--ink);
  font-weight: 750;
}

.fee-schedule thead th {
  color: #fff;
  background: #17202a;
  border-color: #2b3540;
}

.fee-schedule tbody tr:nth-child(even) > * {
  background: var(--soft);
}

.fee-schedule .fee-early-row > * {
  color: #19633b;
  background: #edf8f1;
}

.fee-notes {
  margin-top: 1.25rem;
  padding: 1.25rem;
  border-left: 3px solid var(--brand-red);
  color: var(--muted);
  background: var(--soft);
}

.small-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--brand-red);
  margin-bottom: 0.75rem;
}

.check-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.75rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-red);
  font-weight: 700;
}

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

  .hero-section h1 {
    font-size: clamp(2.1rem, 8vw, 3.2rem);
  }

  .navbar-collapse {
    margin-top: 0.75rem;
    padding: 0.75rem 0 1rem;
    border-top: 1px solid var(--line);
  }

  .nav-link {
    padding: 0.7rem 0 !important;
  }
}

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

  .hero-panel,
  .cta-card,
  .contact-form,
  .schedule-box,
  .location-card,
  .feature-box,
  .contact-card,
  .info-card {
    padding: 1rem;
  }

  .hero-section .container {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .hero-copy .d-flex {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem !important;
  }

  .season-summary li {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .schedule-item {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 1.2rem;
  }

  .schedule-meta {
    font-size: 0.9rem;
  }

  .trophy-photo {
    aspect-ratio: 4 / 5;
    border-radius: 1rem;
  }

  .trophy-photo figcaption {
    right: 1rem;
    bottom: 0.9rem;
    left: 1rem;
  }

  .story-photo,
  .story-photo img {
    min-height: 300px;
  }

  .story-photo img {
    object-position: center;
  }

  .story-content {
    padding: 1.5rem;
  }

  .history-timeline::before {
    left: 3.85rem;
  }

  .history-timeline li {
    grid-template-columns: 3rem 1fr;
    gap: 1.5rem;
  }

  .history-timeline li::before {
    left: 3.5rem;
  }

  .cta-card .btn {
    margin-top: 0.75rem;
  }

  .btn-lg {
    width: 100%;
  }

  .brand-copy {
    font-size: 0.9rem;
  }
}

@media (max-width: 420px) {
  .hero-copy .d-flex {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .section-link span,
  .story-photo img {
    transition: none;
  }
}
