:root {
  --navy: #112337;
  --navy-2: #19475f;
  --gold: #c49a38;
  --gold-dark: #9c7c2c;
  --brown: #5b3b08;
  --brown-deep: #2e1c00;
  --cream: #f7f3e9;
  --paper: #f8f8f8;
  --white: #ffffff;
  --ink: #1d2328;
  --muted: #686e77;
  --green: #315d40;
  --red: #9f3d2f;
  --line: rgba(17, 35, 55, 0.14);
  --shadow: 0 24px 80px rgba(17, 35, 55, 0.16);
  color-scheme: light;
  font-family: "Outfit", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  border-radius: 0;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 64px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(46, 28, 0, 0.78), rgba(46, 28, 0, 0));
  transition: background 180ms ease, padding 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(46, 28, 0, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand-row {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 0.86;
  text-transform: uppercase;
}

.brand img {
  width: 53px;
  height: 53px;
  object-fit: contain;
}

.network-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  opacity: 0.95;
  transition: opacity 160ms ease, transform 160ms ease;
}

.network-brand:hover,
.network-brand:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
}

.network-brand img {
  width: auto;
  height: 53px;
  max-width: 82px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 30px);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.desktop-nav a {
  opacity: 0.84;
}

.desktop-nav > a,
.nav-dropdown > a {
  position: relative;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  opacity: 1;
}

.desktop-nav > a.is-active {
  color: var(--white);
  opacity: 1;
}

.desktop-nav > a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  height: 4px;
  background: var(--gold);
  box-shadow: 0 0 0 1px rgba(196, 154, 56, 0.24), 0 0 22px rgba(196, 154, 56, 0.42);
}

