

:root {
  --navy:       #0a1628;
  --navy-mid:   #132044;
  --navy-light: #1e2f5a;
  --red:        #c8102e;
  --red-dark:   #9e0c24;
  --gold:       #f5a800;
  --gold-light: #ffcb47;
  --white:      #ffffff;
  --off-white:  #f5f6f8;
  --gray-100:   #eef0f4;
  --gray-200:   #d8dce6;
  --gray-400:   #8a93a8;
  --gray-600:   #4e5a72;
  --gray-800:   #1f2b40;

  --ff-display: 'Barlow Condensed', sans-serif;
  --ff-body:    'Barlow', sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 6px 24px rgba(0,0,0,.13);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.20);

  --container:  1240px;
  --gap:        clamp(1rem, 3vw, 2rem);
}


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

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  font-size: clamp(15px, 1.1vw, 17px);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

ul { list-style: none; }

address { font-style: normal; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.01em;
  text-transform: uppercase;
}


.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 3rem);
}

.section-label {
  display: inline-block;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
  border-left: 3px solid var(--red);
  padding-left: .6rem;
  margin-bottom: .9rem;
}

.section-label.light-label { color: var(--gold); border-color: var(--gold); }

.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-header .section-label { border: none; padding-left: 0; }

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--navy);
  margin-bottom: .8rem;
}

.section-desc {
  max-width: 620px;
  margin-inline: auto;
  color: var(--gray-600);
  font-size: 1.05rem;
}

.section-header.light .section-title { color: var(--white); }
.section-header.light .section-desc  { color: var(--gray-200); }


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  padding: .6rem 1.4rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s, box-shadow .2s;
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy-light);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.btn-nav {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  padding: .45rem 1rem;
  font-size: .82rem;
}
.btn-nav:hover { background: var(--red-dark); border-color: var(--red-dark); transform: none; }

.btn-lg { font-size: 1.05rem; padding: .8rem 2rem; }

.btn-event {
  display: inline-flex;
  align-items: center;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--radius-sm);
  padding: .5rem 1.1rem;
  margin-top: .9rem;
  transition: background .2s, color .2s, border-color .2s;
}
.btn-event:hover { background: var(--red); border-color: var(--red); }
.btn-event:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }


.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: .85rem;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-ue, .logo-s {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1;
}

.logo-ampersand {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--red);
  line-height: 1;
}

.logo-text {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-200);
  line-height: 1.25;
  max-width: 100px;
  display: none;
}

.logo-text span { color: var(--red); }

@media (min-width: 480px) { .logo-text { display: block; } }

nav[aria-label="Primary navigation"] ul {
  display: none;
}

@media (min-width: 768px) {
  nav[aria-label="Primary navigation"] ul {
    display: flex;
    align-items: center;
    gap: .25rem;
  }

  nav[aria-label="Primary navigation"] ul li a {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--gray-200);
    padding: .4rem .8rem;
    border-radius: var(--radius-sm);
    transition: color .2s, background .2s;
  }

  nav[aria-label="Primary navigation"] ul li a:hover,
  nav[aria-label="Primary navigation"] ul li a[aria-current="page"] {
    color: var(--white);
    background: rgba(255,255,255,.08);
  }

  nav[aria-label="Primary navigation"] ul li a[aria-current="page"] {
    color: var(--gold);
  }

  nav[aria-label="Primary navigation"] ul li a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
  }
}

.drawer-toggle-input { display: none; }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

@media (min-width: 768px) { .hamburger { display: none; } }

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.drawer-toggle-input:checked ~ .drawer-overlay {
  opacity: 1;
  pointer-events: all;
}

.drawer-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.8rem;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
}

.drawer-overlay [data-pn-nav="drawer"] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.drawer-overlay [data-pn-nav="drawer"] li a {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: .04em;
  transition: color .2s;
}

.drawer-overlay [data-pn-nav="drawer"] li a:hover,
.drawer-overlay [data-pn-nav="drawer"] li a[aria-current="page"] {
  color: var(--gold);
}

.drawer-overlay [data-pn-nav="drawer"] li a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}


.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, .92) 0%,
    rgba(10, 22, 40, .7) 50%,
    rgba(10, 22, 40, .5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(5rem, 12vh, 8rem) clamp(4rem, 10vh, 7rem);
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  padding: .3rem 1rem;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-size: clamp(3.2rem, 10vw, 7.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: .98;
  margin-bottom: 1.5rem;
}

.hero-headline em {
  font-style: normal;
  color: var(--gold);
  -webkit-text-stroke: 0;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.82);
  max-width: 560px;
  margin-bottom: 2.2rem;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 2rem;
}

