:root {
  --ink: #102b46;
  --ink-deep: #081a2b;
  --ink-soft: #33516a;
  --paper: #f6f8f7;
  --paper-warm: #f0f4ef;
  --line: #d8e1e6;
  --muted: #688095;
  --white: #ffffff;
  --yellow: #ffd65a;
  --blue: #9edaf4;
  --green: #b9dc83;
  --coral: #f6a07e;
  --lilac: #c6b9f4;
  --orange: #f6bf76;
  --shadow: 0 22px 60px rgba(16, 43, 70, 0.11);
  --radius: 1.2rem;
  --display: "Arial Black", "Segoe UI", Arial, sans-serif;
  --body: "Aptos", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

button,
a,
input,
select,
dialog {
  -webkit-tap-highlight-color: transparent;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.container {
  width: min(1180px, calc(100% - 3rem));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: -4rem;
  left: 1rem;
  z-index: 200;
  padding: 0.65rem 0.9rem;
  background: var(--yellow);
  color: var(--ink-deep);
  font-weight: 800;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.section {
  padding: 7.25rem 0;
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--ink-soft);
}

.eyebrow-light {
  color: var(--yellow);
}

.eyebrow-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0.3rem rgba(255, 214, 90, 0.16);
}

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

h1,
h2,
h3 {
  margin-bottom: 0;
  font-family: var(--display);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h2 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

h2 span {
  color: var(--muted);
}

.light-heading h2 span {
  color: var(--blue);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(16, 43, 70, 0.97);
  color: var(--white);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.1rem;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 3.2rem;
  overflow: hidden;
  background: transparent;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  font-size: 0.82rem;
  letter-spacing: -0.01em;
}

.brand-copy strong {
  font-weight: 750;
}

.brand-copy span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  font-size: 0.86rem;
  font-weight: 650;
}

.primary-nav > a {
  position: relative;
  padding: 0.25rem 0;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.25rem;
  left: 0;
  height: 2px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.primary-nav > a:not(.nav-cta):hover {
  color: var(--white);
}

.primary-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.85rem !important;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 99px;
  color: var(--white) !important;
}

.nav-cta:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink) !important;
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.65rem;
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 0.27rem 0;
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 7.6rem 0 9.2rem;
  background: var(--ink);
  color: var(--white);
}

.hero::before,
.hero::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: -22rem;
  right: -13rem;
  width: 55rem;
  height: 55rem;
  border: 1px solid rgba(158, 218, 244, 0.15);
}

.hero::after {
  right: 23%;
  bottom: -28rem;
  width: 50rem;
  height: 50rem;
  border: 1px solid rgba(255, 214, 90, 0.11);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(400px, 1.08fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(4rem, 7.2vw, 7rem);
}

.hero h1 em {
  color: var(--yellow);
  font-style: normal;
}

.hero-lead {
  max-width: 31rem;
  margin: 1.75rem 0 2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.4vw, 1.24rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3rem;
  padding: 0.78rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 99px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.button-primary {
  background: var(--yellow);
  color: var(--ink);
}

.button-primary:hover {
  background: #ffe483;
}

.button-quiet {
  color: var(--white);
}

.button-quiet:hover {
  color: var(--yellow);
}

.button-secondary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.button-secondary:hover {
  background: var(--ink-soft);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.button-outline:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.65rem;
  margin-top: 4rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.hero-meta strong {
  display: block;
  margin-bottom: 0.1rem;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: -0.08em;
}

.hero-visual {
  position: relative;
  padding: 1.3rem 1.3rem 0 0;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 31rem;
  border-radius: 0.8rem;
  background: #243f55;
  box-shadow: 1.8rem 1.8rem 0 rgba(255, 214, 90, 0.92);
  transform: rotate(1.5deg);
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(8, 26, 43, 0.85) 100%);
  content: "";
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 31rem;
  object-fit: cover;
  object-position: center 45%;
}

.image-caption {
  position: absolute;
  z-index: 1;
  right: 2rem;
  bottom: 1.9rem;
  left: 2rem;
  display: grid;
  gap: 0.45rem;
}

.caption-kicker,
.event-season,
.card-kicker,
.season-label {
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.image-caption strong {
  max-width: 10ch;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.caption-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
}

.hero-stamp {
  position: absolute;
  right: -1.2rem;
  bottom: -1.3rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 7.4rem;
  height: 7.4rem;
  padding: 0.8rem;
  border-radius: 50%;
  outline: 1px dashed var(--ink);
  outline-offset: -0.35rem;
  background: var(--yellow);
  color: var(--ink);
  transform: rotate(-13deg);
}

.hero-stamp span {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: -0.1em;
}

.hero-stamp small {
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero-swoop {
  position: absolute;
  right: -5%;
  bottom: -8.6rem;
  left: -5%;
  height: 13rem;
  border-radius: 50% 50% 0 0 / 38% 38% 0 0;
  background: var(--paper);
}

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 9vw, 10rem);
  align-items: end;
}

.intro-heading h2 {
  max-width: 11ch;
}

.intro-copy {
  max-width: 37rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.intro-copy p {
  margin-bottom: 1.1rem;
}

.intro-copy .lead-copy {
  color: var(--ink);
  font-size: 1.24rem;
  line-height: 1.5;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.8rem;
  border-bottom: 2px solid var(--yellow);
  color: var(--ink);
  font-weight: 800;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(0.25rem);
}

.season-band {
  display: grid;
  grid-template-columns: 0.95fr 1.2fr 0.85fr;
  align-items: stretch;
  gap: 0;
  min-height: 22rem;
  margin-top: 6rem;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blue);
}

.season-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.3rem;
}

.season-copy h3 {
  margin: 0.75rem 0 1rem;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
}

.season-copy p {
  max-width: 24rem;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.season-image {
  position: relative;
  min-height: 22rem;
  margin: 0;
  overflow: hidden;
}

.season-image img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  object-position: center;
}

.season-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(8, 26, 43, 0.72));
  content: "";
}