.desktop-nav > a.is-active::before {
  content: "Current";
  position: absolute;
  left: 50%;
  bottom: -45px;
  padding: 4px 8px;
  background: var(--gold);
  color: var(--brown-deep);
  font-size: 0.58rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.desktop-nav > a.is-active:hover::before,
.desktop-nav > a.is-active:focus-visible::before {
  opacity: 1;
  transform: translate(-50%, -2px);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 100%;
  left: -14px;
  right: -14px;
  height: 24px;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-dropdown > a .ti {
  width: 16px;
  height: 16px;
  font-size: 16px;
  transition: transform 160ms ease;
}

.nav-dropdown:hover > a .ti,
.nav-dropdown:focus-within > a .ti {
  transform: translateY(1px) rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  z-index: 2;
  top: calc(100% + 10px);
  left: 50%;
  width: min(330px, 86vw);
  padding: 10px;
  background: var(--white);
  border-top: 4px solid var(--gold);
  box-shadow: 0 24px 70px rgba(17, 35, 55, 0.22);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.9rem;
  opacity: 1;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-dropdown-menu a:last-child {
  border-bottom: 0;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: var(--cream);
  color: var(--brown);
  transform: translateX(3px);
}

.header-cta,
.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(196, 154, 56, 0.96);
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

.header-cta {
  padding: 0 18px;
}

.menu-button {
  display: none;
  width: 44px;
  padding: 0;
  cursor: pointer;
}

.site-header .ti,
.button .ti,
.event-pills .ti,
.feature-list .ti,
.info-card .ti,
.hero-card .ti,
.search-control .ti {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 18px;
  line-height: 1;
}

.mobile-backdrop {
  position: fixed;
  z-index: 35;
  inset: 0;
  background: rgba(17, 35, 55, 0.58);
}

.mobile-menu {
  position: fixed;
  z-index: 40;
  top: 0;
  right: 0;
  display: grid;
  align-content: start;
  gap: 22px;
  width: min(560px, 94vw);
  height: 100dvh;
  overflow-y: auto;
  padding: clamp(18px, 4vw, 30px);
  background: var(--brown-deep);
  color: var(--white);
  transform: translateX(100%);
  transition: transform 180ms ease;
}

.mobile-menu[aria-hidden="false"] {
  transform: translateX(0);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--gold);
  gap: 16px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.mobile-menu-top span {
  font-size: clamp(1rem, 3.8vw, 1.55rem);
}

.mobile-menu-top button {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--white);
}

.mobile-menu-body,
.mobile-menu-nav {
  display: grid;
  gap: 16px;
}

.mobile-menu-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mobile-action,
.mobile-link-grid a {
  display: grid;
  align-items: center;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.mobile-action {
  grid-template-columns: 28px 1fr;
  gap: 10px;
  min-height: 70px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mobile-action.primary {
  background: var(--gold);
  color: var(--brown-deep);
  border-color: var(--gold);
}

.mobile-action:hover,
.mobile-action:focus-visible,
.mobile-link-grid a:hover,
.mobile-link-grid a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(196, 154, 56, 0.7);
}

.mobile-link-grid a.is-active,
.mobile-menu-subnav a.is-active {
  background: rgba(196, 154, 56, 0.18);
  border-color: var(--gold);
  color: var(--gold);
}

.mobile-link-grid a.is-active {
  box-shadow: inset 4px 0 0 var(--gold);
}

.mobile-menu-subnav a.is-active {
  box-shadow: inset 3px 0 0 var(--gold);
}

.mobile-action.primary:hover,
.mobile-action.primary:focus-visible {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.mobile-action .ti,
.mobile-link-grid .ti,
.mobile-menu-group summary .ti,
.mobile-menu-direct span .ti,
.mobile-menu-direct > .ti {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 24px;
}

.mobile-section-label {
  margin: 2px 0 -6px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mobile-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mobile-link-grid a {
  grid-template-columns: 26px 1fr;
  gap: 10px;
  min-height: 62px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.mobile-link-grid a span,
.mobile-action span {
  min-width: 0;
}

.mobile-menu-group {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-menu-group summary,
.mobile-menu-direct {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 58px;
  padding: 15px;
  cursor: pointer;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 900;
  list-style: none;
  text-transform: uppercase;
}

.mobile-menu-direct {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.mobile-menu-direct:hover,
.mobile-menu-direct:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(196, 154, 56, 0.7);
}

.mobile-menu-direct.is-active {
  background: rgba(196, 154, 56, 0.18);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 4px 0 0 var(--gold);
}

.mobile-menu-group summary::-webkit-details-marker {
  display: none;
}

.mobile-menu-group summary span,
.mobile-menu-direct span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.mobile-menu-group summary > .ti,
.mobile-menu-direct > .ti {
  flex: 0 0 auto;
  color: var(--gold);
  transition: transform 160ms ease;
}

.mobile-menu-group[open] summary > .ti {
  transform: rotate(180deg);
}

.mobile-menu-subnav {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-menu-subnav a {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.mobile-menu-subnav a:last-child {
  border-bottom: 0;
}

.mobile-menu-subnav a:hover,
.mobile-menu-subnav a:focus-visible {
  color: var(--gold);
}

.mobile-contact-card {
  display: grid;
  gap: 7px;
  padding: 16px;
  background: rgba(196, 154, 56, 0.12);
  border-left: 4px solid var(--gold);
}

.mobile-contact-card span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mobile-contact-card strong {
  color: var(--white);
  font-size: 0.98rem;
  line-height: 1.2;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--brown-deep);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-image: url("/wp-content/uploads/2025/10/14-web-or-mls-1358-fm2114.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100%, 177.78vh);
  height: max(100%, 56.25vw);
  min-width: 100%;
  min-height: 100%;
  border: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(46, 28, 0, 0.94) 0%, rgba(46, 28, 0, 0.64) 42%, rgba(17, 35, 55, 0.2) 100%),
    linear-gradient(0deg, rgba(46, 28, 0, 0.94) 0%, rgba(46, 28, 0, 0.1) 48%, rgba(46, 28, 0, 0.46) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 190px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark,
.section-kicker {
  color: var(--gold-dark);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 18px;
  font-size: clamp(4rem, 10vw, 9.7rem);
  line-height: 0.86;
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 5vw, 5rem);
  line-height: 0.94;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  line-height: 1.05;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.8vw, 1.36rem);
  line-height: 1.45;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--gold);
  color: var(--brown-deep);
}

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

.button.tertiary {
  border-color: rgba(91, 59, 8, 0.18);
  background: var(--white);
  color: var(--brown);
}

.button.dark-button {
  color: var(--white);
  background: var(--brown);
}

.button.light-button {
  color: var(--navy);
  border-color: var(--line);
  background: var(--white);
}

.hero-card {
  position: absolute;
  z-index: 5;
  right: clamp(20px, 6vw, 84px);
  bottom: 142px;
  width: min(300px, 28vw);
  padding: 22px;
  background: rgba(17, 35, 55, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 4px solid var(--gold);
}

.hero-card span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-bottom: 18px;
  font-size: 1.45rem;
  line-height: 1.05;
}

.hero-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.game-day-strip {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1160px, calc(100% - 40px));
  transform: translateX(-50%);
  background: rgba(17, 35, 55, 0.95);
  border-top: 4px solid var(--gold);
}

.game-day-strip div {
  min-height: 96px;
  padding: 20px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.game-day-strip div:last-child {
  border-right: 0;
}

.game-day-strip span,
.board-summary span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.game-day-strip strong,
.board-summary strong {
  display: block;
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.event-feature,
.tournament-section,
.experience-section,
.visit-section,
.location-section {
  padding: clamp(70px, 10vw, 140px) clamp(20px, 5vw, 80px);
}

.event-feature {
  background:
    linear-gradient(90deg, rgba(247, 243, 233, 0.96), rgba(247, 243, 233, 0.92)),
    url("/wp-content/uploads/2025/10/10_baseball-Converted-01-scaled.png") right 12% top 10% / 18% auto no-repeat;
}

.section-kicker,
.event-layout,
.section-heading,
.board-shell,
.visit-grid,
.pricing-grid,
.location-section {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.event-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}

.event-copy p:not(.eyebrow) {
  max-width: 650px;
  color: #43505a;
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
  line-height: 1.55;
}

.event-schedule {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 22px;
}

.event-schedule article {
  min-height: 142px;
  padding: 18px;
  background: var(--white);
  border-left: 5px solid var(--gold);
  box-shadow: 0 18px 44px rgba(91, 59, 8, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.event-schedule article:hover,
.event-schedule article:focus-within {
  transform: translateY(-6px);
  border-left-color: var(--brown);
  box-shadow: 0 26px 64px rgba(91, 59, 8, 0.16);
}

.event-schedule span {
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-schedule strong {
  display: block;
  margin: 10px 0 6px;
  color: var(--navy);
  font-size: 1.1rem;
}

.event-schedule p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.event-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.event-pills span,
.event-pills a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  background: var(--white);
  border: 1px solid rgba(156, 124, 44, 0.28);
  color: var(--brown);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.event-pills a:hover,
.event-pills a:focus-visible {
  transform: translateY(-2px);
  background: #fbf6e9;
  border-color: rgba(156, 124, 44, 0.58);
}

.flyer-frame {
  margin: 0;
  padding: 10px;
  background: var(--brown-deep);
  border: 1px solid rgba(91, 59, 8, 0.2);
  box-shadow: var(--shadow);
}

.flyer-frame img {
  width: 100%;
}

.tournament-section {
  padding-bottom: clamp(35px, 5vw, 70px);
  background:
    linear-gradient(180deg, rgba(17, 35, 55, 0.96), rgba(17, 35, 55, 0.92)),
    url("/wp-content/uploads/2025/10/Parsons-Sport-Ranch-Bucks-Suite.jpg") center/cover;
  color: var(--white);
}

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

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.5;
}

.section-heading.inverted {
  color: var(--white);
}

.board-shell {
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.2);
}

.board-topbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.search-control {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--muted);
}

.search-control input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--navy);
  font-weight: 700;
}

.search-control input::placeholder {
  color: rgba(104, 110, 119, 0.78);
}

.board-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.board-count strong {
  color: var(--navy);
}

.board-toolbar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 10px;
  overflow-x: auto;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.filter-button {
  display: grid;
  align-content: center;
  gap: 3px;
  min-height: 86px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
  white-space: nowrap;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.filter-button:hover,
.filter-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(196, 154, 56, 0.7);
}

.filter-button span {
  font-size: 0.92rem;
}

.filter-button strong {
  color: var(--gold-dark);
  font-size: 1.35rem;
  line-height: 1;
}

.filter-button small {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.filter-button.is-active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.filter-button.is-active strong {
  color: var(--gold);
}

.filter-button.is-active small {
  color: rgba(255, 255, 255, 0.68);
}

.board-summary {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  background: var(--brown);
  color: var(--white);
}

.board-summary div {
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.board-summary div:last-child {
  border-right: 0;
}

.previous-events-control {
  padding: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.previous-events-control[hidden] {
  display: none;
}

.previous-events-panel {
  background: linear-gradient(90deg, #fffdf8 0%, #ffffff 58%, #fbf6e9 100%);
}

.previous-events-button {
  appearance: none;
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 16px 22px;
  border: 0;
  border-left: 6px solid var(--gold);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background 160ms ease, box-shadow 160ms ease;
}

.previous-events-button:hover,
.previous-events-button.is-active {
  background: rgba(196, 154, 56, 0.1);
}

.previous-events-button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
  background: rgba(196, 154, 56, 0.12);
}

.previous-events-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--brown-deep);
  font-size: 1.18rem;
}

.previous-events-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.previous-events-copy > span {
  color: var(--navy);
  font-size: clamp(0.92rem, 1.3vw, 1.08rem);
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
}

.previous-events-copy small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

.previous-events-chevron {
  color: var(--gold-dark);
  font-size: 1.3rem;
}

.previous-events-list {
  display: grid;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.previous-events-list .tournament-row {
  background: #fffdf8;
}

.previous-events-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: var(--paper);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.previous-events-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.tournament-list {
  display: grid;
}

.tournament-row {
  display: grid;
  grid-template-columns: 88px minmax(270px, 1fr) 108px 108px 86px 178px;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.tournament-row:last-child {
  border-bottom: 0;
}

.tournament-row.past {
  background: #fbfbfb;
}

.date-chip {
  display: grid;
  place-items: center;
  width: 76px;
  min-height: 70px;
  background: var(--cream);
  color: var(--brown);
  border-left: 5px solid var(--gold);
  text-transform: uppercase;
}

.date-chip span {
  font-size: 0.75rem;
  font-weight: 900;
}

.date-chip strong {
  font-size: 1.7rem;
  line-height: 1;
}

.tournament-main {
  min-width: 0;
}

.tournament-row h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.03rem;
  line-height: 1.12;
}

.tournament-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.tournament-meta span {
  display: inline-flex;
  align-items: center;
}

.tournament-meta span:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  margin-left: 7px;
  background: rgba(104, 110, 119, 0.42);
}

.status {
  justify-self: start;
  padding: 7px 10px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status.open {
  background: rgba(49, 93, 64, 0.12);
  color: var(--green);
}

.status.waitlist {
  background: rgba(196, 154, 56, 0.18);
  color: var(--brown);
}

.status.sold,
.status.past {
  background: rgba(159, 61, 47, 0.1);
  color: var(--red);
}

.status.details {
  background: rgba(25, 71, 95, 0.12);
  color: var(--navy-2);
}

.spots,
.price {
  color: var(--navy);
  font-weight: 900;
}

.row-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.row-action,
.mini-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 11px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.row-action {
  background: var(--gold);
  color: var(--brown-deep);
}

.mini-link {
  border: 1px solid var(--line);
  color: var(--navy);
}

.board-empty,
.board-note {
  margin: 0;
  padding: 20px 22px;
  color: var(--muted);
  font-weight: 700;
}

.board-note {
  border-top: 1px solid var(--line);
  background: var(--paper);
  font-size: 0.9rem;
}

.experience-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(35px, 5vw, 70px);
  background:
    url("/wp-content/uploads/2025/10/10_baseball-Converted-01-scaled.png") top 42px right 6vw / min(280px, 20vw) auto no-repeat,
    linear-gradient(180deg, #f7f3e9 0%, #ffffff 54%, #f8f8f8 100%);
  color: var(--navy);
}

.experience-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 35, 55, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 35, 55, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.5;
  pointer-events: none;
}

.broadcast-header,
.broadcast-stats,
.facility-showcase {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.broadcast-header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(24px, 5vw, 84px);
  align-items: end;
  margin-bottom: 28px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(17, 35, 55, 0.12);
}

.broadcast-header .eyebrow {
  grid-column: 1;
  margin-bottom: 10px;
}

.broadcast-header h2 {
  grid-column: 1;
  margin-bottom: 0;
  max-width: 860px;
  color: var(--navy);
}

.broadcast-header p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.5;
}

.broadcast-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
  border-top: 4px solid var(--gold);
  background: var(--white);
  color: var(--navy);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 20px 58px rgba(17, 35, 55, 0.12);
}

.broadcast-stats div {
  min-height: 104px;
  padding: 20px 22px;
  border-right: 1px solid var(--line);
}

.broadcast-stats div:last-child {
  border-right: 0;
}

.broadcast-stats span {
  display: block;
  margin-bottom: 9px;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.broadcast-stats strong {
  display: block;
  font-size: clamp(1.45rem, 2.6vw, 2.45rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.facility-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: 18px;
  align-items: stretch;
}

.facility-media {
  position: relative;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  background: var(--brown-deep);
  box-shadow: var(--shadow);
}

.facility-media img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.facility-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 35, 55, 0.1), rgba(17, 35, 55, 0.18) 42%, rgba(17, 35, 55, 0.88)),
    linear-gradient(90deg, rgba(17, 35, 55, 0.42), transparent 52%);
}

.facility-media figcaption {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  bottom: 30px;
}

.facility-media figcaption span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  background: var(--gold);
  color: var(--brown-deep);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.facility-media figcaption strong {
  display: block;
  max-width: 660px;
  color: var(--white);
  font-size: clamp(2.1rem, 4.3vw, 4.9rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.advantage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.advantage-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 146px;
  padding: 22px;
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  box-shadow: 0 12px 34px rgba(17, 35, 55, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.advantage-card:hover,
.advantage-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(196, 154, 56, 0.55);
  border-left-color: var(--brown);
  box-shadow: 0 20px 52px rgba(17, 35, 55, 0.14);
}

.advantage-card span {
  grid-column: 1;
  grid-row: 1 / span 2;
  color: var(--gold-dark);
  font-family: "Unbounded", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.advantage-card h3 {
  grid-column: 2;
  margin-bottom: 6px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  text-transform: uppercase;
}

.advantage-card p {
  grid-column: 2;
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.4;
}

.suite-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(70px, 10vw, 140px) clamp(20px, 5vw, 80px);
  background: var(--cream);
}

.suite-image img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.suite-copy {
  max-width: 650px;
}

.suite-copy p:not(.eyebrow) {
  color: #43505a;
  font-size: 1.12rem;
  line-height: 1.55;
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(91, 59, 8, 0.16);
  color: var(--brown);
  font-weight: 900;
}

.feature-list .ti {
  color: var(--gold-dark);
}

.suite-button {
  margin-top: 26px;
}

.visit-section {
  background: var(--paper);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.price-card {
  min-height: 180px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
}

.price-card.featured {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.price-card span {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card.featured span {
  color: var(--gold);
}

.price-card strong {
  display: block;
  margin: 16px 0 8px;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.price-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.4;
}

.price-card.featured p {
  color: rgba(255, 255, 255, 0.72);
}

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

.info-card {
  min-height: 220px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}

.info-card .ti {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  color: var(--gold-dark);
  font-size: 34px;
}

.info-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.48;
}

.location-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.location-copy p:not(.eyebrow) {
  max-width: 590px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.55;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.contact-grid article,
.location-panel div {
  min-width: 0;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.contact-grid span,
.location-panel span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-grid strong,
.location-panel strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.25rem;
}

.contact-grid a,
.location-panel a {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: clamp(0.86rem, 1.1vw, 1rem);
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.location-panel {
  box-shadow: var(--shadow);
}

.location-panel img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
}

.final-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: clamp(48px, 7vw, 80px) clamp(20px, 5vw, 80px);
  background:
    linear-gradient(90deg, rgba(46, 28, 0, 0.96), rgba(17, 35, 55, 0.9)),
    url("/wp-content/uploads/2025/10/close-up-baseball-equipment-field.jpg") center/cover;
  color: var(--white);
}

.final-cta h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4.7rem);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(20px, 5vw, 80px);
  background: var(--brown-deep);
  color: rgba(255, 255, 255, 0.68);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: color 160ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.interior-page {
  background: var(--paper);
}

.interior-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 78vh;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.interior-hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
}

.interior-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 35, 55, 0.96), rgba(17, 35, 55, 0.72) 48%, rgba(46, 28, 0, 0.18)),
    linear-gradient(0deg, rgba(17, 35, 55, 0.94), rgba(17, 35, 55, 0.22) 52%, rgba(46, 28, 0, 0.54));
}

.interior-hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 96px;
}

.interior-hero h1 {
  max-width: 1000px;
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 8vw, 8rem);
}

.interior-hero-content > p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 1.8vw, 1.36rem);
  font-weight: 650;
  line-height: 1.48;
}