.stat { display: flex; flex-direction: column; gap: .15rem; }

.stat-num {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.scroll-cue {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.5);
  width: 28px;
  animation: bounce 2s ease-in-out infinite;
  transition: color .2s;
}

.scroll-cue:hover { color: var(--gold); }
.scroll-cue:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}


.events-section {
  padding-block: clamp(4rem, 8vw, 6rem);
  background: var(--off-white);
}

.sport-filter {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.sf-input { display: none; }

.sf-label {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gray-600);
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 999px;
  padding: .45rem 1.1rem;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}

.sf-label:hover { border-color: var(--navy-light); color: var(--navy); }

.sf-input:checked + .sf-label {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.sf-icon { font-size: .9rem; }

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 1.5rem;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.event-card-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
}

.event-img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.event-card:hover .event-img { transform: scale(1.04); }

.event-sport-badge {
  position: absolute;
  top: .7rem;
  left: .7rem;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  padding: .25rem .7rem;
  border-radius: 999px;
}

.event-sport-badge.lacrosse    { background: var(--navy); }
.event-sport-badge.fieldhockey { background: #1a6b3c; }
.event-sport-badge.soccer      { background: #5c3f99; }
.event-sport-badge.baseball    { background: #c8102e; }
.event-sport-badge.softball    { background: #c06a00; }

.event-card-body {
  padding: 1.2rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.event-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: .6rem;
}

.event-date, .event-location {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.event-date { color: var(--red); }

.event-location {
  color: var(--gray-400);
}

.event-location::before {
  content: "• ";
  color: var(--gray-200);
}

.event-name {
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .5rem;
}

.event-desc {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.55;
  flex: 1;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .8rem;
}

.tag {
  font-family: var(--ff-display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy-light);
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  padding: .2rem .55rem;
}

#sf-all:checked   ~ .events-grid .event-card         { display: flex; }
#sf-lacrosse:checked   ~ .events-grid .event-card        { display: none; }
#sf-lacrosse:checked   ~ .events-grid [data-sport="lacrosse"]    { display: flex; }
#sf-fieldhockey:checked ~ .events-grid .event-card       { display: none; }
#sf-fieldhockey:checked ~ .events-grid [data-sport="fieldhockey"] { display: flex; }
#sf-soccer:checked     ~ .events-grid .event-card        { display: none; }
#sf-soccer:checked     ~ .events-grid [data-sport="soccer"]      { display: flex; }
#sf-baseball:checked   ~ .events-grid .event-card        { display: none; }
#sf-baseball:checked   ~ .events-grid [data-sport="baseball"]    { display: flex; }
#sf-softball:checked   ~ .events-grid .event-card        { display: none; }
#sf-softball:checked   ~ .events-grid [data-sport="softball"]    { display: flex; }


.widget-section {
  padding-block: clamp(4rem, 8vw, 6rem);
  background: var(--navy);
}

.widget-tabs {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  row-gap: 2rem;
}

.wt-input { display: none; }

.wt-label {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-400);
  padding: .65rem 1.8rem;
  border-bottom: 3px solid rgba(255,255,255,.08);
  cursor: pointer;
  transition: color .2s, border-color .2s;
  text-align: center;
}

.wt-label:hover { color: var(--white); }

#wt-lacrosse:checked ~ label[for="wt-lacrosse"],
#wt-fh:checked ~ label[for="wt-fh"] {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.wt-panel {
  grid-column: 1 / -1;
  display: none;
}

#wt-lacrosse:checked ~ .wt-lacrosse-panel { display: block; }
#wt-fh:checked ~ .wt-fh-panel             { display: block; }

.widget-league-name {
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  border-left: 4px solid var(--gold);
  padding-left: .9rem;
}

.widget-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .widget-grid { grid-template-columns: 2fr 1.5fr 1.5fr; }
}

.widget-block {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 1.4rem;
}

.widget-block-title {
  font-family: var(--ff-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.standings-table-wrap { overflow-x: auto; }

.standings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
  white-space: nowrap;
}

.standings-table th {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-400);
  text-align: left;
  padding: .4rem .5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.standings-table th:nth-child(n+2) { text-align: center; }

.standings-table td {
  color: var(--white);
  padding: .5rem .5rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.standings-table td:nth-child(n+2) { text-align: center; color: var(--gray-200); }

.standings-table tr.leader td { color: var(--gold); font-weight: 700; }

.standings-table tr:last-child td { border-bottom: none; }

.team-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: .4rem;
  vertical-align: middle;
}

.lax-1 { background: #005bbb; }
.lax-2 { background: #e03a3e; }
.lax-3 { background: #f76900; }
.lax-4 { background: #00539b; }
.lax-5 { background: #003087; }
.lax-6 { background: #232d4b; }
.lax-7 { background: #0c2340; }
.lax-8 { background: #041e42; }

.fh-1  { background: #7bafd4; }
.fh-2  { background: #005bbb; }
.fh-3  { background: #e03a3e; }
.fh-4  { background: #00274c; }
.fh-5  { background: #ffcd00; }
.fh-6  { background: #232d4b; }
.fh-7  { background: #003087; }
.fh-8  { background: #4e2683; }

.scores-list, .fixtures-list {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.score-item {
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding-bottom: .9rem;
}

.score-item:last-child { border-bottom: none; padding-bottom: 0; }

.score-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .92rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .25rem;
}

.score-result {
  background: var(--red);
  color: var(--white);
  padding: .15rem .5rem;
  border-radius: var(--radius-sm);
  font-size: .82rem;
  white-space: nowrap;
}

.score-detail {
  font-size: .72rem;
  color: var(--gray-400);
  letter-spacing: .04em;
}

.fixture-item {
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding-bottom: .9rem;
}

.fixture-item:last-child { border-bottom: none; padding-bottom: 0; }

.fixture-date {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .2rem;
}

.fixture-match {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .95rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .2rem;
}

.fixture-match .vs {
  font-weight: 500;
  font-size: .75rem;
  color: var(--gray-400);
  margin-inline: .3rem;
}

.fixture-venue {
  font-size: .72rem;
  color: var(--gray-400);
}


.offerings-section {
  padding-block: clamp(4rem, 8vw, 6rem);
  background: var(--white);
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
}

.offering-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 2px solid transparent;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.offering-card:hover {
  border-color: var(--navy-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.offering-card-accent {
  background: var(--navy);
  color: var(--white);
}

.offering-card-accent h3 { color: var(--white); }
.offering-card-accent p  { color: rgba(255,255,255,.75); }
.offering-card-accent .offering-link { color: var(--gold); }
.offering-card-accent .offering-link:hover { color: var(--gold-light); }
.offering-card-accent:hover { border-color: var(--gold); }

.offering-icon {
  width: 52px;
  height: 52px;
  color: var(--red);
  flex-shrink: 0;
}

.offering-card-accent .offering-icon { color: var(--gold); }

.offering-icon svg { width: 100%; height: 100%; }

.offering-card h3 {
  font-size: 1.45rem;
  text-transform: uppercase;
  color: var(--navy);
}

.offering-card p {
  font-size: .95rem;
  line-height: 1.65;
  color: var(--gray-600);
}

.offering-link {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  transition: color .2s, gap .2s;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: auto;
}

.offering-link:hover { color: var(--red-dark); gap: .55rem; }
.offering-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }


.trust-section {
  position: relative;
  padding-block: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}

.trust-bg {
  position: absolute;
  inset: 0;
}

.trust-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.trust-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, .96) 0%,
    rgba(10, 22, 40, .88) 60%,
    rgba(19, 32, 68, .80) 100%
  );
}

.trust-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 900px) {
  .trust-content { grid-template-columns: 1.5fr 1fr; align-items: start; }
}

.trust-text h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.trust-text p {
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.8rem;
  max-width: 600px;
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.trust-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.trust-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  margin-top: .15rem;
}

.trust-list li > div {
  font-size: .95rem;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}

.trust-list li > div strong {
  color: var(--white);
  font-weight: 700;
}

.trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.badge-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  transition: background .2s;
}

.badge-card:hover { background: rgba(255,255,255,.12); }

.badge-card-accent {
  background: rgba(200, 16, 46, .18);
  border-color: rgba(200, 16, 46, .35);
}

.badge-year {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--gold);
  line-height: 1;
}

.badge-icon {
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}

.badge-label {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  line-height: 1.3;
  text-align: center;
}


.facility-section {
  padding-block: clamp(4rem, 8vw, 6rem);
  background: var(--off-white);
}

.facility-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .facility-inner { grid-template-columns: 1.1fr 1fr; }
}

.facility-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

.facility-img { border-radius: var(--radius-md); aspect-ratio: 4/3; object-fit: cover; }
.facility-img-main { grid-column: 1 / -1; aspect-ratio: 16/9; }

.facility-text { display: flex; flex-direction: column; gap: 1.2rem; }

.facility-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--navy);
}

.facility-lead {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.facility-details {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin-block: .4rem;
}

.facility-details li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
}

.facility-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--red);
  margin-top: .15rem;
}

.facility-icon svg { width: 100%; height: 100%; fill: currentColor; stroke: none; }

.facility-details li > div {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  font-size: .92rem;
}

.facility-details strong {
  font-weight: 700;
  color: var(--navy);
  font-family: var(--ff-display);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.facility-details span, .facility-details a {
  color: var(--gray-600);
}

.facility-details a:hover { color: var(--red); }
.facility-details a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.facility-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: .5rem;
}


.cta-banner {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 60%, #e8283b 100%);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.cta-banner-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.cta-banner-text h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .6rem;
}

.cta-banner-text p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  max-width: 520px;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  flex-shrink: 0;
}

.cta-banner-actions .btn-primary {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}

.cta-banner-actions .btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}


.site-footer {
  background: var(--navy);
  border-top: 3px solid var(--red);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .footer-inner { grid-template-columns: 2fr 1fr 1fr 2fr; }
}

.footer-logo { margin-bottom: .8rem; }
.footer-logo .logo-text { display: block; }

.footer-tagline {
  font-size: .92rem;
  color: var(--gray-400);
  margin-bottom: .8rem;
  font-style: italic;
}

.footer-address {
  font-size: .88rem;
  color: var(--gray-400);
  line-height: 1.65;
}

.footer-address a { color: var(--gray-200); transition: color .2s; }
.footer-address a:hover { color: var(--gold); }
.footer-address a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.footer-nav-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}

.footer-nav ul { display: flex; flex-direction: column; gap: .55rem; }

.footer-nav ul li a {
  font-size: .9rem;
  color: var(--gray-400);
  transition: color .2s;
}

.footer-nav ul li a:hover { color: var(--white); }
.footer-nav ul li a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  justify-content: flex-end;
}

.footer-legal p {
  font-size: .8rem;
  color: var(--gray-400);
  line-height: 1.5;
}

@media (min-width: 640px) {
  .footer-legal { grid-column: 1 / -1; }
}

@media (min-width: 900px) {
  .footer-legal { grid-column: auto; }
}



.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero-media {
  position: absolute;
  inset: 0;
}

.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, .93) 0%,
    rgba(10, 22, 40, .72) 55%,
    rgba(10, 22, 40, .50) 100%
  );
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(5rem, 12vh, 8rem);
  max-width: 780px;
}

.about-hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: .98;
  margin-bottom: 1.4rem;
  letter-spacing: -.01em;
}

.about-hero-headline em {
  font-style: normal;
  color: var(--gold);
}

.about-hero-sub {
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  color: rgba(255,255,255,.82);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.about-mission {
  padding-block: clamp(4rem, 8vw, 6rem);
  background: var(--white);
}

.about-mission-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about-mission-inner { grid-template-columns: 1fr 1fr; }
}

.about-mission-text { display: flex; flex-direction: column; gap: 1.1rem; }

.about-mission-heading {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .2rem;
}

.about-mission-text p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.72;
}