.season-image figcaption {
  position: absolute;
  z-index: 1;
  right: 1.3rem;
  bottom: 1.1rem;
  left: 1.3rem;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
}

.season-notes {
  display: grid;
  align-content: center;
  gap: 1.25rem;
  padding: 2rem;
  background: var(--yellow);
}

.season-notes > div {
  display: grid;
  grid-template-columns: 2.1rem 1fr;
  align-items: baseline;
  column-gap: 0.55rem;
}

.season-number {
  grid-row: span 2;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 800;
}

.season-notes strong,
.season-notes span:last-child {
  display: block;
}

.season-notes strong {
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: -0.04em;
}

.season-notes span:last-child {
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.section-topline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3.3rem;
}

.section-aside {
  max-width: 24rem;
  margin-bottom: 0.3rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.section-dark .section-aside {
  color: rgba(255, 255, 255, 0.64);
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
}

.event-card {
  position: relative;
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  gap: 1rem;
  min-height: 15.6rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.2s ease;
}

.event-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.event-card-featured {
  background: var(--yellow);
  color: var(--ink);
}

.event-card-featured:hover {
  background: #ffe482;
}

.event-card-number {
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 800;
}

.event-card-featured .event-card-number,
.event-card-featured .event-season {
  color: var(--ink-soft);
}

.event-card-content {
  max-width: 24rem;
}

.event-card h3 {
  margin: 0.55rem 0 0.95rem;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.event-card p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  line-height: 1.5;
}

.event-card-featured p {
  color: var(--ink-soft);
}

.event-detail {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.event-card-featured .event-detail {
  color: var(--ink-soft);
}

.event-arrow {
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--yellow);
}

.event-card-featured .event-arrow {
  border-color: var(--ink);
  color: var(--ink);
}

.event-highlight {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.75rem;
  margin-top: 2rem;
  padding: 1.45rem 1.6rem;
  border: 1px solid rgba(158, 218, 244, 0.35);
  border-radius: var(--radius);
  background: rgba(158, 218, 244, 0.1);
}

.highlight-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.highlight-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--blue);
}

.highlight-date strong {
  font-family: var(--display);
  font-size: 2.8rem;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.highlight-date span {
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.highlight-copy h3 {
  margin: 0.35rem 0 0.25rem;
  font-size: 1.45rem;
  letter-spacing: -0.045em;
}

.highlight-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}

.news {
  background: var(--paper);
}

.facebook {
  overflow: hidden;
}

.facebook-topline {
  align-items: end;
}

.facebook-intro {
  display: grid;
  justify-items: start;
  gap: 1.2rem;
  max-width: 25rem;
  margin-bottom: 0.3rem;
}

.facebook-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.facebook-feed-shell {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1.5rem 4rem rgba(8, 26, 43, 0.2);
}

.facebook-feed-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--ink-deep);
  color: var(--white);
}