.interior-content {
  padding: clamp(70px, 10vw, 130px) clamp(20px, 5vw, 80px);
}

.interior-stats,
.interior-feature,
.interior-card-grid {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.interior-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
  border-top: 4px solid var(--gold);
  background: var(--white);
  box-shadow: var(--shadow);
}

.interior-stats div {
  min-height: 108px;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.interior-stats div:hover,
.interior-stats div:focus-within {
  transform: translateY(-4px);
  background: #fbf6e9;
  box-shadow: 0 18px 42px rgba(17, 35, 55, 0.12);
}

.interior-stats div:last-child {
  border-right: 0;
}

.interior-stats span,
.interior-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.interior-stats strong {
  display: block;
  color: var(--navy);
  font-size: clamp(1.4rem, 2.5vw, 2.45rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.interior-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--line);
}

.interior-feature figure {
  position: relative;
  min-height: 480px;
  margin: 0;
  overflow: hidden;
  background: var(--brown-deep);
}

.interior-feature img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.showcase-flyer-feature figure {
  display: grid;
  place-items: center;
  min-height: 640px;
  padding: clamp(12px, 2vw, 20px);
  background: var(--white);
}

.showcase-flyer-feature img {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  max-height: 780px;
  object-fit: contain;
}

.showcase-entry {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.showcase-entry > .eyebrow,
.showcase-entry > h2,
.showcase-entry > p,
.showcase-entry .interior-link-grid a {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.showcase-entry.is-visible,
.showcase-entry.is-visible > .eyebrow,
.showcase-entry.is-visible > h2,
.showcase-entry.is-visible > p,
.showcase-entry.is-visible .interior-link-grid a {
  opacity: 1;
  transform: translateY(0);
}

.showcase-entry.is-visible > .eyebrow {
  transition-delay: 80ms;
}

.showcase-entry.is-visible > h2 {
  transition-delay: 150ms;
}

.showcase-entry.is-visible > p {
  transition-delay: 220ms;
}

.showcase-entry.is-visible .interior-link-grid a:nth-child(1) {
  transition-delay: 300ms;
}

.showcase-entry.is-visible .interior-link-grid a:nth-child(2) {
  transition-delay: 360ms;
}

.showcase-entry.is-visible .interior-link-grid a:nth-child(3) {
  transition-delay: 420ms;
}

@media (prefers-reduced-motion: reduce) {
  .showcase-entry,
  .showcase-entry > .eyebrow,
  .showcase-entry > h2,
  .showcase-entry > p,
  .showcase-entry .interior-link-grid a {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.interior-feature > div {
  display: grid;
  align-content: center;
  padding: clamp(30px, 5vw, 64px);
}

.interior-feature h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2.15rem, 4.2vw, 4.8rem);
}

.interior-feature p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.12rem;
  font-weight: 650;
  line-height: 1.55;
}

.interior-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.interior-link-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  background: var(--gold);
  color: var(--brown-deep);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease;
}

.interior-link-grid a:hover,
.interior-link-grid a:focus-visible {
  transform: translateY(-2px);
  background: var(--gold-dark);
}

.lodging-content {
  position: relative;
  padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 80px);
  background:
    url("/wp-content/uploads/2025/10/10_baseball-Converted-01-scaled.png") top 30px right 6vw / min(260px, 22vw) auto no-repeat,
    var(--paper);
  overflow: hidden;
}

