:root {
  --navy: #081d38;
  --navy2: #102e53;
  --red: #d80d3b;
  --gold: #d5a72f;
  --paper: #f4f6f8;
  --ink: #0b1b2e;
  --muted: #5f6f81;
  --line: #dce2e8;
  --white: #fff;

  /* additive tokens only — no palette colours changed above */
  --font-display: "Oswald", "Arial Narrow", Arial, sans-serif;
  --font-body: "Inter", Arial, "Helvetica Neue", sans-serif;
  --radius: 12px;
  --radius-sm: 7px;
  --shadow-1: 0 10px 26px rgba(8, 29, 56, 0.08);
  --shadow-2: 0 24px 54px rgba(8, 29, 56, 0.16);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
::selection {
  background: var(--gold);
  color: var(--navy);
}
.wrap {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}
.utility {
  background: #041327;
  color: #bbc7d6;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.utility .wrap {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.utility-slogan {
  color: var(--gold);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 29, 56, 0.98);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 8px 24px rgba(2, 13, 28, 0.15);
}
.header-inner {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 11px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
}
.brand strong,
.brand small {
  display: block;
  line-height: 1;
}
.brand strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.06em;
}
.brand small {
  margin-top: 7px;
  color: #cbd5e1;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.22em;
}
.brand small.brand-tagline {
  margin-top: 3px;
  color: var(--gold);
}
.header nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header nav a:not(.nav-button) {
  position: relative;
  padding-bottom: 4px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #dbe4ee;
  transition: color 0.15s var(--ease);
}
.header nav a:not(.nav-button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transition: right 0.2s var(--ease);
}
.header nav a:not(.nav-button):hover {
  color: #fff;
}
.header nav a:not(.nav-button):hover::after {
  right: 0;
}
.header nav a[aria-current="page"]:not(.nav-button) {
  color: var(--gold);
}
.header nav a[aria-current="page"]:not(.nav-button)::after {
  right: 0;
}
.header nav .nav-button[aria-current="page"] {
  box-shadow: inset 0 0 0 2px var(--gold);
}
.nav-button {
  padding: 11px 18px;
  background: var(--red);
  border-radius: var(--radius-sm);
  transition:
    background 0.15s var(--ease),
    transform 0.15s var(--ease);
}
.nav-button:hover {
  background: color-mix(in srgb, var(--red) 85%, black);
  transform: translateY(-1px);
}
.menu-toggle {
  display: none;
  padding: 9px 14px;
  border: 1px solid #60748d;
  background: transparent;
  color: #fff;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.15s var(--ease), background 0.15s var(--ease);
}
.menu-toggle:hover {
  border-color: var(--gold);
  background: rgba(213, 167, 47, 0.08);
}
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(110deg, #f5f7f9 0 61%, #e9edf2 61%);
  border-bottom: 1px solid var(--line);
}
.hero:after {
  content: "";
  position: absolute;
  right: -140px;
  top: -210px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(213, 167, 47, 0.35);
  transform: rotate(45deg);
}
.hero-grid {
  min-height: 660px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 8vw;
}
.hero-copy {
  padding: 90px 0;
  animation: rise 700ms var(--ease) both;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--red);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  flex: none;
  background: currentColor;
  opacity: 0.85;
}
.eyebrow.navy {
  color: #745800;
}
.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(54px, 6.7vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 26px 0 34px;
  color: var(--muted);
  font-size: 19px;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.15s var(--ease),
    border-color 0.15s var(--ease),
    color 0.15s var(--ease),
    transform 0.15s var(--ease),
    box-shadow 0.15s var(--ease);
}
.primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 22px rgba(216, 13, 59, 0.22);
}
.primary:hover {
  background: color-mix(in srgb, var(--red) 87%, black);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(216, 13, 59, 0.28);
}
.secondary {
  background: #fff;
  border: 1px solid #c9d0d9;
  color: var(--navy);
}
.secondary:hover {
  border-color: var(--navy);
  background: var(--paper);
  transform: translateY(-2px);
}
.gold {
  background: var(--gold);
  color: var(--navy);
}
.gold:hover {
  background: color-mix(in srgb, var(--gold) 90%, black);
  transform: translateY(-2px);
}
.hero-brand {
  position: relative;
  z-index: 2;
  animation: rise 700ms var(--ease) 100ms both;
}
.monogram-panel {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 54px;
  background: linear-gradient(145deg, #081d38 0%, #102e53 72%, #182f4b 100%);
  border-radius: var(--radius) var(--radius) 0 0;
  color: #fff;
  box-shadow: var(--shadow-2);
}
.monogram-panel::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 60%;
  height: 140%;
  background: radial-gradient(circle, rgba(213, 167, 47, 0.16), transparent 65%);
  pointer-events: none;
}
.monogram-panel span {
  position: relative;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.58em;
  color: var(--gold);
}
.monogram-panel strong {
  position: relative;
  margin: 14px 0 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(120px, 16vw, 220px);
  line-height: 0.75;
  letter-spacing: -0.01em;
}
.monogram-panel small {
  position: relative;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  width: 100%;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  color: #cbd5e1;
}
.status {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
}
.status > span {
  width: 10px;
  height: 10px;
  flex: none;
  border-radius: 50%;
  background: #2caa63;
  box-shadow: 0 0 0 5px #e1f5e9;
}
.status strong,
.status small {
  display: block;
  font-family: var(--font-body);
}
.status strong {
  font-size: 14px;
}
.status small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}
.facts {
  background: var(--navy);
  color: #fff;
}
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background: linear-gradient(130deg, var(--navy), #15375f);
  color: #fff;
}
.page-hero.compact {
  padding: 78px 0;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -40px;
  width: 300px;
  height: 220px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 220' fill='none'%3E%3Cline x1='120' y1='30' x2='120' y2='190' stroke='%23d5a72f' stroke-width='10' stroke-linecap='round'/%3E%3Cline x1='160' y1='20' x2='160' y2='190' stroke='%23d5a72f' stroke-width='10' stroke-linecap='round'/%3E%3Cline x1='200' y1='30' x2='200' y2='190' stroke='%23d5a72f' stroke-width='10' stroke-linecap='round'/%3E%3Crect x='110' y='12' width='42' height='11' rx='5.5' stroke='%23d5a72f' stroke-width='6'/%3E%3Crect x='152' y='6' width='42' height='11' rx='5.5' stroke='%23d5a72f' stroke-width='6'/%3E%3Ccircle cx='55' cy='150' r='34' stroke='%23d5a72f' stroke-width='8'/%3E%3Cpath d='M28 138 Q55 154 82 138' stroke='%23d5a72f' stroke-width='4'/%3E%3Cpath d='M28 162 Q55 146 82 162' stroke='%23d5a72f' stroke-width='4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.16;
  pointer-events: none;
}
.page-hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(52px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}
.page-hero p:last-child {
  max-width: 650px;
  margin: 25px 0 0;
  color: #c5d0de;
  font-size: 19px;
}
.home-links {
  background: var(--paper);
}
.sponsor-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
}
.sponsor-detail h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(46px, 5.8vw, 78px);
  line-height: 0.96;
  text-transform: uppercase;
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.facts-grid > div {
  padding: 26px 24px;
  border-right: 1px solid #314765;
  transition: background 0.15s var(--ease);
}
.facts-grid > div:first-child {
  padding-left: 0;
}
.facts-grid > div:last-child {
  border: 0;
}
.facts small,
.facts strong {
  display: block;
  font-family: var(--font-body);
}
.facts small {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.facts strong,
.facts a {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 700;
}
.facts a {
  text-decoration: none;
  transition: color 0.15s var(--ease);
}
.facts a:hover {
  color: var(--gold);
  text-decoration: underline;
}
.section {
  padding: 105px 0;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
}
.section h2 {
  font-size: clamp(46px, 5.8vw, 78px);
}
.prose {
  padding-top: 31px;
}
.prose p {
  color: var(--muted);
}
.prose .intro {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
}
.involved {
  background: var(--paper);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: end;
  margin-bottom: 46px;
}
.section-heading > p {
  max-width: 380px;
  color: var(--muted);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--navy);
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: var(--shadow-1);
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    border-top-color 0.22s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2);
  border-top-color: var(--gold);
}
.card .number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--red);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  transition: border-color 0.22s var(--ease);
}
.card:hover .number {
  border-color: var(--gold);
}
.card h3 {
  margin: 34px 0 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  text-transform: uppercase;
}
.card p {
  color: var(--muted);
}
.card b {
  margin-top: auto;
  padding-top: 18px;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
}
.card b span {
  display: inline-block;
  color: var(--red);
  transition: transform 0.2s var(--ease);
}
.card:hover b span {
  transform: translateX(4px);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-card {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    border-top-color 0.22s var(--ease);
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2);
  border-top-color: var(--gold);
}
.value-card .number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--red);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
}
.value-card h3 {
  margin: 30px 0 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 25px;
  line-height: 1.08;
  text-transform: uppercase;
}
.value-card p {
  margin: 0;
  color: var(--muted);
}
.kit-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 6vw;
  align-items: center;
}
.events {
  background: #fff;
}
.calendar-layout {
  display: grid;
  grid-template-columns: 1.7fr 0.5fr;
  gap: 24px;
}
.calendar-card,
.event-list,
.registration-form,
.location-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
}
.calendar-card {
  padding: 30px;
  box-shadow: var(--shadow-1);
}
.calendar-header {
  margin-bottom: 20px;
}
.calendar-header h3 {
  margin: 6px 0 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 27px;
  text-transform: uppercase;
}
.calendar-embed {
  width: 100%;
  height: 780px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--paper);
}
.calendar-embed iframe {
  display: block;
  width: 100%;
  height: 832px;
  border: 0;
}
.event-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
  background: var(--navy);
  color: #fff;
}
.event-list h3,
.location-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  text-transform: uppercase;
}
.event-list > p:not(.eyebrow) {
  color: #c5d0de;
  margin-bottom: 28px;
}
.event-list .secondary {
  color: var(--navy);
}
.kit-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}
.swatches {
  display: flex;
  gap: 9px;
  margin-top: 28px;
}
.swatches i {
  width: 38px;
  height: 9px;
  border-radius: 5px;
}
.s1 {
  background: var(--navy);
}
.s2 {
  background: var(--red);
}
.s3 {
  background: var(--gold);
}
.s4 {
  background: #fff;
  border: 1px solid #ccd3dc;
}
.kit-image {
  padding: 18px;
  background: var(--paper);
  border-left: 5px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-1);
}
.kit-image img {
  border-radius: var(--radius-sm);
}
.sponsors {
  background: var(--navy);
  color: #fff;
}
.sponsor-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 9vw;
  align-items: end;
}
.sponsors h2 {
  font-size: clamp(48px, 6vw, 82px);
}
.gold-text {
  color: var(--gold);
}
.sponsors p:not(.eyebrow) {
  color: #c5d0de;
  font-size: 18px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-grid:not(:empty) {
  margin-bottom: 40px;
}
.player-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.player-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}
.player-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--paper);
}
.player-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.player-card-body {
  padding: 18px 20px 22px;
}
.player-card-body h3 {
  margin: 0 0 4px;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  text-transform: uppercase;
}
.player-role {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.player-stats {
  display: inline-block;
  margin-top: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.player-stats:hover {
  border-bottom-color: currentColor;
}
.team-empty {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-1);
}
.team-empty h2 {
  margin: 8px 0 14px;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
}
.team-empty p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  max-width: 56ch;
  margin: 0 auto;
}
.team-empty a {
  color: var(--red);
  font-weight: 700;
}
.registration {
  background: var(--paper);
}
.reg-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-1);
}
.reg-tab {
  padding: 12px 22px;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.reg-tab:hover {
  background: var(--paper);
}
.reg-tab[aria-selected="true"] {
  background: var(--navy);
  color: #fff;
}
.registration-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 24px;
  align-items: stretch;
}
.reg-panels {
  min-width: 0;
}
.registration-form {
  padding: 36px;
  box-shadow: var(--shadow-1);
}
.reg-form-head {
  margin-bottom: 26px;
}
.reg-form-head h2 {
  margin: 8px 0 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
}
.registration-form label {
  display: block;
  margin-bottom: 19px;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
}
.field-hint {
  color: var(--muted);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}