.facebook-feed-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.86rem;
  font-weight: 800;
}

.facebook-icon {
  display: grid;
  place-items: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 0.4rem;
  background: #1877f2;
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
}

.facebook-feed-source {
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.facebook-embed {
  display: flex;
  justify-content: center;
  min-height: 720px;
  overflow-x: auto;
  background: var(--white);
}

.facebook-embed iframe {
  display: block;
  width: min(100%, 500px);
  min-width: 340px;
  height: 720px;
  flex: 0 0 500px;
  background: var(--white);
}

.facebook-fallback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.facebook-fallback p {
  margin: 0;
}

.facebook-fallback a {
  flex: 0 0 auto;
  color: var(--ink);
  font-weight: 800;
}

.facebook-fallback a span {
  display: inline-block;
  margin-left: 0.35rem;
}

.news-tools {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.25rem;
}

.search-field,
.select-field {
  display: flex;
  align-items: center;
  min-height: 3rem;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--white);
  color: var(--ink-soft);
}

.search-field {
  width: min(18rem, 40vw);
  gap: 0.65rem;
  padding: 0 1rem;
}

.search-field > span {
  font-size: 1.5rem;
  line-height: 1;
}

.search-field input,
.select-field select {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 650;
}

.search-field input {
  width: 100%;
}

.search-field input::placeholder {
  color: var(--muted);
}

.select-field {
  padding: 0 0.8rem 0 1rem;
}

.select-field select {
  padding-right: 0.2rem;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.9rem;
}