.about-img-rounded {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.about-timeline {
  padding-block: clamp(4rem, 8vw, 6rem);
  background: var(--off-white);
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
  margin-inline: auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 72px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}

@media (min-width: 640px) {
  .timeline::before { left: 88px; }
}

.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}

@media (min-width: 640px) {
  .timeline-item { grid-template-columns: 120px 1fr; }
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: .25rem;
  position: relative;
  z-index: 1;
}

.timeline-year {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(.9rem, 2vw, 1.1rem);
  color: var(--white);
  background: var(--navy);
  border: 2px solid var(--red);
  border-radius: var(--radius-sm);
  padding: .3rem .55rem;
  line-height: 1;
  text-align: center;
  display: block;
}

.timeline-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--red);
  position: relative;
}

.timeline-card::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 18px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 10px solid var(--red);
}

.timeline-card h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .5rem;
}

.timeline-card p {
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.about-pillars {
  position: relative;
  padding-block: clamp(4rem, 8vw, 6.5rem);
  overflow: hidden;
}

.about-pillars-bg {
  position: absolute;
  inset: 0;
}

.about-pillars-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-pillars-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, .97) 0%,
    rgba(10, 22, 40, .9) 60%,
    rgba(19, 32, 68, .85) 100%
  );
}

.about-pillars-content {
  position: relative;
  z-index: 2;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 1.5rem;
}