.lodging-wrap {
  width: min(1260px, 100%);
  margin: 0 auto;
}

.lodging-section-header {
  max-width: 900px;
  margin-bottom: clamp(26px, 4vw, 48px);
}

.lodging-section-header h2 {
  max-width: 860px;
  color: var(--navy);
  font-size: clamp(2.4rem, 5vw, 5.4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.lodging-section-header p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 750;
  line-height: 1.52;
}

.lodging-link-list {
  display: grid;
  gap: 20px;
}

.lodging-link-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(340px, 1fr);
  min-height: 292px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy);
  overflow: hidden;
  box-shadow: 0 18px 54px rgba(17, 35, 55, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.lodging-link-card:hover,
.lodging-link-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(196, 154, 56, 0.6);
  box-shadow: 0 28px 70px rgba(17, 35, 55, 0.16);
}

.lodging-link-media {
  min-height: 292px;
  background-position: center;
  background-size: cover;
  transition: filter 180ms ease, transform 180ms ease;
}

.lodging-link-card:hover .lodging-link-media,
.lodging-link-card:focus-visible .lodging-link-media {
  filter: saturate(1.08) contrast(1.03);
}

.lodging-link-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(28px, 5vw, 64px);
  min-width: 0;
}

.lodging-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.lodging-link-copy strong {
  display: block;
  max-width: 620px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(2.15rem, 4.4vw, 4.9rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.lodging-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 28px;
  background: var(--gold-dark);
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

.lodging-link-button .ti {
  font-size: 22px;
}

.lodging-link-card:hover .lodging-link-button,
.lodging-link-card:focus-visible .lodging-link-button {
  background: var(--navy);
  color: var(--white);
}

.interior-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.interior-card {
  min-height: 230px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  box-shadow: 0 12px 34px rgba(17, 35, 55, 0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.interior-card:hover,
.interior-card:focus-within {
  transform: translateY(-6px);
  border-left-color: var(--brown);
  box-shadow: 0 22px 56px rgba(17, 35, 55, 0.14);
}

.interior-card span {
  font-family: "Unbounded", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
}

.interior-card h3 {
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 2.1rem);
  text-transform: uppercase;
}

.interior-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.contact-page-content {
  padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 80px);
  background:
    url("/wp-content/uploads/2025/10/10_baseball-Converted-01-scaled.png") bottom -110px left -90px / min(440px, 34vw) auto no-repeat,
    var(--paper);
}

.contact-stat-strip {
  margin-bottom: clamp(28px, 4vw, 48px);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.contact-info-panel,
.contact-form-panel {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-info-panel {
  padding: clamp(28px, 4vw, 48px);
  border-top: 5px solid var(--gold);
}

.contact-info-panel h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(2rem, 4.4vw, 4.5rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.contact-info-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 750;
  line-height: 1.52;
}

.contact-card-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-card-list article {
  min-width: 0;
  padding: 22px;
  background: #fbf6e9;
  border: 1px solid rgba(196, 154, 56, 0.36);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-card-list article:hover,
.contact-card-list article:focus-within {
  transform: translateY(-4px);
  border-color: rgba(196, 154, 56, 0.8);
  box-shadow: 0 18px 42px rgba(17, 35, 55, 0.12);
}

.contact-card-list span,
.contact-form label span {
  display: block;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card-list strong {
  display: block;
  margin: 8px 0 10px;
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.contact-card-list a {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 850;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-form-panel {
  padding: clamp(28px, 4vw, 48px);
  border-top: 5px solid var(--navy);
}

.contact-form-header {
  margin-bottom: 24px;
}

.contact-form-header h3 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 3.35rem);
  line-height: 0.98;
  text-transform: uppercase;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-form label.is-full,
.contact-character-row {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--navy);
  font: inherit;
  font-weight: 750;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form input {
  height: 54px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 190px;
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 154, 56, 0.2);
}

.contact-character-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.contact-character-row span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 26px;
  border: 0;
  background: var(--gold);
  color: var(--brown-deep);
  cursor: pointer;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  transform: translateY(-3px);
  background: var(--gold-dark);
  box-shadow: 0 16px 38px rgba(46, 28, 0, 0.18);
}

.rules-rates,
.rules-family-band,
.rules-tech-band,
.rules-testimonial,
.rules-faq,
.rules-contact-band {
  padding: clamp(68px, 9vw, 120px) clamp(20px, 5vw, 80px);
}

.rules-section-header,
.rules-pricing-grid,
.rules-alert-list,
.rules-family-band,
.rules-tech-band,
.rules-testimonial,
.rules-faq-grid,
.rules-contact-band {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.rules-rates {
  background: var(--paper);
}

.rules-section-header {
  margin-bottom: 26px;
}

.rules-section-header h2 {
  max-width: 920px;
  color: var(--navy);
}

.rules-section-header p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.5;
}

.rules-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.rules-price-card {
  min-height: 230px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  box-shadow: 0 14px 38px rgba(17, 35, 55, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.rules-price-card:hover,
.rules-price-card:focus-within {
  transform: translateY(-6px);
  border-top-color: var(--brown);
  box-shadow: 0 24px 58px rgba(17, 35, 55, 0.14);
}

.rules-price-card span,
.rules-contact-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rules-price-card h3 {
  color: var(--navy);
  font-size: clamp(1.2rem, 2vw, 1.85rem);
  text-transform: uppercase;
}

.rules-price-card strong {
  display: block;
  margin: 18px 0 10px;
  color: var(--navy);
  font-size: clamp(2.2rem, 4.6vw, 4.8rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.rules-price-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.42;
}

.rules-alert-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.rules-alert-list article {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 230px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 246, 233, 0.88)),
    var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  box-shadow: 0 14px 38px rgba(17, 35, 55, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.rules-alert-list article:first-child {
  grid-column: span 2;
}

.rules-alert-list article:hover,
.rules-alert-list article:focus-within {
  transform: translateY(-6px);
  border-top-color: var(--gold-dark);
  box-shadow: 0 26px 64px rgba(17, 35, 55, 0.15);
}

.rules-alert-list .ti {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  background: rgba(159, 61, 47, 0.1);
  color: var(--red);
  font-size: 32px;
}

.rules-alert-number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(17, 35, 55, 0.08);
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.7rem);
  font-weight: 800;
  line-height: 0.85;
}

.rules-alert-list h3 {
  max-width: 320px;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.1vw, 2.15rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.rules-alert-list p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.46;
}

.rules-family-band,
.rules-testimonial {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.rules-family-band figure,
.rules-tech-band figure,
.rules-testimonial figure {
  margin: 0;
}

.rules-family-band img,
.rules-tech-band img,
.rules-testimonial img {
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.rules-family-band {
  background: var(--white);
}

.rules-family-band h2,
.rules-tech-band h2,
.rules-testimonial strong,
.rules-contact-band h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.4vw, 4.8rem);
  line-height: 0.94;
  font-weight: 900;
  text-transform: uppercase;
}

.rules-family-band p:not(.eyebrow),
.rules-contact-band p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.55;
}

.rules-check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.rules-check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.42;
}

.rules-check-list .ti {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  color: var(--gold-dark);
  font-size: 20px;
}

.rules-family-band .button {
  margin-top: 28px;
}

.rules-tech-band {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 560px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(90deg, rgba(91, 59, 8, 0.96), rgba(46, 28, 0, 0.92)),
    url("/wp-content/uploads/2025/10/10_baseball-Converted-01-scaled.png") left 8% center / 24% auto no-repeat;
  color: var(--white);
}

.rules-tech-band .rules-check-list li {
  color: rgba(255, 255, 255, 0.84);
}

.rules-tech-band .rules-check-list .ti {
  color: var(--gold);
}

.rules-testimonial {
  background: var(--white);
}

.rules-testimonial blockquote {
  margin: 0;
}

.rules-testimonial strong {
  display: block;
  color: var(--navy);
}

.rules-testimonial p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.1rem, 1.6vw, 1.28rem);
  font-weight: 700;
  line-height: 1.55;
}

.rules-testimonial cite {
  color: var(--gold-dark);
  font-style: normal;
  font-weight: 900;
}

.rules-faq {
  background: var(--paper);
}

.rules-faq-grid {
  display: grid;
  gap: 10px;
}

.rules-faq details {
  background: var(--white);
  border: 1px solid var(--line);
}

.rules-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 60px;
  padding: 18px 22px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

.rules-faq summary::-webkit-details-marker {
  display: none;
}

.rules-faq summary .ti {
  flex: 0 0 auto;
  color: var(--gold-dark);
  transition: transform 160ms ease;
}

.rules-faq details[open] summary .ti {
  transform: rotate(45deg);
}

.rules-faq details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.52;
}

.rules-contact-band {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 500px) minmax(0, 620px);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(90deg, rgba(17, 35, 55, 0.94), rgba(46, 28, 0, 0.82)),
    url("/wp-content/uploads/2025/10/close-up-baseball-equipment-field.jpg") center/cover;
  color: var(--white);
}

