@charset "UTF-8";

:root {
  --ink: #11110f;
  --paper: #f2eee6;
  --orange: #ff5a12;
  --orange-hot: #ff7132;
  --white: #fffdf8;
  --stone: #6a665f;
  --line: rgba(17, 17, 15, 0.16);
  --max: 1680px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

:focus-visible {
  outline: 3px solid #006aff;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.season-strip {
  min-height: 38px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem max(1rem, calc((100vw - var(--max)) / 2 + 3rem));
  background: var(--orange);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.season-strip__message { text-align: center; }
.season-strip a {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-bottom: 1px solid currentColor;
}

.site-header {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 0.8rem max(1rem, calc((100vw - var(--max)) / 2 + 3rem));
  border-bottom: 1px solid var(--line);
  background: rgba(242, 238, 230, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand img {
  width: 44px;
  height: 54px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand span { display: grid; gap: 0.12rem; }
.brand strong {
  font-size: 1rem;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.brand small {
  color: #67645e;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.4vw, 2.2rem);
  flex: 1;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.desktop-nav a {
  padding-block: 0.65rem;
  border-bottom: 2px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--orange);
  border-color: var(--orange);
}

.header-cta {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0.85rem 1.1rem;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.mobile-nav { display: none; }

.hero {
  max-width: var(--max);
  min-height: min(750px, calc(100svh - 126px));
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(430px, 1.14fr);
  gap: clamp(1rem, 3vw, 3.2rem);
  margin-inline: auto;
  padding: clamp(1.2rem, 3vw, 3rem) clamp(1rem, 3vw, 3rem) 0;
  overflow: hidden;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: 2.5rem 4.5rem;
}

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.4rem;
  color: #5d5952;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span { color: var(--orange); }

h1, h2, h3, p { text-wrap: pretty; }

h1,
h2 {
  margin: 0;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.87;
  text-transform: uppercase;
}

h1 {
  max-width: 800px;
  font-size: clamp(3.2rem, 6.8vw, 7.55rem);
}

h2 { font-size: clamp(3rem, 6vw, 6.8rem); }
h1 em, h2 em { color: var(--orange); font-style: normal; }

.hero__intro {
  max-width: 620px;
  margin: 2rem 0 0;
  color: #5b5750;
  font-size: clamp(1rem, 1.35vw, 1.24rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0.9rem 1.25rem;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible { transform: translateY(-2px); }
.button--primary { border-color: var(--orange); background: var(--orange); }
.button--primary:hover, .button--primary:focus-visible { background: var(--orange-hot); }
.button--ghost:hover, .button--ghost:focus-visible { background: var(--ink); color: var(--white); }
.button--ink { background: var(--ink); color: var(--white); }
.button--ink:hover, .button--ink:focus-visible { background: var(--orange); color: var(--ink); border-color: var(--orange); }
.button--wide { width: 100%; }

.hero__visual {
  min-height: 620px;
  position: relative;
  border-radius: 0.35rem 0.35rem 0 0;
  overflow: hidden;
  background: #cbd5c2;
}

.hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.72));
  pointer-events: none;
}

.hero__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.hero__visual:hover > img { transform: scale(1.025); }

.hero__badge {
  width: 156px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  z-index: 2;
  border-radius: 50%;
  background: var(--orange);
  transform: rotate(7deg);
  text-align: center;
  text-transform: uppercase;
}

.hero__badge span {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 1.45rem;
  line-height: 0.8;
}

.hero__badge strong {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 1.08rem;
  line-height: 0.9;
}

.hero__caption {
  position: absolute;
  left: 1.4rem;
  bottom: 1.2rem;
  z-index: 2;
  margin: 0;
  color: white;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 0.6fr)) 1.7fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.quick-facts > p {
  min-height: 134px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 1rem clamp(1rem, 3vw, 2.8rem);
  border-right: 1px solid var(--line);
}

.quick-facts strong {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(2.6rem, 4vw, 4.5rem);
  line-height: 1;
}

.quick-facts span {
  max-width: 84px;
  color: #68635b;
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.quick-facts .quick-facts__wordmark {
  justify-content: center;
  border-right: 0;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(1.7rem, 3.7vw, 4rem);
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-transform: uppercase;
}

.quick-facts__wordmark i { color: var(--orange); font-style: normal; }

.section { padding: clamp(5rem, 10vw, 10rem) max(1rem, calc((100vw - var(--max)) / 2 + 3rem)); }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.5fr);
  gap: clamp(2rem, 8vw, 10rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.section-heading__copy {
  max-width: 430px;
  margin: 0 0 0.5rem;
  color: var(--stone);
  font-size: 1rem;
  line-height: 1.65;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1px;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.news-card {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.news-card--feature {
  grid-column: span 6;
  grid-row: span 2;
  min-height: 720px;
}

.news-card--dark, .news-card--orange { grid-column: span 3; padding: clamp(1.3rem, 2.5vw, 2.2rem); }
.news-card--photo { grid-column: span 6; }
.news-card--dark { background: var(--ink); color: var(--white); }
.news-card--orange { background: var(--orange); }

.news-card__image { height: 53%; overflow: hidden; }
.news-card__image img, .news-card--photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.news-card__image--field img { object-position: 50% 46%; }
.news-card:hover .news-card__image img, .news-card--photo:hover > img { transform: scale(1.035); }

.news-card__body { flex: 1; padding: clamp(1.5rem, 3vw, 3rem); }

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.card-meta span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.card-meta span:first-child::before {
  content: '';
  width: 7px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: currentColor;
}

.news-card h3 {
  max-width: 680px;
  margin: 2rem 0 1rem;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 3.6rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
  text-transform: uppercase;
}

.news-card--dark h3, .news-card--orange h3 { font-size: clamp(1.8rem, 2.6vw, 3.2rem); }
.news-card__body > p:not(.card-meta) { max-width: 600px; color: var(--stone); line-height: 1.55; }
.news-card__number {
  margin: 0 0 1.2rem;
  opacity: 0.45;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 4.5rem;
  letter-spacing: -0.08em;
  line-height: 1;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.2rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.71rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.text-link span { transition: transform 160ms ease; }
.text-link:hover span, .text-link:focus-visible span { transform: translate(2px, -2px); }
.text-link--light { color: var(--white); }

.news-card--photo > img { position: absolute; inset: 0; }
.news-card--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.85));
}
.news-card__overlay {
  align-self: stretch;
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: clamp(1.5rem, 3vw, 3rem);
  color: var(--white);
}

.section--sports { background: var(--ink); color: var(--white); }
.section-heading--light .kicker, .section-heading--light .section-heading__copy { color: #aaa69f; }

.sports-list { border-top: 1px solid rgba(255,255,255,0.24); }
.sport-row {
  display: grid;
  grid-template-columns: 80px minmax(220px, 1fr) minmax(250px, 0.7fr) 40px;
  align-items: center;
  gap: 1rem;
  padding: clamp(1.4rem, 2.4vw, 2.4rem) 0;
  border-bottom: 1px solid rgba(255,255,255,0.24);
  transition: color 180ms ease, padding 180ms ease;
}

.sport-row:hover, .sport-row:focus-visible { color: var(--orange); padding-inline: 1rem; }
.sport-row__index { color: #8d8983; font-size: 0.68rem; font-weight: 900; }
.sport-row strong {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 4.6rem);
  letter-spacing: -0.065em;
  line-height: 0.9;
  text-transform: uppercase;
}
.sport-row > span:nth-child(3) { color: #aaa69f; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; }
.sport-row i { font-size: 1.5rem; font-style: normal; text-align: right; }

.facilities {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  min-height: 800px;
  background: var(--white);
}

.facilities__media { min-height: 720px; position: relative; overflow: hidden; }
.facilities__media > img { width: 100%; height: 100%; object-fit: cover; }
.facilities__media > p {
  display: flex;
  justify-content: space-between;
  position: absolute;
  inset: auto 1.2rem 1.2rem;
  margin: 0;
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.facilities__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(3rem, 7vw, 8rem);
}
.facilities__content h2 { font-size: clamp(3rem, 5vw, 6rem); }
.facilities__intro { max-width: 580px; margin: 2rem 0; color: var(--stone); font-size: 1.05rem; line-height: 1.65; }

.facility-list { width: 100%; margin: 0 0 2.3rem; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.facility-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
.facility-list strong { color: var(--orange); font-size: 0.64rem; }

.registration {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 9vw, 10rem);
  padding: clamp(5rem, 10vw, 10rem) max(1rem, calc((100vw - var(--max)) / 2 + 3rem));
  background: #d9d3c7;
}
.registration__heading { align-self: center; }
.registration__heading h2 { font-size: clamp(3.2rem, 6vw, 6.8rem); }
.registration__heading > p:last-child { max-width: 550px; margin-top: 2rem; color: var(--stone); line-height: 1.65; }
.registration__details { display: grid; gap: 1px; background: var(--ink); border: 1px solid var(--ink); }

.price-card { padding: clamp(2rem, 4.5vw, 4.5rem); background: var(--white); }
.price-card > p { margin: 0; font-size: 0.7rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.price-card > strong {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-block: 1.5rem;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(4.5rem, 9vw, 9rem);
  letter-spacing: -0.09em;
  line-height: 0.9;
}
.price-card > strong span { align-self: flex-start; margin-top: 0.7rem; font-family: Arial, sans-serif; font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; }
.price-card > strong small { font-family: Arial, sans-serif; font-size: 1rem; letter-spacing: 0; }
.price-card ul { margin: 0 0 2rem; padding: 0; list-style: none; color: var(--stone); font-size: 0.85rem; line-height: 1.8; }

.registration-steps { margin: 0; padding: 0; background: var(--ink); color: var(--white); list-style: none; }
.registration-steps li { display: grid; grid-template-columns: 50px 1fr; gap: 1rem; padding: 1.5rem 2rem; border-bottom: 1px solid rgba(255,255,255,0.16); }
.registration-steps li:last-child { border-bottom: 0; }
.registration-steps > li > span { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.45); border-radius: 50%; font-size: 0.68rem; }
.registration-steps strong { font-size: 0.78rem; letter-spacing: 0.07em; text-transform: uppercase; }
.registration-steps p { margin: 0.55rem 0 0; color: #b3afa9; font-size: 0.85rem; line-height: 1.5; }

.equipment-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem max(1rem, calc((100vw - var(--max)) / 2 + 3rem));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
}
.equipment-banner p { display: flex; align-items: center; gap: 1rem; margin: 0; }
.equipment-banner p span { padding: 0.3rem 0.55rem; border: 1px solid currentColor; border-radius: 999px; font-size: 0.58rem; letter-spacing: 0.08em; }
.equipment-banner a { border-bottom: 1px solid currentColor; font-size: 0.7rem; }

.contact {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(3rem, 8vw, 9rem);
  padding: clamp(5rem, 10vw, 10rem) max(1rem, calc((100vw - var(--max)) / 2 + 3rem));
}

.contact__intro h2 { font-size: clamp(3.1rem, 5.5vw, 6.2rem); }
.contact__intro > p:last-child { max-width: 500px; margin-top: 2rem; color: var(--stone); line-height: 1.65; }
.contact__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: clamp(1.5rem, 2.25vw, 2.4rem);
  border: 1px solid var(--ink);
  background: var(--white);
  overflow: hidden;
}
.contact-card--orange { background: var(--orange); }
.contact-card__label { margin: 0; font-size: 0.65rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-card > a:not(.text-link), .contact-card address {
  max-width: 100%;
  margin-block: 1.5rem;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(1.45rem, 2.1vw, 2.25rem);
  font-style: normal;
  letter-spacing: -0.04em;
  line-height: 1.06;
}
.contact-card--orange > a:not(.text-link) {
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  white-space: nowrap;
}
.contact-card > a[href^="mailto:"] {
  font-family: Arial, sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  overflow-wrap: normal;
}
.contact-card--address address {
  font-size: clamp(1.65rem, 2.15vw, 2.3rem);
  line-height: 1.08;
}
.contact-card > span { color: var(--stone); font-size: 0.78rem; line-height: 1.55; }
.contact-card--orange > span { color: rgba(17,17,15,0.7); }
.contact-card--image { min-height: 290px; padding: 0; }
.contact-card--image img { width: 100%; height: 100%; object-fit: cover; }

footer { padding: 0 max(1rem, calc((100vw - var(--max)) / 2 + 3rem)); background: var(--ink); color: var(--white); }
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 0.6fr;
  gap: 3rem;
  align-items: start;
  padding-block: 5rem;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.brand--footer img { mix-blend-mode: normal; }
.brand--footer small { color: var(--orange); }
.footer__top > p { margin: 0; color: #aaa69f; line-height: 1.6; }
.footer__top nav { display: grid; gap: 0.75rem; font-size: 0.72rem; font-weight: 900; text-transform: uppercase; }
.footer__top nav a:hover { color: var(--orange); }

.footer__bottom { min-height: 94px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; color: #85817c; font-size: 0.64rem; font-weight: 800; text-transform: uppercase; }
.footer__bottom a { color: var(--white); }
.footer__credit { text-transform: none; }
.footer__credit a { border-bottom: 1px solid currentColor; }

.reveal { animation: rise 680ms cubic-bezier(.2,.7,.2,1) both; }
.reveal--delay { animation-delay: 140ms; }
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .header-cta { margin-left: auto; }
  .mobile-nav { display: block; position: relative; }
  .mobile-nav summary { width: 44px; height: 44px; display: grid; place-content: center; gap: 6px; border: 1px solid var(--ink); border-radius: 50%; cursor: pointer; list-style: none; }
  .mobile-nav summary::-webkit-details-marker { display: none; }
  .mobile-nav summary span { width: 17px; height: 2px; display: block; background: currentColor; }
  .mobile-nav nav { width: min(310px, calc(100vw - 2rem)); display: grid; position: absolute; top: 58px; right: 0; padding: 1rem; background: var(--ink); color: var(--white); box-shadow: 0 20px 50px rgba(0,0,0,0.25); }
  .mobile-nav nav a { padding: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.16); font-size: 0.78rem; font-weight: 900; text-transform: uppercase; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__content { padding-bottom: 1rem; }
  .hero__visual { min-height: 560px; }
  .quick-facts { grid-template-columns: repeat(3, 1fr); }
  .quick-facts .quick-facts__wordmark { grid-column: 1 / -1; min-height: 100px; border-top: 1px solid var(--line); }

  .news-card--feature { grid-column: span 8; }
  .news-card--dark, .news-card--orange { grid-column: span 4; }
  .news-card--photo { grid-column: span 8; }

  .facilities { grid-template-columns: 1fr; }
  .facilities__media { min-height: 620px; }
  .registration { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .season-strip { grid-template-columns: 1fr auto; }
  .season-strip__message { display: none; }
  .site-header { min-height: 74px; gap: 0.7rem; }
  .brand img { width: 36px; height: 44px; }
  .brand strong { font-size: 0.82rem; }
  .header-cta { display: none; }
  .mobile-nav { margin-left: auto; }

  .hero { padding-top: 0.5rem; }
  .hero__content { padding-top: 2rem; }
  h1 { font-size: clamp(3.25rem, 17vw, 5.1rem); }
  h2 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .hero__visual { min-height: 440px; }
  .hero__badge { width: 116px; }
  .hero__badge strong { font-size: 0.8rem; }

  .quick-facts { grid-template-columns: 1fr; }
  .quick-facts > p { min-height: 90px; border-right: 0; border-bottom: 1px solid var(--line); }
  .quick-facts .quick-facts__wordmark { grid-column: auto; border-top: 0; border-bottom: 0; }

  .section-heading { grid-template-columns: 1fr; gap: 2rem; }
  .news-grid { display: block; background: transparent; border: 0; }
  .news-card { min-height: 430px; border: 1px solid var(--ink); border-bottom: 0; }
  .news-card:last-child { border-bottom: 1px solid var(--ink); }
  .news-card--feature { min-height: 620px; }
  .news-card--photo { min-height: 520px; }

  .sport-row { grid-template-columns: 40px 1fr 30px; }
  .sport-row > span:nth-child(3) { display: none; }
  .sport-row strong { font-size: clamp(1.8rem, 10vw, 3rem); }

  .facilities__media { min-height: 450px; }
  .facilities__content { padding: 4rem 1rem; }
  .registration { padding-inline: 1rem; }
  .registration__details { border: 0; }
  .price-card { padding: 2rem 1.2rem; }
  .registration-steps li { padding-inline: 1.2rem; }

  .equipment-banner { align-items: flex-start; flex-direction: column; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact-card { min-height: 280px; }

  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Shared local content pages */
.subpage-body { min-height: 100vh; }
.subpage-body noscript {
  display: block;
  padding: 1rem;
  background: var(--orange);
  font-weight: 800;
  text-align: center;
}

.page-hero {
  max-width: var(--max);
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 3vw, 3rem) 0;
}

.page-hero__content {
  align-self: center;
  min-width: 0;
  padding-block: 3rem 5rem;
}

.page-hero h1 { font-size: clamp(3.35rem, 5.35vw, 6.4rem); }
.page-hero__intro {
  max-width: 700px;
  margin: 2rem 0 0;
  color: var(--stone);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.6;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.chip-row span {
  padding: 0.58rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.32);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-hero__visual {
  min-height: 620px;
  min-width: 0;
  position: relative;
  overflow: hidden;
  background: #ddd7cc;
}

.page-hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5));
}

.page-hero__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__visual > img[src$="crest.jpg"] {
  object-fit: contain;
  padding: 11%;
  background: var(--white);
  mix-blend-mode: multiply;
}

.page-hero__badge {
  width: min(200px, calc(100% - 2.6rem));
  position: absolute;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 2;
  padding: 1rem 1.2rem;
  background: var(--orange);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(1rem, 1.45vw, 1.55rem);
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}

.page-content { background: var(--white); }
.page-block,
.fees,
.legal-copy {
  max-width: var(--max);
  margin-inline: auto;
  padding: clamp(5rem, 9vw, 9rem) clamp(1rem, 3vw, 3rem);
}

.page-block--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: clamp(3rem, 9vw, 11rem);
  align-items: start;
}

.page-block h2,
.fees h2 { font-size: clamp(3rem, 5.4vw, 6.2rem); }
.prose { color: var(--stone); font-size: 1.03rem; line-height: 1.72; }
.prose p { margin: 0 0 1.2rem; }
.prose a:not(.button) { color: var(--ink); border-bottom: 1px solid currentColor; }
.prose strong { color: var(--ink); }

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.page-panel { padding: clamp(4rem, 8vw, 8rem) max(1rem, calc((100vw - var(--max)) / 2 + 3rem)); }
.page-panel--ink { background: var(--ink); color: var(--white); }
.page-panel--orange { background: var(--orange); }
.page-panel--ink .kicker { color: #aaa69f; }
.statement {
  max-width: 960px;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-transform: uppercase;
}

.number-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 3rem 0 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  border-left: 1px solid rgba(255,255,255,0.2);
  list-style: none;
}

.number-grid li {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 3rem);
  border-right: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.number-grid span,
.detail-grid article > span,
.facility-cards article > span {
  color: var(--orange);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.number-grid strong {
  margin-top: auto;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2.7rem);
  letter-spacing: -0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.number-grid p { margin: 1rem 0 0; color: #aaa69f; line-height: 1.5; }

.detail-grid,
.facility-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  background: var(--ink);
  gap: 1px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.detail-grid--four { grid-template-columns: repeat(4, minmax(0,1fr)); }
.detail-grid article,
.facility-cards article {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 3vw, 3rem);
  background: var(--paper);
}

.detail-grid h3 {
  margin: auto 0 0.75rem;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
  text-transform: uppercase;
}

.detail-grid p,
.facility-cards p { margin: 0; color: var(--stone); line-height: 1.55; }
.facility-cards { grid-template-columns: repeat(3, minmax(0,1fr)); }
.facility-cards article { min-height: 250px; background: var(--white); }
.facility-cards strong {
  margin: auto 0 0.75rem;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 4.4rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
  text-transform: uppercase;
}

.fees { display: grid; gap: 3rem; }
.fees__heading { max-width: 900px; }
.table-wrap { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1px; background: var(--ink); border: 1px solid var(--ink); }
.table-wrap table { width: 100%; border-collapse: collapse; background: var(--white); }
.table-wrap caption {
  padding: 1.25rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}
.table-wrap th,
.table-wrap td { padding: 1rem 1.2rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.table-wrap th { color: var(--stone); font-size: 0.62rem; letter-spacing: 0.06em; text-transform: uppercase; }
.table-wrap td { font-size: 0.9rem; font-weight: 700; }
.page-note {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.3rem clamp(1rem, 3vw, 3rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--stone);
  font-size: 0.78rem;
  line-height: 1.55;
}

.legal-copy { max-width: 1120px; }
.legal-copy h2 { margin: 5rem 0 2rem; font-size: clamp(2.8rem, 5vw, 5.4rem); }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy h3 { margin: 2.2rem 0 0.6rem; font-size: 1rem; letter-spacing: 0.02em; text-transform: uppercase; }
.legal-copy p { margin: 0; color: var(--stone); line-height: 1.75; }
.legal-copy a { color: var(--ink); border-bottom: 1px solid currentColor; }

.page-contact {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 8vw, 9rem);
  align-items: end;
  padding: clamp(5rem, 9vw, 9rem) max(1rem, calc((100vw - var(--max)) / 2 + 3rem));
  background: #d9d3c7;
}
.page-contact h2 { font-size: clamp(3.5rem, 5.8vw, 7rem); }
.page-contact > div { min-width: 0; }
.page-contact > div:last-child > p { max-width: 620px; color: var(--stone); line-height: 1.65; }

.sponsors {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding: clamp(5rem, 9vw, 9rem) max(1rem, calc((100vw - var(--max)) / 2 + 3rem));
  border-top: 1px solid var(--line);
  background: var(--white);
}

.sponsors__heading h2 { font-size: clamp(3.2rem, 5.5vw, 6.4rem); }
.sponsors__heading > p:last-child { max-width: 440px; margin-top: 1.8rem; color: var(--stone); line-height: 1.6; }
.sponsors__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1px;
  align-self: center;
  background: var(--line);
  border: 1px solid var(--line);
}

.sponsors__grid figure {
  min-height: 190px;
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  gap: 0.8rem;
  margin: 0;
  padding: 1.4rem;
  background: var(--white);
}

.sponsors__grid img {
  width: 100%;
  height: 105px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: saturate(0.9);
}

.sponsors__grid figcaption {
  color: var(--stone);
  font-size: 0.57rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.sponsors--compact { background: var(--paper); }
.sponsors--compact .sponsors__heading h2 { font-size: clamp(2.8rem, 4.5vw, 5.4rem); }
.not-found { min-height: 100svh; display: grid; place-content: center; justify-items: start; gap: 1rem; padding: 2rem; }
.not-found img { mix-blend-mode: multiply; }
.not-found h1 { max-width: 850px; }
.not-found p { color: var(--stone); }

@media (max-width: 1100px) {
  .page-hero { grid-template-columns: 1fr; }
  .page-hero__visual { min-height: 540px; }
  .page-block--split { grid-template-columns: 1fr; }
  .detail-grid--four { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .sponsors { grid-template-columns: 1fr; }
  .sponsors__heading > p:last-child { max-width: 620px; }
}

@media (max-width: 760px) {
  .page-hero { min-height: auto; padding-top: 1rem; }
  .page-hero__content { padding-block: 2rem 1rem; }
  .page-hero h1 { font-size: clamp(2.9rem, 12.8vw, 4.8rem); }
  .page-hero__visual { min-height: 420px; }
  .page-hero__badge { right: 0.8rem; bottom: 0.8rem; }
  .number-grid,
  .detail-grid,
  .detail-grid--four,
  .facility-cards { grid-template-columns: 1fr; }
  .number-grid li,
  .detail-grid article,
  .facility-cards article { min-height: 230px; }
  .table-wrap { grid-template-columns: 1fr; overflow-x: auto; }
  .table-wrap table { min-width: 520px; }
  .page-contact { grid-template-columns: 1fr; }
  .page-contact .button { width: 100%; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact-card { min-height: 210px; }
  .sponsors__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .sponsors__grid figure { min-height: 160px; padding: 1rem; }
  .sponsors__grid img { height: 85px; }
}