.pillar-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  transition: background .2s, border-color .2s, transform .2s;
}

.pillar-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-3px);
}

.pillar-card-accent {
  background: rgba(200, 16, 46, .15);
  border-color: rgba(200, 16, 46, .3);
}

.pillar-card-accent:hover { background: rgba(200, 16, 46, .22); border-color: rgba(200, 16, 46, .5); }

.pillar-number {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 1;
  color: rgba(255,255,255,.12);
  letter-spacing: -.02em;
}

.pillar-card-accent .pillar-number { color: rgba(200, 16, 46, .35); }

.pillar-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  flex-shrink: 0;
}

.pillar-icon svg { width: 100%; height: 100%; }

.pillar-card h3 {
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--white);
}

.pillar-card p {
  font-size: .9rem;
  color: rgba(255,255,255,.68);
  line-height: 1.65;
}

.about-sports {
  padding-block: clamp(4rem, 8vw, 6rem);
  background: var(--white);
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
}

.sport-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.sport-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy-light);
}

.sport-card-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.sport-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.sport-card:hover .sport-card-img { transform: scale(1.04); }

.sport-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.6) 0%, transparent 60%);
}

.sport-card-badge {
  position: absolute;
  bottom: .7rem;
  left: .7rem;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  padding: .25rem .7rem;
  border-radius: 999px;
}