.rules-contact-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.rules-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.rules-contact-panel {
  min-width: 0;
  padding: clamp(22px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  box-shadow: var(--shadow);
}

.rules-contact-panel h3 {
  margin-bottom: 18px;
  font-size: clamp(1.5rem, 2.4vw, 2.5rem);
  text-transform: uppercase;
}

.rules-visit-form {
  display: grid;
  gap: 12px;
}

.rules-visit-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rules-visit-form input,
.rules-visit-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  outline: 0;
}

.rules-visit-form input {
  height: 46px;
  padding: 0 12px;
}

.rules-visit-form textarea {
  resize: vertical;
  padding: 12px;
}

.rules-visit-form input:focus,
.rules-visit-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 154, 56, 0.18);
}

.rules-visit-form button {
  min-height: 48px;
  border: 0;
  background: var(--gold);
  color: var(--brown-deep);
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease;
}

.rules-visit-form button:hover,
.rules-visit-form button:focus-visible {
  transform: translateY(-2px);
  background: var(--gold-dark);
}

.rules-contact-grid article {
  min-width: 0;
  padding: 24px;
  background: var(--white);
  color: var(--navy);
  border-top: 5px solid var(--gold);
}

.rules-contact-grid strong {
  display: block;
  margin-bottom: 14px;
  font-size: 1.35rem;
  line-height: 1.1;
}