.filter-button {
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 750;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.news-result-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.news-result-line > span:first-child {
  color: var(--ink);
}

.result-rule {
  width: 3rem;
  height: 1px;
  background: var(--line);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.news-card {
  display: flex;
  min-height: 18.7rem;
  flex-direction: column;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 2px 0 rgba(16, 43, 70, 0.02);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.news-card-image {
  height: 10.5rem;
  overflow: hidden;
  margin: -1.45rem -1.45rem 1.35rem;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--ink);
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.news-card.is-featured .news-card-image {
  height: 14rem;
}

.news-card:hover .news-card-image img {
  transform: scale(1.035);
}

.news-card:hover {
  border-color: var(--ink);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.news-card.is-featured {
  grid-column: span 2;
  min-height: 21rem;
  background: var(--yellow);
}

.news-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.4rem;
}

.news-category {
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-card.is-featured .news-category {
  color: var(--ink-soft);
}

.news-date {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.news-card h3 {
  max-width: 18ch;
  margin-bottom: 0.8rem;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.03;
}

.news-card.is-featured h3 {
  max-width: 22ch;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}

.news-card p {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.news-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

.news-read {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
}

.news-read span {
  transition: transform 0.2s ease;
}

.news-card:hover .news-read span {
  transform: translate(0.2rem, -0.2rem);
}

.news-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2.4rem;
}

.empty-state {
  padding: 2rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.archive-panel {
  margin-top: 3.5rem;
  border-top: 1px solid var(--line);
}

.archive-panel summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-weight: 800;
}

.archive-panel summary::-webkit-details-marker {
  display: none;
}

.archive-summary-note {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.archive-summary-note span {
  display: inline-block;
  margin-left: 0.35rem;
  color: var(--ink);
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.archive-panel[open] .archive-summary-note span {
  transform: rotate(45deg);
}

.archive-list {
  display: grid;
  gap: 0.8rem;
  padding: 0.5rem 0 1.4rem;
}

.archive-intro {
  max-width: 58rem;
  margin: 1.2rem 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

.archive-tools {
  display: grid;
  grid-template-columns: minmax(14rem, 1fr) 10rem 13rem;
  gap: 0.7rem;
  margin: 1.2rem 0 0.7rem;
}

.archive-tools .search-field,
.archive-tools .select-field {
  min-width: 0;
}

.archive-status {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.archive-entry {
  display: grid;
  grid-template-columns: 11rem minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.archive-entry-image {
  display: grid;
  min-height: 8rem;
  place-items: center;
  overflow: hidden;
  border-radius: calc(var(--radius) * 0.65);
  background: var(--ink);
}

.archive-entry-image img {
  width: 100%;
  height: 100%;
  min-height: 8rem;
  object-fit: cover;
}

.archive-entry-placeholder {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 800;
}

.archive-entry-copy {
  min-width: 0;
}

.archive-entry-copy h3 {
  max-width: 32ch;
  margin: 0.55rem 0 0.45rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.archive-entry-copy p {
  max-width: 65ch;
  margin: 0 0 0.7rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.archive-entry-open {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
}

.archive-entry-open span {
  display: inline-block;
  margin-left: 0.35rem;
  transition: transform 0.2s ease;
}

.archive-entry-open:hover span,
.archive-entry-open:focus-visible span {
  transform: translate(0.15rem, -0.15rem);
}

.archive-year {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}

.archive-year > strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: -0.06em;
}

.archive-months {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.65rem;
}

.archive-months span {
  color: var(--muted);
  font-size: 0.78rem;
}

.sports {
  overflow: hidden;
}

.sport-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.sport-card {
  position: relative;
  display: flex;
  min-height: 12rem;
  flex-direction: column;
  padding: 1.4rem;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sport-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px) rotate(-0.4deg);
}

.sport-icon {
  align-self: flex-end;
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.9rem;
}

.sport-card strong {
  margin-top: auto;
  font-family: var(--display);
  font-size: 1.65rem;
  letter-spacing: -0.06em;
  line-height: 1;
}

.sport-card > span:not(.sport-icon):not(.sport-number) {
  max-width: 14rem;
  margin-top: 0.55rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.3;
}

.sport-number {
  position: absolute;
  top: 1.45rem;
  left: 1.5rem;
  color: rgba(16, 43, 70, 0.48);
  font-size: 0.7rem;
  font-weight: 850;
}

.sport-card-blue { background: var(--blue); }
.sport-card-yellow { background: var(--yellow); }
.sport-card-green { background: var(--green); }
.sport-card-coral { background: var(--coral); }
.sport-card-navy { background: #95b4cf; }
.sport-card-lilac { background: var(--lilac); }
.sport-card-orange { background: var(--orange); }
.sport-card-slate { background: #c9d5d8; }

.sports-links-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.sport-links {
  overflow: hidden;
}

.sport-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.sport-link-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 1.5rem;
  border-top: 0.35rem solid var(--yellow);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 1.25rem 3rem rgba(8, 26, 43, 0.16);
}

.sport-link-card-blue { border-top-color: var(--blue); }
.sport-link-card-yellow { border-top-color: var(--yellow); }
.sport-link-card-green { border-top-color: var(--green); }
.sport-link-card-coral { border-top-color: var(--coral); }
.sport-link-card-navy { border-top-color: #95b4cf; }
.sport-link-card-lilac { border-top-color: var(--lilac); }
.sport-link-card-orange { border-top-color: var(--orange); }

.sport-link-card-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sport-link-card h3 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.65rem, 2.2vw, 2.2rem);
}

.sport-link-card > p {
  min-height: 4.8rem;
  margin-bottom: 1.15rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

.sport-resource-list {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.sport-resource {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.sport-resource:hover {
  border-color: var(--ink);
  background: var(--paper-warm);
  transform: translateX(3px);
}

.sport-feed {
  margin-top: auto;
  border-top: 1px solid var(--line);
}

.sport-feed + .sport-feed {
  margin-top: 0.65rem;
}

.sport-feed summary,
.results-event > summary,
.result-class > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  list-style: none;
}

.sport-feed summary {
  padding: 0.9rem 0 0.15rem;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
}

.sport-feed summary::-webkit-details-marker,
.results-event > summary::-webkit-details-marker,
.result-class > summary::-webkit-details-marker {
  display: none;
}

.sport-feed summary span,
.results-event-action,
.result-toggle {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease;
}

.sport-feed[open] summary span,
.results-event[open] .results-event-action span,
.result-class[open] .result-toggle {
  color: var(--ink);
  transform: rotate(45deg);
}

.sport-feed-panel {
  margin-top: 0.75rem;
  overflow: hidden;
  border-radius: 0.8rem;
  background: var(--paper);
}

.sport-feed-panel iframe {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
  background: var(--white);
}

.sport-feed-fallback {
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0.75rem 0.85rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft) !important;
  font-size: 0.76rem !important;
}

.sport-feed-fallback a {
  color: var(--ink);
  font-weight: 800;
}

.honkaholkka-results {
  background: var(--paper);
}

.honkaholkka-results-intro {
  display: grid;
  justify-items: start;
  gap: 1.15rem;
  max-width: 25rem;
}

.honkaholkka-results-intro .section-aside {
  margin-bottom: 0;
}

.results-tools {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.2rem;
}

.results-tools .search-field {
  flex: 1 1 auto;
}

.results-tools .select-field {
  flex: 0 0 auto;
}

.results-status {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.results-list {
  display: grid;
  gap: 0.8rem;
}

.results-event {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 0.8rem 2.5rem rgba(16, 43, 70, 0.06);
}

.results-event > summary {
  padding: 1.25rem 1.35rem;
}

.results-event > summary:hover,
.result-class > summary:hover {
  background: var(--paper-warm);
}

.results-event-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.results-event-year {
  color: var(--ink);
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: -0.08em;
  line-height: 1;
}

.results-event-heading strong,
.results-event-heading small {
  display: block;
}

.results-event-heading strong {
  font-size: 1.1rem;
}

.results-event-heading small {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.results-event-action {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 850;
  white-space: nowrap;
}

.results-event-body {
  padding: 0 1.35rem 1.35rem;
}

.results-event-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.results-event-links a {
  color: var(--ink);
  font-weight: 800;
}

.result-class-list {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.result-class {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
}

.result-class > summary {
  padding: 0.85rem 0.95rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.result-class-name {
  min-width: 4rem;
  color: var(--ink);
  font-weight: 850;
}

.result-table-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--line);
}

.result-table-wrap table {
  width: 100%;
  min-width: 35rem;
  border-collapse: collapse;
  font-size: 0.78rem;
}

.result-table-wrap th,
.result-table-wrap td {
  padding: 0.58rem 0.75rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.result-table-wrap thead th {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-table-wrap tbody tr:last-child th,
.result-table-wrap tbody tr:last-child td {
  border-bottom: 0;
}

.result-table-wrap tbody th {
  color: var(--ink);
  font-weight: 800;
}

.results-empty {
  margin: 1.5rem 0 0;
  color: var(--muted);
}

.results-legacy {
  margin-top: 2rem;
}

.results-legacy h3 {
  margin-bottom: 0.8rem;
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.3;
}

.results-legacy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.results-legacy-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.results-legacy-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.results-legacy-year {
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: -0.08em;
}

.results-legacy-card strong,
.results-legacy-card small {
  display: block;
}

.results-legacy-card strong {
  font-size: 0.82rem;
}

.results-legacy-card small {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.3;
}

.membership {
  background: var(--white);
}

.membership-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(3rem, 9vw, 9rem);
}

.membership-copy h2 {
  margin-bottom: 1.35rem;
}

.membership-copy > p:not(.eyebrow) {
  max-width: 32rem;
  margin-bottom: 1.7rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.fee-list {
  max-width: 32rem;
  border-top: 1px solid var(--line);
}

.fee-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.68rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.fee-list strong {
  color: var(--ink);
}

.membership-card {
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: 1rem 1rem 0 var(--yellow);
}

.membership-card h3 {
  margin: 1rem 0 0.9rem;
  color: var(--blue);
  font-size: 2.5rem;
}

.membership-card > p:not(.iban):not(.small-note) {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.iban {
  margin-bottom: 1.2rem;
  color: var(--yellow);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: clamp(1rem, 2.2vw, 1.42rem);
  font-weight: 750;
  letter-spacing: 0.02em;
}

.card-rule {
  height: 1px;
  margin: 1.5rem 0;
  background: rgba(255, 255, 255, 0.2);
}

.small-note {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.73rem;
  line-height: 1.45;
}

.contact {
  padding-bottom: 5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 9vw, 9rem);
  margin-top: 4rem;
}

.contact-main {
  max-width: 24rem;
}

.contact-org {
  margin-bottom: 1.3rem;
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 800;
}

address {
  margin-bottom: 1.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
  line-height: 1.7;
}

.contact-links {
  display: grid;
  gap: 0.45rem;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-weight: 700;
}

.contact-links a:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.board-block {
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.board-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2rem;
  margin-top: 1.45rem;
}

.board-columns > div {
  display: grid;
  gap: 0.18rem;
}

.board-columns span,
.board-roster span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-columns strong {
  font-size: 1.04rem;
}

.board-columns small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
}

.board-roster {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.board-roster p {
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  line-height: 1.65;
}

.site-footer {
  padding: 1.5rem 0 1rem;
  background: var(--ink-deep);
  color: var(--white);
}

.footer-inner,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-brand .brand-mark {
  width: 2rem;
  height: 2.4rem;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}

.back-top {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
}

.footer-bottom {
  margin-top: 1.3rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.7rem;
}

.news-dialog {
  width: min(680px, calc(100% - 2rem));
  max-height: min(80vh, 700px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 2rem 6rem rgba(8, 26, 43, 0.35);
}

.news-dialog::backdrop {
  background: rgba(8, 26, 43, 0.72);
  backdrop-filter: blur(4px);
}

.dialog-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.dialog-body {
  padding: 3.2rem;
}

.dialog-date {
  margin: 0.55rem 0 1.2rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.dialog-body h2 {
  max-width: 16ch;
  margin-bottom: 1.6rem;
  font-size: clamp(2.1rem, 5vw, 3.8rem);
}

.dialog-content {
  color: var(--ink-soft);
  font-size: 1rem;
  white-space: pre-line;
}

.dialog-content p,
.dialog-content ul,
.dialog-content ol,
.dialog-content blockquote,
.dialog-content table {
  margin: 0 0 1rem;
}

.dialog-content a {
  color: var(--ink);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 0.14em;
  text-underline-offset: 0.18em;
}

.dialog-content img {
  display: block;
  width: min(100%, 42rem);
  height: auto;
  margin: 1.25rem 0;
  border-radius: 0.65rem;
}

.dialog-content figure {
  margin: 1.25rem 0;
}

.dialog-content figcaption {
  color: var(--muted);
  font-size: 0.78rem;
}

.dialog-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.dialog-content th,
.dialog-content td {
  padding: 0.45rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.dialog-source,
.dialog-downloads {
  margin-top: 1.6rem !important;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
}

.dialog-downloads ul {
  margin-top: 0.55rem;
  padding-left: 1.2rem;
}

.noscript-note {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 99;
  max-width: 20rem;
  padding: 1rem;
  border-radius: 0.8rem;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 1000px) {
  .primary-nav {
    gap: 1rem;
    font-size: 0.8rem;
  }

  .hero-grid {
    gap: 3rem;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 7.2vw, 6.2rem);
  }

  .season-band {
    grid-template-columns: 1fr 1fr;
  }

  .season-notes {
    grid-column: span 2;
    grid-template-columns: repeat(3, 1fr);
  }

  .sport-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (max-width: 780px) {
  .container {
    width: min(100% - 2rem, 620px);
  }

  .section {
    padding: 5rem 0;
  }

  .menu-toggle {
    display: block;
  }

  .archive-tools {
    grid-template-columns: 1fr;
  }

  .archive-entry {
    grid-template-columns: 1fr;
  }

  .archive-entry-image,
  .archive-entry-image img {
    min-height: 11rem;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 1rem;
    left: 1rem;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 1rem;
    background: var(--ink);
    box-shadow: 0 1rem 2rem rgba(8, 26, 43, 0.28);
  }

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

  .primary-nav > a {
    padding: 0.75rem 0.85rem;
    border-radius: 0.6rem;
  }

  .primary-nav > a:not(.nav-cta):hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-cta {
    justify-content: space-between;
    margin-top: 0.25rem;
  }

  .hero {
    padding: 5rem 0 7rem;
  }

  .hero-grid,
  .intro-grid,
  .membership-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero h1 {
    max-width: 8ch;
    font-size: clamp(4.1rem, 16vw, 6.6rem);
  }

  .hero-meta {
    margin-top: 2.8rem;
  }

  .hero-visual {
    max-width: 31rem;
    margin: 0 auto;
  }

  .intro-grid {
    align-items: start;
  }

  .season-band {
    grid-template-columns: 1fr;
  }

  .season-image {
    min-height: 18rem;
  }

  .season-image img {
    min-height: 18rem;
  }

  .season-notes {
    grid-column: auto;
    grid-template-columns: repeat(3, 1fr);
  }

  .section-topline {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.4rem;
  }

  .section-aside {
    max-width: 34rem;
  }

  .event-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .event-card,
  .news-card.is-featured {
    grid-column: auto;
  }

  .event-highlight {
    grid-template-columns: auto 1fr;
  }

  .event-highlight .button {
    grid-column: 2;
    justify-self: start;
  }

  .event-highlight .highlight-actions {
    grid-column: 2;
    justify-content: flex-start;
  }

  .news-topline {
    display: grid;
  }

  .facebook-topline {
    display: grid;
  }

  .news-tools {
    width: 100%;
    margin-bottom: 0;
  }

  .search-field {
    width: 100%;
  }

  .select-field {
    flex: 0 0 auto;
  }

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

  .sport-links-grid {
    grid-template-columns: 1fr;
  }

  .sport-link-card > p {
    min-height: 0;
  }

  .results-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .results-tools .select-field,
  .results-tools .search-field {
    width: 100%;
  }

  .results-event-action {
    display: none;
  }

  .results-event-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .results-legacy-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    margin-top: 3rem;
  }

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

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

@media (max-width: 480px) {
  .container {
    width: min(100% - 1.35rem, 620px);
  }

  .brand-copy strong {
    max-width: 10rem;
    font-size: 0.74rem;
    line-height: 1.1;
  }

  .brand-copy span {
    display: none;
  }

  .hero-image-wrap,
  .hero-image-wrap img {
    min-height: 25rem;
  }

  .hero-stamp {
    right: -0.3rem;
    width: 6.2rem;
    height: 6.2rem;
  }

  .season-copy,
  .season-notes {
    padding: 1.65rem;
  }

  .season-notes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .event-card {
    grid-template-columns: 1.8rem 1fr auto;
    padding: 1.35rem;
  }

  .event-highlight {
    gap: 1rem;
    padding: 1.2rem;
  }

  .highlight-copy h3 {
    font-size: 1.2rem;
  }

  .news-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .facebook-fallback {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.6rem;
  }

  .select-field select {
    width: 100%;
    padding: 0.6rem 0;
  }

  .select-field {
    padding-right: 1rem;
  }

  .sport-card {
    min-height: 11rem;
    padding: 1.1rem;
  }

  .sport-card strong {
    font-size: 1.38rem;
  }

  .sport-link-card {
    padding: 1.2rem;
  }

  .results-event > summary,
  .results-event-body {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .results-event-heading {
    gap: 0.7rem;
  }

  .results-event-year {
    font-size: 1.65rem;
  }

  .news-card-image {
    height: 9.5rem;
  }

  .news-card.is-featured .news-card-image {
    height: 11.5rem;
  }

  .membership-card {
    box-shadow: 0.55rem 0.55rem 0 var(--yellow);
  }

  .board-columns,
  .board-roster {
    grid-template-columns: 1fr;
  }

  .dialog-body {
    padding: 2.25rem 1.4rem 1.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
.article-gallery,.article-video{scroll-behavior:auto}
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.article-text{white-space:pre-wrap}.article-gallery{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(240px,100%),1fr));gap:1rem;margin-top:1.5rem;white-space:normal}.article-gallery figure,.article-video{margin:0}.article-gallery img{display:block;width:100%;height:auto;max-height:70vh;object-fit:contain;border-radius:.6rem}.article-gallery figcaption,.article-video figcaption{font-size:.85rem;color:var(--muted);line-height:1.5;margin-top:.4rem;overflow-wrap:anywhere}.article-video{margin-top:1.5rem;white-space:normal}.article-video video{width:100%;max-height:70vh;background:#111;border-radius:.6rem}.video-processing{padding:1rem;background:#eef3f6;border-radius:.6rem;font-size:.9rem;white-space:normal}
.dialog-downloads{margin:1.5rem 0;padding:1.1rem;border:1px solid #d9e1e3;border-radius:.75rem;background:#f3f6f6}
.dialog-downloads h3{margin:0 0 .8rem;font-size:1.1rem}
.dialog-downloads ul{list-style:none;padding:0;margin:0;display:grid;gap:.6rem}
.dialog-downloads li{margin:0;min-width:0}
.dialog-downloads a{display:flex;align-items:center;gap:.75rem;padding:.8rem;background:#fff;border-radius:.5rem;min-height:3.5rem;text-decoration:none;color:#102b46}
.dialog-downloads a:hover{background:#e8f0f7}.dialog-downloads a:focus-visible{outline:3px solid #e3ab12;outline-offset:3px}
.attachment-format{padding:.35rem;border-radius:.3rem;background:#102b46;color:white;font-size:.7rem;font-weight:800;flex-shrink:0}
.attachment-link-label{flex:1;min-width:0;overflow-wrap:anywhere;font-weight:700}
.attachment-link-label small{display:block;font-size:.75rem;font-weight:400;margin-top:.3rem;color:#536979}