.sport-card-badge.lacrosse    { background: var(--navy); }
.sport-card-badge.fieldhockey { background: #1a6b3c; }
.sport-card-badge.soccer      { background: #5c3f99; }
.sport-card-badge.baseball    { background: #c8102e; }
.sport-card-badge.softball    { background: #c06a00; }

.sport-card-body {
  padding: 1.3rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}

.sport-card-body h3 {
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--navy);
}

.sport-card-body p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.6;
  flex: 1;
}

.sport-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .4rem;
}




.contact-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contact-hero-media {
  position: absolute;
  inset: 0;
}

.contact-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, .94) 0%,
    rgba(10, 22, 40, .75) 55%,
    rgba(19, 32, 68, .60) 100%
  );
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(4rem, 10vh, 7rem) clamp(3.5rem, 8vh, 6rem);
  max-width: 780px;
}

.contact-hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: .98;
  margin-bottom: 1.2rem;
}

.contact-hero-sub {
  font-size: clamp(.95rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,.80);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.contact-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 999px;
  padding: .55rem 1.2rem;
  transition: background .2s, border-color .2s, color .2s;
}

.contact-chip:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.contact-chip:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.contact-chip-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.contact-chip-icon svg {
  width: 100%;
  height: 100%;
}


.contact-channels {
  padding-block: clamp(4rem, 8vw, 6rem);
  background: var(--off-white);
}

.channels-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .channels-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 960px) {
  .channels-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

.channel-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 2px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.channel-card:hover {
  border-color: var(--navy-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.channel-card-primary {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.channel-card-primary:hover {
  border-color: var(--gold);
}

.channel-icon {
  width: 48px;
  height: 48px;
  color: var(--red);
  flex-shrink: 0;
}

.channel-card-primary .channel-icon { color: var(--gold); }

.channel-icon svg { width: 100%; height: 100%; }

.channel-title {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: -.01em;
}

.channel-card-primary .channel-title { color: var(--white); }

.channel-desc {
  font-size: .93rem;
  color: var(--gray-600);
  line-height: 1.65;
  flex: 1;
}

.channel-card-primary .channel-desc { color: rgba(255,255,255,.72); }

.channel-card-primary .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.channel-card-primary .btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
}


.contact-topics {
  padding-block: clamp(4rem, 8vw, 6rem);
  background: var(--white);
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
}

.topic-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.topic-card:hover {
  border-color: var(--navy-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.topic-sport-stripe {
  height: 5px;
  width: 100%;
  flex-shrink: 0;
}

.lacrosse-stripe  { background: var(--navy); }
.recruiting-stripe { background: var(--red); }
.facility-stripe  { background: #1a6b3c; }
.partner-stripe   { background: var(--gold); }

.topic-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex: 1;
}

.topic-badge {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(200, 16, 46, .08);
  border-radius: var(--radius-sm);
  padding: .2rem .6rem;
  align-self: flex-start;
}

.topic-title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.1;
}

.topic-desc {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.6;
  flex: 1;
}


.contact-location {
  padding-block: clamp(4rem, 8vw, 6rem);
  background: var(--off-white);
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .location-inner { grid-template-columns: 1fr 1fr; }
}

.location-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.location-map-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(10, 22, 40, .90);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  padding: .7rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.lmb-label {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
}

.lmb-addr {
  font-size: .75rem;
  color: rgba(255,255,255,.65);
}

.location-text {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.location-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy);
}

.location-lead {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin-block: .2rem;
}

.location-details li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
}

.location-details .facility-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--red);
  margin-top: .15rem;
}