.rules-contact-grid a {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 850;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 1180px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .menu-button {
    display: inline-flex;
    justify-self: end;
  }

  .hero-card {
    display: none;
  }

  .event-layout,
  .suite-section,
  .location-section {
    grid-template-columns: 1fr;
  }

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

  .broadcast-header,
  .facility-showcase,
  .interior-feature,
  .contact-page-grid,
  .lodging-link-card,
  .rules-family-band,
  .rules-tech-band,
  .rules-testimonial,
  .rules-contact-band {
    grid-template-columns: 1fr;
  }

  .facility-media {
    min-height: 520px;
  }

  .rules-pricing-grid,
  .rules-alert-list,
  .rules-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rules-alert-list article:first-child {
    grid-column: span 2;
  }

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

  .tournament-row {
    grid-template-columns: 84px minmax(220px, 1fr) 104px 96px 160px;
  }

  .price {
    display: none;
  }

}

@media (max-width: 760px) {
  .site-header {
    padding-left: 14px;
    padding-right: 14px;
  }

  .mobile-menu {
    width: min(430px, 94vw);
  }

  .brand-row {
    gap: 10px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 45px;
    height: 45px;
  }

  .brand span {
    font-size: 1.075rem;
  }

  .network-brand img {
    height: 45px;
    max-width: 70px;
  }

  .hero {
    min-height: 94vh;
  }

  .hero-media {
    background-position: center;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding: 118px 0 252px;
  }

  h1 {
    font-size: clamp(3.15rem, 15.4vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.25rem);
  }

  .hero-actions,
  .inline-actions,
  .final-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .mobile-action {
    width: auto;
  }

  .game-day-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .game-day-strip div {
    min-height: 88px;
    padding: 16px;
  }

  .event-feature,
  .tournament-section,
  .experience-section,
  .visit-section,
  .location-section,
  .suite-section,
  .interior-content,
  .contact-page-content,
  .lodging-content,
  .rules-rates,
  .rules-family-band,
  .rules-tech-band,
  .rules-testimonial,
  .rules-faq,
  .rules-contact-band {
    padding-left: 16px;
    padding-right: 16px;
  }

  .interior-hero-content {
    width: calc(100% - 32px);
    padding: 124px 0 72px;
  }

  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .section-heading > p {
    font-size: 1rem;
  }

  .event-schedule,
  .board-topbar,
  .board-summary,
  .pricing-grid,
  .visit-grid,
  .contact-grid,
  .contact-form-grid,
  .interior-stats,
  .interior-card-grid,
  .rules-pricing-grid,
  .rules-alert-list,
  .rules-contact-grid {
    grid-template-columns: 1fr;
  }

  .rules-alert-list article:first-child {
    grid-column: auto;
  }

  .rules-alert-list article {
    min-height: 0;
    padding: 16px;
  }

  .rules-alert-list .ti {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    font-size: 27px;
  }

  .rules-family-band img,
  .rules-tech-band img,
  .rules-testimonial img {
    aspect-ratio: 1.22;
  }

  .rules-faq summary {
    align-items: flex-start;
    min-height: 0;
    padding: 16px;
  }

  .rules-faq details p {
    padding: 0 16px 18px;
  }

  .interior-stats div {
    min-height: 94px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .interior-stats div:last-child {
    border-bottom: 0;
  }

  .interior-feature figure {
    min-height: 340px;
  }

  .lodging-content {
    background:
      url("/wp-content/uploads/2025/10/10_baseball-Converted-01-scaled.png") top 16px right -58px / 190px auto no-repeat,
      var(--paper);
  }

  .lodging-section-header h2 {
    font-size: clamp(2.2rem, 10vw, 3.6rem);
  }

  .lodging-link-card {
    min-height: 0;
  }

  .lodging-link-media {
    min-height: 220px;
  }

  .lodging-link-copy {
    padding: 24px;
  }

  .lodging-link-copy strong {
    font-size: clamp(2rem, 9vw, 3.4rem);
  }

  .lodging-link-button {
    width: 100%;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 24px;
  }

  .contact-info-panel h2 {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .contact-character-row {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form button {
    width: 100%;
  }

  .interior-feature > div,
  .interior-card {
    padding: 22px;
  }

  .interior-link-grid a {
    width: 100%;
  }

  .broadcast-header {
    gap: 18px;
  }

  .broadcast-header .eyebrow,
  .broadcast-header h2,
  .broadcast-header p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

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

  .broadcast-stats div:nth-child(2n) {
    border-right: 0;
  }

  .facility-media {
    min-height: 410px;
  }

  .facility-media figcaption {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .facility-media figcaption strong {
    font-size: clamp(2rem, 10vw, 3.25rem);
  }

  .advantage-card {
    grid-template-columns: 54px 1fr;
    gap: 12px;
    min-height: 132px;
    padding: 18px;
  }

  .advantage-card span {
    font-size: 1.8rem;
  }

  .board-summary div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .board-count {
    justify-content: center;
  }

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

  .tournament-row {
    grid-template-columns: 76px 1fr;
    gap: 14px;
    padding: 16px;
  }

  .status,
  .spots,
  .row-actions {
    grid-column: 2;
  }

  .row-actions {
    justify-content: flex-start;
  }

  .date-chip {
    width: 70px;
    min-height: 68px;
  }

  .tournament-meta span {
    width: 100%;
  }

  .tournament-meta span:not(:last-child)::after {
    content: none;
  }

  .info-card,
  .price-card {
    min-height: 180px;
  }

  .final-cta {
    align-items: flex-start;
  }

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

}
