:root {
  --teal: #007f82;
  --teal-bright: #22c7c9;
  --teal-deep: #004b50;
  --charcoal: #111416;
  --black: #050708;
  --ink: #182126;
  --silver: #d8dde0;
  --muted: #879398;
  --white: #ffffff;
  --gold: #d8af2f;
  --line: rgba(255, 255, 255, 0.14);
  --panel: rgba(255, 255, 255, 0.06);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(0, 127, 130, 0.12), transparent 34%),
    radial-gradient(circle at 78% 6%, rgba(216, 175, 47, 0.12), transparent 24%),
    var(--black);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  background: var(--white);
  color: var(--black);
  padding: 10px 14px;
  border-radius: 4px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 7, 8, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.score-strip {
  background: linear-gradient(90deg, var(--teal-deep), var(--teal), var(--teal-deep));
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.score-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 34px;
  padding: 6px 20px;
  overflow-x: auto;
  white-space: nowrap;
}

.score-pill {
  background: var(--gold);
  color: var(--black);
  padding: 3px 8px;
  border-radius: 3px;
  font-weight: 800;
}

.score-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.3);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1380px;
  margin: 0 auto;
  padding: 16px 28px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  background: linear-gradient(145deg, var(--teal), var(--teal-deep));
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
  text-transform: uppercase;
}

.brand strong {
  font-size: 20px;
  letter-spacing: 0.1em;
}

.brand small {
  margin-top: 5px;
  color: var(--teal-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex: 1 1 auto;
}

.nav-menu > a,
.nav-item > button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  padding: 11px 12px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-menu > a:hover,
.nav-item > button:hover {
  color: var(--teal-bright);
}

.nav-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  min-width: 230px;
  padding: 8px;
  background: rgba(16, 20, 22, 0.98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.nav-item.is-open .nav-dropdown {
  display: grid;
}

.nav-dropdown a {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.nav-dropdown a:hover {
  background: rgba(34, 199, 201, 0.11);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  min-height: 560px;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 7, 8, 0.92) 0%, rgba(5, 7, 8, 0.78) 34%, rgba(5, 7, 8, 0.24) 100%),
    linear-gradient(180deg, transparent 0%, rgba(5, 7, 8, 0.78) 100%);
}

.hero-media,
.hero-slide {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 500ms ease, transform 900ms ease;
}

.hero-slide img,
.facility-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide img {
  filter: saturate(0.95) contrast(1.08) brightness(0.78);
}

.hero-slide:first-child img {
  object-position: center center;
}

.hero-slide:nth-child(2) img,
.hero-slide:nth-child(3) img {
  object-position: center center;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.media-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(135deg, rgba(0, 127, 130, 0.34), rgba(5, 7, 8, 0.6)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 14px);
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.hero-content {
  align-self: end;
  max-width: 600px;
  padding: 72px 28px 76px max(28px, calc((100vw - 1380px) / 2 + 28px));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 590px;
  font-size: clamp(32px, 3.8vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.hero-card {
  align-self: end;
  margin: 0 max(28px, calc((100vw - 1380px) / 2 + 28px)) 76px 0;
  padding: 20px;
  background: rgba(6, 11, 12, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.card-label {
  display: block;
  margin-bottom: 10px;
  color: var(--teal-bright);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-card strong,
.quick-card > strong {
  display: block;
  font-size: 21px;
  line-height: 1.08;
  text-transform: uppercase;
}

.hero-card p,
.quick-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.45;
}

.hero-card a,
.story-copy a,
.section-heading a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-dots {
  position: absolute;
  left: max(28px, calc((100vw - 1380px) / 2 + 28px));
  bottom: 26px;
  display: flex;
  gap: 9px;
}

.hero-dots button {
  width: 34px;
  height: 4px;
  border: 0;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: var(--teal-bright);
}

.quick-grid,
.content-band,
.facility-band,
.site-footer {
  max-width: 1380px;
  margin: 0 auto;
  padding-right: 28px;
  padding-left: 28px;
}

.quick-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 14px;
  margin-top: -52px;
  position: relative;
  z-index: 2;
}

.quick-card {
  min-height: 158px;
  padding: 22px;
  background: rgba(19, 25, 27, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.result-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.result-line strong {
  color: var(--gold);
}

.result-line.muted {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.54);
}

.content-band {
  padding-top: 86px;
  padding-bottom: 20px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.section-heading h2,
.facility-copy h2,
.growth-band h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 0.98;
  text-transform: uppercase;
}

.section-heading .eyebrow {
  margin-bottom: 8px;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.8fr);
  gap: 18px;
}

.feature-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
  min-height: 360px;
  background: var(--white);
  color: var(--black);
}

.story-image .media-placeholder {
  min-height: 360px;
  border: 0;
}

.story-copy {
  align-self: end;
  padding: 30px;
}

.story-copy span,
.story-list span,
.hub-link span,
.growth-cards span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.story-copy h3 {
  margin: 12px 0 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 0.98;
  text-transform: uppercase;
}

.story-copy p {
  color: #4d565a;
  line-height: 1.55;
}

.story-list {
  display: grid;
  gap: 12px;
}

.story-list article {
  padding: 21px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
}

.story-list h3 {
  margin: 10px 0 14px;
  font-size: 21px;
  line-height: 1.12;
}

.story-list time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.baseball-hub {
  padding-top: 66px;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.hub-link {
  min-height: 180px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.hub-link:hover {
  background: rgba(34, 199, 201, 0.1);
}

.hub-link strong {
  display: block;
  margin-top: 42px;
  font-size: 28px;
  text-transform: uppercase;
}

.hub-link small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.4;
}

.facility-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
  gap: 0;
  padding-top: 84px;
}

.facility-media .media-placeholder {
  min-height: 430px;
}

.facility-media {
  min-height: 430px;
  overflow: hidden;
}

.facility-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
  background: var(--teal-deep);
}

.facility-copy p:not(.eyebrow),
.growth-band p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.growth-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 28px;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 84px;
}

.growth-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.growth-cards article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.growth-cards strong {
  display: block;
  margin-top: 42px;
  font-size: 24px;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-top: 42px;
  padding-bottom: 42px;
  border-top: 1px solid var(--line);
}

.footer-brand .brand-mark {
  width: 44px;
  height: 44px;
  font-size: 28px;
}

.site-footer p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.58);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .main-nav {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    flex: 1 0 100%;
    align-items: stretch;
    flex-direction: column;
    padding-top: 14px;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-item {
    width: 100%;
  }

  .nav-menu > a,
  .nav-item > button {
    width: 100%;
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-dropdown {
    position: static;
    box-shadow: none;
  }

  .hero,
  .news-layout,
  .feature-story,
  .facility-band,
  .growth-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 660px;
  }

  .hero-card {
    align-self: start;
    margin: 0 28px 96px;
  }

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

@media (max-width: 680px) {
  .score-strip__inner {
    justify-content: flex-start;
  }

  .main-nav,
  .quick-grid,
  .content-band,
  .facility-band,
  .site-footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    font-size: 30px;
  }

  .brand strong {
    font-size: 17px;
  }

  .hero-content {
    padding: 58px 18px 62px;
  }

  .hero-card {
    margin-right: 18px;
    margin-left: 18px;
  }

  .hero-dots {
    left: 18px;
  }

  .quick-grid,
  .hub-grid,
  .growth-cards {
    grid-template-columns: 1fr;
  }

  .quick-grid {
    margin-top: 0;
    padding-top: 18px;
  }

  .section-heading,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .facility-copy {
    padding: 30px 24px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