.location-details .facility-icon svg {
  width: 100%;
  height: 100%;
}

.location-details li > div {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  font-size: .92rem;
}

.location-details strong {
  font-weight: 700;
  color: var(--navy);
  font-family: var(--ff-display);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.location-details span, .location-details a {
  color: var(--gray-600);
}

.location-details a:hover { color: var(--red); }
.location-details a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }


.contact-sports {
  padding-block: clamp(4rem, 8vw, 6rem);
  background: var(--white);
}

.sports-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 210px), 1fr));
  gap: 1.25rem;
}

.sport-item {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.sport-item:hover {
  border-color: var(--navy-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.sport-item-img-wrap {
  aspect-ratio: 3/2;
  overflow: hidden;
  flex-shrink: 0;
}

.sport-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.sport-item:hover .sport-item-img { transform: scale(1.05); }

.sport-item-body {
  padding: 1.1rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  flex: 1;
}

.sport-item-name {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.1;
}

.sport-item-note {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.55;
  flex: 1;
}


/* pn-injected styles (links block, social bar, image fallback, photo credit) */

.pn-links-rail { box-sizing: border-box; width: 100%; max-width: 100%; margin: 0; padding: 1.1rem 1.25rem 1rem; border: 1px solid rgba(0,0,0,.14); border-top: 3px solid currentColor; background: rgba(0,0,0,.015); font-family: inherit; }
.pn-links-rail__head { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; opacity: .8; margin: 0 0 .65rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(0,0,0,.1); }
.pn-links-rail__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.pn-links-rail__list li { line-height: 1.35; }
.pn-links-rail__list a { font-size: .92rem; color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.pn-links-rail__list a:hover { opacity: .75; }
@media (min-width: 1024px) {
  main:has(> .pn-links-rail) {
    max-width: min(1280px, calc(100vw - 3rem));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    column-gap: 2.5rem;
    align-items: start;
    box-sizing: border-box;
  }
  main > .pn-links-rail {
    grid-column: 2;
    grid-row: 1 / span 999;
    position: sticky;
    top: 1.5rem;
    align-self: start;
  }
  main > .pn-links-hidden { grid-column: 1; grid-row: 1; }
}
@media (max-width: 1023px) {
  main > .pn-links-rail { margin: 1.5rem 0 1rem; }
}
.pn-links-hidden { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.pn-social { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.pn-social__link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: inherit; opacity: .82; transition: opacity .15s ease, transform .15s ease; text-decoration: none; }
.pn-social__link:hover { opacity: 1; transform: translateY(-1px); }
.pn-social__icon { display: block; width: 22px; height: 22px; }
.pn-social--header { justify-content: flex-end; margin: .35rem 1.25rem; }
.pn-social--footer { justify-content: center; margin: 0 auto .85rem; }
.pn-social--sidebar { justify-content: flex-start; margin: 0 0 1.25rem; }
@media (max-width: 720px) { .pn-social--header { justify-content: center; } }

.pn-links-rail{max-width:none;width:auto;margin:1.5rem auto .25rem;padding:0;border:none;background:none;text-align:center;}
.pn-links-rail__head{border:none;padding:0;margin:0 0 .5rem;font-size:.66rem;letter-spacing:.14em;opacity:.5;}
.pn-links-rail__list{flex-direction:row;justify-content:center;flex-wrap:wrap;gap:.35rem 1.15rem;}

.pn-photo{background-color:#e6e1d6;}

.pn-img-fallback{background:repeating-linear-gradient(135deg,#e6e1d6 0,#e6e1d6 10px,#efe9dd 10px,#efe9dd 20px);display:block;min-height:200px;width:100%;}

.pn-photo-credits{font-size:11px;line-height:1.5;opacity:.55;text-align:center;padding:10px 16px;}.pn-photo-credits a{color:inherit;}