.registration-form input[type="file"] {
  padding: 10px 14px;
  font-size: 13px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.registration-form input,
.registration-form select,
.registration-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  border: 1px solid #bec9d5;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  font: inherit;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.registration-form input:hover,
.registration-form select:hover,
.registration-form textarea:hover {
  border-color: #9aa9bb;
}
.registration-form input:focus,
.registration-form select:focus,
.registration-form textarea:focus {
  outline: 3px solid rgba(213, 167, 47, 0.32);
  border-color: var(--gold);
}
.submit-button {
  border: 0;
  cursor: pointer;
  margin-top: 4px;
}
.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.form-status {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-left: 4px solid #2caa63;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: #e7f6ed;
  color: #155f34;
  font-size: 13px;
  font-weight: 700;
}
.form-status.error {
  border-color: var(--red);
  background: #fce8ed;
  color: #97102f;
}
.honeypot {
  position: absolute !important;
  left: -10000px !important;
}
.location-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-1);
}
.location-card > div {
  padding: 34px;
}
.location-card > div p:last-child {
  color: var(--muted);
}
.location-card iframe {
  width: 100%;
  min-height: 330px;
  flex: 1;
  border: 0;
  filter: grayscale(0.15);
}
.map-link {
  padding: 15px 20px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: background 0.15s var(--ease);
}
.map-link:hover {
  background: color-mix(in srgb, var(--navy) 80%, black);
}
footer {
  background: #041327;
  color: var(--white);
  font-size: 13px;
  border-top: 2px solid rgba(213, 167, 47, 0.35);
}
.footer-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.menu-toggle {
  cursor: pointer;
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
  }
  .facts-grid {
    grid-template-columns: 1fr 1fr;
  }
  .facts-grid > div:nth-child(2) {
    border-right: 0;
  }
  .facts-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid #314765;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .card {
    min-height: 240px;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .card h3 {
    margin-top: 32px;
  }
  .kit-grid {
    grid-template-columns: 1fr;
  }
  .kit-image {
    border-radius: var(--radius);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .calendar-layout,
  .registration-grid {
    grid-template-columns: 1fr;
  }
  .sponsor-grid {
    gap: 5vw;
  }
  .sponsor-detail {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 720px) {
  .wrap {
    width: min(100% - 36px, 1180px);
  }
  .utility {
    display: none;
  }
  .header-inner {
    height: 76px;
  }
  .brand img {
    width: 56px;
    height: 56px;
  }
  .menu-toggle {
    display: block;
  }
  .header nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    padding: 22px;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    border-top: 1px solid #2f4663;
  }
  .header nav.open {
    display: flex;
  }
  .header nav a:not(.nav-button)::after {
    display: none;
  }
  .hero {
    background: #f5f7f9;
  }
  .page-hero::after {
    width: 190px;
    height: 140px;
    opacity: 0.12;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 70px 0;
  }
  .hero-copy {
    padding: 0;
  }
  .hero h1 {
    font-size: 58px;
  }
  .hero-brand {
    width: min(410px, 100%);
  }
  .section {
    padding: 76px 0;
  }
  .two-col,
  .sponsor-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .prose {
    padding-top: 0;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p {
    margin-top: 20px;
  }
  .facts-grid > div {
    padding: 21px 15px;
  }
  .facts-grid > div:first-child {
    padding-left: 15px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .reg-tabs {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .reg-tab {
    flex: 1 1 auto;
    text-align: center;
  }
  .calendar-embed {
    height: 620px;
  }
  .calendar-embed iframe {
    height: 668px;
  }
  .footer-inner {
    padding: 28px 0;
  }
}
@media (max-width: 460px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-empty {
    padding: 28px 22px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 50px;
  }
  .actions .button {
    width: 100%;
  }
  .facts-grid {
    grid-template-columns: 1fr;
  }
  .facts-grid > div {
    border-right: 0;
    border-bottom: 1px solid #314765 !important;
  }
  .facts-grid > div:last-child {
    border-bottom: 0 !important;
  }
  .section h2 {
    font-size: 43px;
  }
  .calendar-card,
  .registration-form,
  .location-card > div,
  .event-list {
    padding: 22px;
  }
  .calendar-embed {
    height: 540px;
  }
  .calendar-embed iframe {
    height: 584px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .card,
  .hero-copy,
  .hero-brand {
    transition: none;
    animation: none;
  }
}
