:root {
  --red: #d62828;
  --red-dark: #a61d12;
  --blue: #314a9b;
  --blue-dark: #1f2f65;
  --gold: #f0cf4b;
  --gold-soft: rgba(240, 207, 75, 0.18);
  --red-soft: rgba(214, 40, 40, 0.12);
  --blue-soft: rgba(49, 74, 155, 0.12);
  --ink: #101522;
  --muted: #5d677d;
  --bg: #f5f7fb;
  --surface: #ffffff;
  --line: rgba(26, 39, 76, 0.12);
  --shadow: 0 22px 45px rgba(14, 24, 49, 0.12);
  --radius: 24px;
  --container: min(1180px, calc(100vw - 2rem));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 14%, rgba(214, 40, 40, 0.26), transparent 0 18%),
    radial-gradient(circle at 88% 12%, rgba(49, 74, 155, 0.24), transparent 0 20%),
    radial-gradient(circle at 78% 60%, rgba(240, 207, 75, 0.24), transparent 0 16%),
    radial-gradient(circle at 18% 82%, rgba(214, 40, 40, 0.14), transparent 0 14%),
    radial-gradient(circle at 50% 32%, rgba(49, 74, 155, 0.10), transparent 0 18%),
    radial-gradient(circle at 12% 22%, rgba(240, 207, 75, 0.18) 0 2px, transparent 3px),
    radial-gradient(circle at 26% 12%, rgba(240, 207, 75, 0.16) 0 2px, transparent 3px),
    radial-gradient(circle at 41% 18%, rgba(240, 207, 75, 0.18) 0 2px, transparent 3px),
    radial-gradient(circle at 57% 10%, rgba(240, 207, 75, 0.14) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 20%, rgba(240, 207, 75, 0.18) 0 2px, transparent 3px),
    radial-gradient(circle at 86% 28%, rgba(240, 207, 75, 0.16) 0 2px, transparent 3px),
    radial-gradient(circle at 9% 58%, rgba(240, 207, 75, 0.14) 0 2px, transparent 3px),
    radial-gradient(circle at 22% 72%, rgba(240, 207, 75, 0.18) 0 2px, transparent 3px),
    radial-gradient(circle at 38% 64%, rgba(240, 207, 75, 0.16) 0 2px, transparent 3px),
    radial-gradient(circle at 66% 74%, rgba(240, 207, 75, 0.18) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 82%, rgba(240, 207, 75, 0.14) 0 2px, transparent 3px),
    repeating-linear-gradient(45deg,
      rgba(255,255,255,0) 0 52px,
      rgba(49, 74, 155, 0.045) 52px 78px,
      rgba(255,255,255,0) 78px 130px),
    repeating-linear-gradient(-45deg,
      rgba(255,255,255,0) 0 52px,
      rgba(214, 40, 40, 0.04) 52px 78px,
      rgba(255,255,255,0) 78px 130px),
    linear-gradient(180deg, rgba(240, 207, 75, 0.10), rgba(240, 207, 75, 0.02)),
    linear-gradient(180deg, #f7e6e2 0%, #f3ecf8 34%, #eaf1ff 68%, #f7fafd 100%);
  background-attachment: fixed;
}
a { color: var(--blue-dark); text-decoration-thickness: 2px; }
img { max-width: 100%; display: block; }
.container { width: var(--container); margin: 0 auto; }
.skip-link {
  position: absolute; left: -9999px; top: 1rem; background: #fff; padding: .75rem 1rem; z-index: 100;
}
.skip-link:focus { left: 1rem; }
.site-header {
  position: sticky; top: 0; z-index: 50; backdrop-filter: blur(16px);
  background: rgba(245, 247, 251, 0.9); border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: flex-start; gap: 1.5rem; justify-content: space-between; padding: .4rem 0 0;
}
.nav-shell {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-left: auto;
}
.brand {
  position: relative;
  z-index: 3;
  display: block;
  margin-bottom: -5.4rem;
}
.brand img { width: 160px; max-width: 22vw; }
.site-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: .35rem;
  justify-content: flex-end;
  align-items: flex-start;
  white-space: nowrap;
}
.site-nav__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: .2rem;
}
.site-nav__link,
.site-subnav__link {
  text-decoration: none; padding: .65rem .8rem; border-radius: 999px; color: var(--ink); font-weight: 600; font-size: .95rem;
}
.site-nav__link:hover, .site-nav__link.is-active { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); color: #fff; }
.site-nav__link.is-highlight {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 10px 22px rgba(166, 29, 18, 0.22);
}
.site-nav__link.is-highlight:hover,
.site-nav__link.is-highlight:focus-visible,
.site-nav__link.is-highlight.is-active {
  background: linear-gradient(135deg, var(--red-dark), #7f120c);
  color: #fff;
}
.submenu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: .55rem .4rem;
  cursor: pointer;
  border-radius: 999px;
  font: inherit;
}
.site-subnav {
  position: absolute;
  top: calc(100% + .45rem);
  left: 0;
  min-width: 15rem;
  display: grid;
  gap: .25rem;
  padding: .55rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(49, 74, 155, 0.12);
  border-radius: 18px;
  box-shadow: 0 22px 48px rgba(14, 24, 49, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(.5rem);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  z-index: 10;
}
.site-subnav__link {
  display: block;
  padding: .7rem .85rem;
  border-radius: 14px;
  color: var(--ink);
}
.site-subnav__link:hover,
.site-subnav__link:focus-visible,
.site-subnav__link.is-active {
  background: rgba(49, 74, 155, 0.08);
  color: var(--blue-dark);
}
.site-nav__item.has-submenu:hover .site-subnav,
.site-nav__item.has-submenu:focus-within .site-subnav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.site-nav { padding-top: .2rem; }
.nav-toggle { display: none; }
.nav-toggle__box {
  display: inline-grid;
  gap: .28rem;
}
.nav-toggle__line {
  display: block;
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform .28s ease, opacity .22s ease, width .28s ease;
}
.site-header.nav-open .nav-toggle__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.site-header.nav-open .nav-toggle__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(.3);
}
.site-header.nav-open .nav-toggle__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.page-intro { padding: 4.5rem 0 2rem; }
.page-intro--compact { padding-bottom: .6rem; }
.page-intro--compact + .content-section { padding-top: 0; }
.legal-page {
  background: transparent;
  padding-bottom: 2rem;
}
.legal-page .page-intro,
.legal-page .content-section {
  background: transparent;
}
.legal-page .page-intro { padding-bottom: 1rem; }
.legal-page .content-section { padding-top: 0; }
.eyebrow {
  margin: 0 0 .5rem; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; color: var(--red-dark); font-weight: 700;
}
h1, h2, h3 { line-height: 1.1; margin: 0 0 1rem; }
h1 { font-size: clamp(1.9rem, 3.9vw, 3.6rem); max-width: none; width: 100%; }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
.lead { max-width: 58rem; font-size: 1.1rem; color: var(--muted); }
.hero {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 2rem; align-items: center; padding-bottom: 2rem;
}
.hero--home { grid-template-columns: 1fr; }
.hero-stack { display: grid; gap: 1.25rem; width: 100%; }
.hero-copy, .hero-media, .content-card, .info-card, .news-card, .board-card {
  background: rgba(255,255,255,.9); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.hero-copy { padding: 2rem; width: 100%; }
.hero-copy h2 { max-width: none; }
.hero-copy__text {
  color: var(--muted);
}
.hero-copy__text p {
  margin: 0 0 .9rem;
}
.hero-copy__text p:last-child {
  margin-bottom: 0;
}
.hero-copy__poster-wrap {
  margin: 1.25rem 0 0;
  text-align: center;
}
.hero-copy__poster {
  display: inline-block;
  width: min(100%, 22rem);
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(14, 20, 37, 0.16);
}
.hero-media { overflow: hidden; padding: 1rem; }
.hero-media img { border-radius: 18px; }
.hero-carousel {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: .9rem;
}
.hero-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.58), rgba(255,255,255,.42)),
    url('../../images/IMG_2300.jpeg') center/cover no-repeat;
  opacity: .66;
  pointer-events: none;
}
.hero-carousel__track { position: relative; min-height: clamp(16rem, 38vw, 28rem); }
.hero-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(100%);
  transition: transform .65s ease, opacity .2s ease;
  pointer-events: none;
}
.hero-carousel__track,
.hero-carousel__dots {
  position: relative;
  z-index: 1;
}
.hero-carousel__slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.hero-carousel__slide.is-leaving-left {
  opacity: 1;
  transform: translateX(-100%);
}
.hero-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: calc(var(--radius) - 10px);
  display: block;
  background: rgba(255,255,255,.35);
}
.hero-carousel__caption {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  display: grid;
  gap: .45rem;
  align-content: end;
  z-index: 2;
  pointer-events: none;
}
.hero-carousel__bar {
  width: fit-content;
  max-width: min(100%, 42rem);
  padding: .7rem 1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(35, 63, 146, 0.94), rgba(24, 45, 112, 0.94));
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 14px 28px rgba(14, 20, 37, 0.2);
  transform: translateX(2rem);
  opacity: 0;
}
.hero-carousel__bar:nth-child(2) {
  background: linear-gradient(135deg, rgba(172, 22, 31, 0.92), rgba(126, 15, 21, 0.92));
}
.hero-carousel__bar:nth-child(3) {
  background: linear-gradient(135deg, rgba(35, 63, 146, 0.94), rgba(24, 45, 112, 0.94));
  color: #fff;
}
.hero-carousel__mail {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: .18em;
  pointer-events: auto;
}
.hero-carousel__mail:hover,
.hero-carousel__mail:focus-visible {
  text-decoration-thickness: 3px;
}
.hero-carousel__slide.is-active .hero-carousel__bar {
  animation: heroBarIn 1.05s ease forwards;
  animation-delay: .5s;
}
.hero-carousel__slide.is-active .hero-carousel__bar:nth-child(2) {
  animation-delay: 1.45s;
}
.hero-carousel__slide.is-active .hero-carousel__bar:nth-child(3) {
  animation-delay: 2.4s;
}
@keyframes heroBarIn {
  from {
    opacity: 0;
    transform: translateX(2rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-carousel__dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  padding-top: .8rem;
}
.hero-carousel__dots span {
  width: .65rem;
  height: .65rem;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.18);
  transition: transform .25s ease, background-color .25s ease;
}
.hero-carousel__dots span.is-active {
  background: linear-gradient(135deg, var(--red), var(--gold));
  transform: scale(1.15);
}
.hero-actions, .toolbar-actions { display: flex; gap: .85rem; flex-wrap: wrap; }
.button {
  display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: .9rem 1.25rem;
  border: 0; cursor: pointer; font-weight: 700; text-decoration: none;
}
.button--primary { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; }
.button--secondary { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff; }
.button--ghost { background: #eef2ff; color: var(--blue-dark); }
.button--danger { background: #3b0d11; color: #fff; }
.ticket-mail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(172, 22, 31, 0.24);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.content-section, .form-section, .calendar-section, .teaser-grid, .board-section, .news-grid { padding: 1.2rem 0 2.2rem; }
.sponsor-gallery-section { padding: 1.2rem 0 2.8rem; }
.sponsor-content-section { padding-top: .3rem; padding-bottom: 1.2rem; }
.sponsor-content-section .content-card { padding-top: 1.1rem; }
.content-card { padding: 1.5rem; }
.richtext p, .richtext li { color: #23304e; line-height: 1.75; }
.richtext img { border-radius: 16px; margin: 1rem auto; }
.teaser-grid, .calendar-section { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.info-card, .board-card, .news-card { padding: 1.5rem; }
.board-grid, .news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.sponsor-gallery {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.1rem;
}
.news-card img { width: 100%; height: 260px; object-fit: cover; border-radius: 18px; margin-bottom: 1rem; }
.news-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  padding: 1.2rem 0 2.2rem;
}
.news-list__item {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}
.news-list__copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem 1rem 1.1rem;
}
.news-list__copy h2 {
  margin-bottom: .45rem;
  font-size: 1.1rem;
  line-height: 1.2;
}
.news-list__title-link {
  color: inherit;
  text-decoration: none;
}
.news-list__excerpt {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55;
}
.news-list__more {
  font-weight: 700;
  color: var(--blue-dark);
  text-decoration: none;
}
.news-list__media {
  display: block;
}
.news-list__media img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.news-list__empty {
  grid-column: 1 / -1;
  text-align: center;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  padding-bottom: 2.2rem;
  flex-wrap: nowrap;
}
.pagination__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.85rem;
  min-height: 2.85rem;
  padding: .5rem;
  border-radius: 999px;
  border: 1px solid rgba(49, 74, 155, 0.18);
  background: rgba(255,255,255,.82);
  color: var(--blue-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.55rem;
  line-height: 1;
}
.pagination__arrow:hover,
.pagination__arrow:focus-visible {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff;
  border-color: transparent;
}
.pagination__arrow.is-disabled {
  opacity: .45;
}
.news-detail {
  padding: 2rem;
}
.news-detail__meta {
  color: var(--muted);
  margin: 0;
}
.news-detail__image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  padding: .85rem;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,255,255,.56)),
    linear-gradient(135deg, rgba(214, 40, 40, 0.08), rgba(49, 74, 155, 0.08));
  border: 1px solid rgba(26, 39, 76, 0.08);
}
.news-detail__image {
  width: 100%;
  max-width: min(100%, 42rem);
  max-height: 32rem;
  object-fit: contain;
  object-position: center;
  border-radius: 22px;
  background: rgba(255,255,255,.42);
  box-shadow: 0 18px 40px rgba(14, 24, 49, 0.12);
}
.news-detail__body {
  max-width: 52rem;
}
.news-detail__back {
  margin: 1.4rem 0 0;
}
.home-news-link {
  color: inherit;
}
.form-hint {
  margin: .75rem 0 0;
  color: var(--muted);
}
.sponsor-tile {
  padding: 1rem; border-radius: 24px; border: 1px solid var(--line);
  background:
    linear-gradient(155deg, rgba(255,255,255,.98), rgba(241,245,253,.95)),
    linear-gradient(135deg, rgba(214,40,40,.08), rgba(49,74,155,.08));
  box-shadow: var(--shadow);
  display: grid; gap: .9rem; align-content: start;
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.sponsor-tile:hover,
.sponsor-tile:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 28px 54px rgba(14, 24, 49, 0.16);
  border-color: rgba(49, 74, 155, 0.25);
}
.sponsor-media {
  min-height: 170px; display: flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 18px; padding: 1rem;
  overflow: hidden;
}
.sponsor-tile img {
  width: 100%;
  max-width: 100%;
  max-height: 130px;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.sponsor-caption {
  display: grid; gap: .3rem; text-align: center; min-height: 56px;
}
.sponsor-caption strong {
  font-size: 1rem; line-height: 1.25; color: var(--ink);
}
.sponsor-caption small {
  font-size: .88rem; line-height: 1.35; color: var(--muted);
}
.sponsor-placeholder {
  width: 100%; height: 110px; border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(214,40,40,.1), rgba(49,74,155,.12)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.55), rgba(255,255,255,.55) 16px, rgba(240,243,249,.8) 16px, rgba(240,243,249,.8) 32px);
  display: flex; align-items: center; justify-content: center; text-align: center; padding: 1rem;
  color: var(--blue-dark);
}
.sponsor-placeholder__text {
  display: grid; gap: .45rem;
}
.sponsor-placeholder__text strong {
  font-size: 1.1rem; line-height: 1.2; letter-spacing: .04em; text-transform: uppercase;
}
.sponsor-placeholder__text small {
  font-size: .92rem; color: var(--muted); line-height: 1.4;
}
.section-head { margin-bottom: 1rem; }
.about-subnav-wrap { padding: .35rem 0 1rem; }
.about-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.about-subnav__link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: .8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(49, 74, 155, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-weight: 600;
  box-shadow: 0 14px 34px rgba(14, 24, 49, 0.08);
}
.about-subnav__link:hover,
.about-subnav__link:focus-visible,
.about-subnav__link.is-active {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff;
}
.about-overview { padding: .2rem 0 2.2rem; }
.about-overview__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.about-overview__card h2 { margin-bottom: .55rem; }
.about-spotlight { position: relative; padding: .9rem; overflow: hidden; }
.about-spotlight img {
  width: 100%;
  max-height: 36rem;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}
.about-watermark {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.about-watermark img {
  display: block;
  width: 100%;
  height: auto;
}
.about-photo-frame {
  position: relative;
}
.about-spotlight--board img {
  max-height: 32rem;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: top center;
}
.about-photo-frame--board {
  width: min(100%, 32rem);
  margin: 0 auto;
}
.about-photo-frame--board img {
  width: 100%;
}
.about-watermark--board {
  top: 1rem;
  left: 1rem;
  width: clamp(4rem, 9vw, 5.5rem);
  opacity: 0.72;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.24));
}
.about-download h2 { margin-bottom: .5rem; }
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.2rem;
}
.trainer-placeholder-section {
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(26,39,76,.12);
}
.trainer-placeholder-grid {
  display: grid;
  grid-template-columns: minmax(0, 20rem);
  justify-content: center;
  gap: 1rem;
  margin-top: .85rem;
}
.trainer-placeholder-grid--two {
  grid-template-columns: repeat(2, minmax(0, 20rem));
}
.trainer-placeholder-card {
  display: grid;
  gap: .8rem;
  padding: 1rem;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255,255,255,.9), rgba(248,250,255,.72));
  border: 1px dashed rgba(26,39,76,.2);
  box-shadow: 0 16px 30px rgba(16,24,40,.08);
}
.trainer-placeholder-card__image {
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top, rgba(255,255,255,.5), transparent 48%),
    linear-gradient(145deg, rgba(214,29,36,.16), rgba(34,63,146,.16));
  border: 1px solid rgba(26,39,76,.12);
  color: #23304e;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.trainer-placeholder-card h3,
.trainer-placeholder-card p {
  margin: 0;
}
.about-carousel .hero-carousel__track { min-height: clamp(18rem, 44vw, 34rem); }
.form-card label, .form-card fieldset { display: grid; gap: .45rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.form-span { grid-column: 1 / -1; }
input, textarea, select {
  width: 100%; border: 1px solid rgba(26,39,76,.18); border-radius: 16px; padding: .95rem 1rem; font: inherit; background: #fff;
}
textarea { resize: vertical; }
input:focus, textarea:focus, select:focus, button:focus, a:focus {
  outline: 3px solid rgba(240, 207, 75, .7); outline-offset: 2px;
}
.form-card label.checkbox,
.radio-group label { display: flex; gap: .75rem; }
.form-card label.checkbox {
  align-items: center;
  grid-template-columns: none;
  margin: 1.1rem 0 1.25rem;
}
.radio-group label {
  align-items: flex-start;
}
.form-card label.checkbox span {
  display: inline;
}
.checkbox input, .radio-group input { width: auto; flex: 0 0 auto; }
.checkbox input { margin-top: 0; }
.radio-group input { margin-top: .25rem; }
.radio-group { border: 1px solid var(--line); border-radius: 16px; padding: 1rem; }
.hidden-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.calendar-list, .admin-grid { display: grid; gap: 1rem; }
.calendar-item { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.calendar-item:last-child { border-bottom: 0; }
.flash-stack { display: grid; gap: .75rem; padding-top: 1rem; }
.flash { border-radius: 18px; padding: 1rem 1.25rem; font-weight: 600; }
.flash--success { background: #e7f8ef; color: #0d6b3c; }
.flash--error { background: #fde8e8; color: #8d1722; }
.site-footer {
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
  padding: 2.4rem 0 2rem;
  background:
    radial-gradient(circle at 18% 0%, rgba(255,255,255,0.08), transparent 0 28%),
    radial-gradient(circle at 88% 12%, rgba(255,224,163,0.12), transparent 0 18%),
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent 34%),
    linear-gradient(135deg, #5d0908 0%, #7f0d09 32%, #9c150f 68%, #6c0d09 100%);
  color: #fff;
  border-top: 1px solid rgba(255, 216, 122, 0.7);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 239, 204, 0.72), transparent);
}
.footer-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) auto;
  gap: 1.25rem 3rem;
  align-items: end;
}
.site-footer a { color: #fff; }
.site-footer h2 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(1.2rem, 1.2vw + 1rem, 1.75rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.site-footer p { margin: 0; line-height: 1.5; color: rgba(255,255,255,.82); }
.footer-kicker {
  margin-bottom: .65rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 220, 148, 0.9);
}
.footer-copy {
  margin-top: .9rem;
  max-width: 48ch;
  font-size: .98rem;
  color: rgba(255, 244, 228, 0.82);
}
.footer-meta {
  display: grid;
  justify-items: end;
  gap: .65rem;
  min-width: 16rem;
}
.footer-note,
.footer-copyright {
  font-size: .84rem;
  color: rgba(255, 240, 218, 0.72);
}
.footer-links-inline {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.15rem;
  flex-wrap: wrap;
}
.footer-links-inline a {
  position: relative;
  text-decoration: none;
  font-weight: 600;
  color: rgba(255, 248, 238, 0.94);
  opacity: 1;
  font-size: .95rem;
  padding: .08rem 0;
}
.footer-links-inline a:hover,
.footer-links-inline a:focus-visible {
  text-decoration: none;
  color: #fff6cb;
}
.footer-links-inline a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.15rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.35);
  transform-origin: left center;
  opacity: 0.45;
  transition: transform .18s ease, opacity .18s ease;
}
.footer-links-inline a:hover::after,
.footer-links-inline a:focus-visible::after {
  transform: scaleX(1);
  opacity: 0.95;
}
.admin-body {
  color: #fff4ec;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 193, 113, 0.18), transparent 0 18%),
    radial-gradient(circle at 86% 16%, rgba(255, 121, 92, 0.16), transparent 0 20%),
    linear-gradient(180deg, #8f110d 0%, #74100a 48%, #5a0b07 100%);
}
.admin-body,
.admin-body p,
.admin-body li,
.admin-body label,
.admin-body th,
.admin-body td {
  color: #fff4ec;
}
.admin-body a {
  color: #ffe082;
}
.admin-body .content-card,
.admin-body .admin-toolbar,
.admin-body .admin-menu__link,
.admin-body .pagination__arrow {
  background:
    linear-gradient(145deg, rgba(124, 12, 8, 0.94), rgba(92, 8, 8, 0.9)),
    linear-gradient(135deg, rgba(255, 209, 61, 0.08), rgba(35, 102, 209, 0.06));
  border-color: rgba(255, 238, 201, 0.18);
  color: #fff4ec;
}
.admin-body .eyebrow {
  color: #ffd670;
}
.admin-body h1,
.admin-body h2,
.admin-body h3,
.admin-body strong {
  color: #fff8f2;
}
.admin-body .admin-section__empty p,
.admin-body .admin-table__meta,
.admin-body .rights-text {
  color: rgba(255, 241, 228, 0.78);
}
.admin-body .button--ghost {
  background: rgba(255, 248, 238, 0.12);
  color: #fff8f2;
  border: 1px solid rgba(255, 238, 201, 0.24);
}
.admin-body input,
.admin-body textarea,
.admin-body select {
  background: rgba(255, 248, 238, 0.96);
  color: #2a150f;
  border-color: rgba(95, 10, 8, 0.22);
}
.admin-body .admin-toolbar,
.admin-body .admin-menu,
.admin-body .admin-section,
.admin-body .form-card {
  background:
    linear-gradient(145deg, rgba(124, 12, 8, 0.94), rgba(92, 8, 8, 0.9)),
    linear-gradient(135deg, rgba(255, 209, 61, 0.08), rgba(35, 102, 209, 0.06)) !important;
  border: 1px solid rgba(255, 238, 201, 0.18) !important;
  box-shadow: 0 22px 44px rgba(37, 4, 4, 0.22) !important;
}
.admin-body .admin-section,
.admin-body .admin-section *:not(.button):not(svg):not(path),
.admin-body .form-card,
.admin-body .form-card *:not(.button):not(input):not(textarea):not(select):not(option):not(svg):not(path) {
  color: #fff4ec !important;
}
.admin-body .admin-table tbody tr {
  background: rgba(255, 248, 238, 0.06);
}
.admin-body .admin-table tbody tr:nth-child(even) {
  background: rgba(255, 248, 238, 0.1);
}
.admin-body .admin-table th {
  color: #ffd670 !important;
}
.admin-body .admin-table td,
.admin-body .admin-table td strong,
.admin-body .admin-table td div,
.admin-body .admin-table td span,
.admin-body .admin-table td a:not(.admin-icon-button):not(.button),
.admin-body .admin-table td p {
  color: #fff4ec !important;
}
.admin-body .admin-table__meta {
  color: rgba(255, 241, 228, 0.78) !important;
}
.admin-body .admin-section .button--secondary {
  color: #5f0a08 !important;
  background: #ffd670;
}
.admin-body .admin-menu__link {
  color: #fff4ec !important;
}
.admin-body .admin-menu__link.is-active {
  color: #fff !important;
}
.admin-body .admin-icon-button {
  background: rgba(255, 248, 238, 0.14) !important;
  color: #ffe082 !important;
  box-shadow: inset 0 0 0 1px rgba(255, 224, 130, 0.18) !important;
}
.admin-body .admin-icon-button--danger {
  color: #ffb4a8 !important;
}
.admin-body .form-card label span,
.admin-body .form-card .form-hint,
.admin-body .form-card .checkbox span {
  color: #fff4ec !important;
}
.admin-body .form-card input,
.admin-body .form-card textarea,
.admin-body .form-card select {
  color: #2a150f !important;
  background: rgba(255, 248, 238, 0.98) !important;
}
.admin-body .form-card input::placeholder,
.admin-body .form-card textarea::placeholder {
  color: rgba(74, 39, 29, 0.58) !important;
}
.admin-body .form-card h1,
.admin-body .form-card h2,
.admin-body .form-card h3,
.admin-body .admin-toolbar h1,
.admin-body .admin-toolbar h2,
.admin-body .admin-toolbar h3 {
  color: #fff8f2 !important;
}
.admin-shell { width: min(1100px, calc(100vw - 2rem)); margin: 0 auto; padding: 2rem 0 3rem; }
.admin-panel { display: grid; gap: 1.25rem; }
.auth-panel { grid-template-columns: 1fr 1fr; align-items: center; min-height: 100vh; }
.admin-brand { padding: 2rem; }
.admin-brand img { width: 320px; max-width: 100%; }
.admin-toolbar {
  display: flex; justify-content: space-between; align-items: end; gap: 1rem; background: rgba(255,255,255,.78);
  padding: 1.5rem; border-radius: var(--radius); border: 1px solid var(--line);
}
.admin-profile-link {
  color: var(--blue-dark);
  font-weight: 700;
  text-decoration: none;
}
.admin-profile-link:hover,
.admin-profile-link:focus-visible {
  text-decoration: underline;
}
.admin-dashboard {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.25rem;
}
.admin-section-host {
  display: grid;
}
.admin-menu {
  display: grid;
  gap: 1.1rem;
  align-content: start;
}
.admin-menu__group {
  display: grid;
  gap: .6rem;
}
.admin-menu__group .eyebrow {
  margin-bottom: 0;
}
.admin-menu__links {
  display: grid;
  gap: .45rem;
}
.admin-menu__link {
  display: block;
  padding: .9rem 1rem;
  border-radius: 18px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  border: 1px solid transparent;
  background: rgba(244, 246, 251, 0.92);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.admin-menu__link:hover,
.admin-menu__link:focus-visible {
  transform: translateX(3px);
  background: rgba(49, 74, 155, 0.08);
}
.admin-menu__link.is-active {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff;
  box-shadow: 0 16px 34px rgba(31, 47, 101, 0.18);
}
.admin-section {
  display: grid;
  gap: 1.25rem;
  align-content: start;
}
.admin-section__head,
.admin-section__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.admin-section__head h2,
.admin-section__empty h2 {
  margin-bottom: 0;
}
.admin-section__empty p {
  margin: .55rem 0 0;
  color: var(--muted);
}
.admin-image-field {
  display: grid;
  gap: .65rem;
}
.admin-image-preview {
  width: min(100%, 18rem);
  padding: .55rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(244, 246, 251, 0.9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
}
.admin-image-preview img {
  width: 100%;
  max-height: 13rem;
  object-fit: cover;
  border-radius: 16px;
}
.admin-table-wrap {
  overflow-x: auto;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table th,
.admin-table td {
  padding: .95rem 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.admin-table th {
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.admin-table tbody tr:last-child td {
  border-bottom: 0;
}
.admin-table__meta {
  margin-top: .3rem;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.45;
}
.admin-table__actions {
  width: 1%;
  white-space: nowrap;
}
.admin-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .6rem;
}
.admin-actions form {
  margin: 0;
}
.admin-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border: 0;
  border-radius: 999px;
  background: #eef2ff;
  color: var(--blue-dark);
  cursor: pointer;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(49, 74, 155, 0.08);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.admin-icon-button:hover,
.admin-icon-button:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff;
  box-shadow: 0 14px 28px rgba(31, 47, 101, 0.18);
}
.admin-icon-button svg {
  width: 1.1rem;
  height: 1.1rem;
}
.admin-icon-button--danger {
  background: rgba(166, 29, 18, 0.1);
  color: var(--red-dark);
}
.admin-icon-button--danger:hover,
.admin-icon-button--danger:focus-visible {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
}
.admin-role-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.admin-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: .35rem .8rem;
  border-radius: 999px;
  background: rgba(49, 74, 155, 0.1);
  color: var(--blue-dark);
  font-size: .9rem;
  font-weight: 700;
}
.admin-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.admin-list-item {
  display: flex; justify-content: space-between; gap: 1rem; align-items: start; padding: 1rem 0; border-bottom: 1px solid var(--line);
}
.admin-list-item:last-child { border-bottom: 0; }
.permission-grid { display: grid; gap: .75rem; margin: 1rem 0; }
.rights-text { color: var(--muted); text-align: right; }

@media (max-width: 920px) {
  .hero, .teaser-grid, .calendar-section, .footer-grid, .admin-grid, .auth-panel, .board-grid, .news-grid, .form-grid, .admin-dashboard {
    grid-template-columns: 1fr;
  }
  .trainer-placeholder-grid,
  .trainer-placeholder-grid--two {
    grid-template-columns: 1fr;
  }
  .admin-section__head,
  .admin-section__foot {
    align-items: stretch;
    flex-direction: column;
  }
  .admin-section__head .button,
  .admin-section__foot .button {
    width: 100%;
  }
  .admin-table th,
  .admin-table td {
    padding: .8rem 0;
  }
  .news-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .news-list__media img {
    height: 140px;
  }
  .pagination {
    justify-content: center;
  }
  .sponsor-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav-toggle {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3.4rem;
    min-height: 3.4rem;
    border: 1px solid rgba(49, 74, 155, 0.14);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(246, 248, 252, .92));
    color: var(--blue-dark);
    padding: .85rem;
    box-shadow: 0 16px 35px rgba(16, 21, 34, 0.12), inset 0 1px 0 rgba(255,255,255,.75);
    backdrop-filter: blur(12px);
    font: inherit;
    cursor: pointer;
    transition: transform .24s ease, box-shadow .24s ease, background .24s ease, color .24s ease;
  }
  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 20px 38px rgba(16, 21, 34, 0.16), inset 0 1px 0 rgba(255,255,255,.8);
  }
  .site-header.nav-open .nav-toggle {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    color: #fff;
    box-shadow: 0 18px 38px rgba(31, 47, 101, 0.28);
  }
  .brand { margin-bottom: -2.6rem; }
  .brand img { width: 148px; max-width: 50vw; }
  .site-nav {
    position: absolute;
    top: calc(100% - .2rem);
    right: 0;
    display: grid;
    gap: .35rem;
    width: max-content;
    max-width: min(24rem, calc(100vw - 2rem));
    padding: .85rem;
    background:
      linear-gradient(180deg, rgba(255,255,255,.98), rgba(248, 250, 255, .95)),
      radial-gradient(circle at top right, rgba(240, 207, 75, 0.18), transparent 0 38%);
    border-radius: 20px;
    box-shadow: 0 28px 60px rgba(14, 24, 49, 0.18);
    border: 1px solid rgba(49, 74, 155, 0.12);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px) scale(.98);
    transform-origin: top center;
    transition: opacity .28s ease, transform .32s cubic-bezier(.2, .8, .2, 1), visibility .28s ease;
  }
  .site-nav__item {
    display: grid;
    gap: .2rem;
  }
  .submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: .65rem;
    right: .5rem;
    z-index: 2;
    min-width: 2.1rem;
    min-height: 2.1rem;
    color: inherit;
  }
  .site-nav__link {
    display: block;
    border-radius: 16px;
    padding: .9rem 1rem;
    white-space: nowrap;
    transition: transform .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease;
  }
  .site-nav__link:hover,
  .site-nav__link:focus-visible {
    transform: translateX(4px);
    box-shadow: 0 10px 24px rgba(31, 47, 101, 0.12);
  }
  .site-subnav {
    position: static;
    min-width: 0;
    padding: 0 0 0 .8rem;
    margin-top: -.1rem;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    display: none;
  }
  .site-subnav__link {
    padding: .8rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: inherit;
  }
  .site-nav__item.has-submenu:hover .site-subnav,
  .site-nav__item.has-submenu:focus-within .site-subnav {
    display: none;
  }
  .site-nav__item.is-submenu-open .site-subnav {
    display: grid;
  }
  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .site-header__inner { position: relative; }
  .footer-links-inline { justify-content: flex-start; }
  .about-overview__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .news-list {
    grid-template-columns: 1fr;
  }
}

/* Roter Karnevalslook nach der neuen Vereinsvorlage */
:root {
  --red: #e31f08;
  --red-dark: #8f1208;
  --red-deep: #5f0a08;
  --blue: #2366d1;
  --blue-dark: #081d42;
  --gold: #ffd13d;
  --ink: #fff8ee;
  --muted: rgba(255, 248, 238, 0.78);
  --bg: #e31f08;
  --surface: rgba(113, 10, 8, 0.78);
  --line: rgba(255, 238, 201, 0.24);
  --shadow: 0 18px 45px rgba(73, 6, 4, 0.28);
  --radius: 8px;
}

body:not(.admin-body) {
  position: relative;
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 74, 0, 0.34), transparent 22rem),
    linear-gradient(135deg, #f12a08 0%, #db1907 42%, #bd1208 100%);
  overflow-x: hidden;
}

body:not(.admin-body)::before,
body:not(.admin-body)::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

body:not(.admin-body)::before {
  opacity: 0.72;
  background:
    linear-gradient(115deg, transparent 0 59%, rgba(255, 207, 49, 0.88) 59% 60.2%, transparent 60.2% 100%),
    linear-gradient(64deg, transparent 0 68%, rgba(55, 122, 224, 0.68) 68% 69.4%, transparent 69.4% 100%),
    conic-gradient(from 24deg at 12% 82%, transparent 0 16%, rgba(255, 207, 49, 0.7) 16% 24%, transparent 24% 100%),
    conic-gradient(from 210deg at 90% 18%, transparent 0 18%, rgba(162, 221, 229, 0.55) 18% 28%, transparent 28% 100%),
    repeating-linear-gradient(90deg, transparent 0 76px, rgba(255,255,255,0.14) 76px 79px, transparent 79px 154px),
    repeating-linear-gradient(25deg, transparent 0 86px, rgba(255, 207, 49, 0.18) 86px 90px, transparent 90px 172px);
  mix-blend-mode: screen;
}

body:not(.admin-body)::after {
  inset: auto 0 0 0;
  height: min(34vw, 24rem);
  opacity: 0.88;
  background:
    linear-gradient(180deg, transparent 0 10%, rgba(227, 31, 8, 0.04) 10% 45%, rgba(105, 7, 7, 0.34) 100%),
    conic-gradient(from 18deg at 10% 100%, #143f8e 0 10%, transparent 10% 100%),
    conic-gradient(from 330deg at 21% 100%, #fbd348 0 9%, transparent 9% 100%),
    conic-gradient(from 22deg at 34% 100%, #f5d8df 0 11%, transparent 11% 100%),
    conic-gradient(from 342deg at 47% 100%, #2588dd 0 10%, transparent 10% 100%),
    conic-gradient(from 12deg at 62% 100%, #ffd03a 0 12%, transparent 12% 100%),
    conic-gradient(from 334deg at 78% 100%, #cfeaf0 0 13%, transparent 13% 100%),
    conic-gradient(from 16deg at 92% 100%, #213f96 0 10%, transparent 10% 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

body:not(.admin-body) a {
  color: #fff1a8;
}

body:not(.admin-body) .site-header {
  background: rgba(142, 15, 8, 0.76);
  border-bottom: 1px solid rgba(255, 238, 201, 0.22);
  box-shadow: 0 16px 36px rgba(73, 6, 4, 0.22);
}

body:not(.admin-body) .brand {
  margin-bottom: -4.7rem;
}

body:not(.admin-body) .brand img {
  filter: drop-shadow(0 12px 18px rgba(62, 4, 4, 0.35));
}

body:not(.admin-body) .site-nav__link,
body:not(.admin-body) .site-subnav__link,
body:not(.admin-body) .submenu-toggle {
  color: rgba(255, 248, 238, 0.92);
  border-radius: 8px;
}

body:not(.admin-body) .site-nav__link:hover,
body:not(.admin-body) .site-nav__link:focus-visible,
body:not(.admin-body) .site-nav__link.is-active {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

body:not(.admin-body) .site-nav__link.is-highlight {
  background: #ffd13d;
  color: #5f0a08;
  box-shadow: 0 12px 28px rgba(95, 10, 8, 0.28);
}

body:not(.admin-body) .site-nav__link.is-highlight:hover,
body:not(.admin-body) .site-nav__link.is-highlight:focus-visible,
body:not(.admin-body) .site-nav__link.is-highlight.is-active {
  background: #fff1a8;
  color: #5f0a08;
}
body:not(.admin-body) .site-subnav {
  background: rgba(123, 10, 9, 0.98);
  border-color: rgba(255, 238, 201, 0.18);
}
body:not(.admin-body) .site-subnav__link:hover,
body:not(.admin-body) .site-subnav__link:focus-visible,
body:not(.admin-body) .site-subnav__link.is-active {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

body:not(.admin-body) .page-intro {
  padding-top: 5.1rem;
}

body:not(.admin-body) .eyebrow {
  color: #ffd13d;
}

body:not(.admin-body) h1,
body:not(.admin-body) h2,
body:not(.admin-body) h3,
body:not(.admin-body) .lead {
  color: #fff8ee;
  text-shadow: 0 2px 20px rgba(73, 6, 4, 0.22);
}

body:not(.admin-body) h1 {
  font-weight: 400;
  letter-spacing: 0;
}

body:not(.admin-body) .lead {
  color: rgba(255, 248, 238, 0.82);
}

body:not(.admin-body) .hero-copy,
body:not(.admin-body) .hero-media,
body:not(.admin-body) .content-card,
body:not(.admin-body) .info-card,
body:not(.admin-body) .news-card,
body:not(.admin-body) .board-card,
body:not(.admin-body) .sponsor-tile,
body:not(.admin-body) .admin-toolbar,
body:not(.admin-body) .admin-menu__link,
body:not(.admin-body) .pagination__arrow {
  background:
    linear-gradient(145deg, rgba(144, 13, 8, 0.86), rgba(92, 8, 8, 0.76)),
    linear-gradient(135deg, rgba(255, 209, 61, 0.09), rgba(35, 102, 209, 0.08));
  border-color: rgba(255, 238, 201, 0.24);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: #fff8ee;
  backdrop-filter: blur(10px);
}

body:not(.admin-body) .hero-copy__text,
body:not(.admin-body) .richtext p,
body:not(.admin-body) .richtext li,
body:not(.admin-body) .news-list__excerpt,
body:not(.admin-body) .news-detail__meta,
body:not(.admin-body) .form-hint,
body:not(.admin-body) .sponsor-caption small,
body:not(.admin-body) .section-head p,
body:not(.admin-body) .admin-table__meta,
body:not(.admin-body) .rights-text,
body:not(.admin-body) .content-card p,
body:not(.admin-body) .info-card p,
body:not(.admin-body) .board-card p,
body:not(.admin-body) .news-card p {
  color: rgba(255, 248, 238, 0.82);
}
body:not(.admin-body) .about-subnav__link {
  background: rgba(255, 248, 238, 0.08);
  border-color: rgba(255, 238, 201, 0.2);
  color: rgba(255, 248, 238, 0.92);
}
body:not(.admin-body) .about-subnav__link:hover,
body:not(.admin-body) .about-subnav__link:focus-visible,
body:not(.admin-body) .about-subnav__link.is-active {
  background: rgba(255, 255, 255, 0.15);
  color: #314a9b;
}

body:not(.admin-body) .hero-carousel {
  background:
    linear-gradient(145deg, rgba(255, 248, 238, 0.18), rgba(92, 8, 8, 0.54)),
    rgba(113, 10, 8, 0.68);
  border-color: rgba(255, 238, 201, 0.24);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

body:not(.admin-body) .hero-carousel::before {
  background:
    linear-gradient(135deg, rgba(227, 31, 8, 0.34), rgba(118, 10, 8, 0.28)),
    url('../../images/IMG_2300.jpeg') center/cover no-repeat;
  opacity: 0.42;
}

body:not(.admin-body) .hero-carousel__slide img,
body:not(.admin-body) .hero-media img,
body:not(.admin-body) .hero-copy__poster,
body:not(.admin-body) .news-card img,
body:not(.admin-body) .news-list__media img,
body:not(.admin-body) .news-detail__image,
body:not(.admin-body) .richtext img {
  border-radius: 8px;
}

body:not(.admin-body) .hero-carousel__slide img {
  background: rgba(255, 248, 238, 0.16);
}

body:not(.admin-body) .hero-carousel__bar {
  background: rgba(94, 8, 8, 0.88);
  border: 1px solid rgba(255, 238, 201, 0.24);
  border-radius: 8px;
}

body:not(.admin-body) .hero-carousel__bar:nth-child(2) {
  background: #ffd13d;
  color: #5f0a08;
}

body:not(.admin-body) .hero-carousel__bar:nth-child(3) {
  background: rgba(8, 29, 66, 0.84);
}

body:not(.admin-body) .hero-carousel__dots span {
  border-radius: 2px;
  background: rgba(255, 248, 238, 0.34);
}

body:not(.admin-body) .hero-carousel__dots span.is-active {
  background: #ffd13d;
}

body:not(.admin-body) .button {
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(73, 6, 4, 0.24);
}

body:not(.admin-body) .button--primary,
body:not(.admin-body) .button--secondary {
  background: #ffd13d;
  color: #5f0a08;
}

body:not(.admin-body) .button--ghost {
  background: rgba(255, 248, 238, 0.15);
  color: #fff8ee;
  border: 1px solid rgba(255, 238, 201, 0.24);
}

body:not(.admin-body) .button--danger {
  background: #081d42;
  color: #fff8ee;
}

body:not(.admin-body) .sponsor-media,
body:not(.admin-body) input,
body:not(.admin-body) textarea,
body:not(.admin-body) select {
  background: rgba(255, 248, 238, 0.95);
  color: #101522;
  border-color: rgba(95, 10, 8, 0.18);
  border-radius: 8px;
}

body:not(.admin-body) .sponsor-caption strong,
body:not(.admin-body) .news-list__title-link,
body:not(.admin-body) .home-news-link {
  color: #fff8ee;
}

body:not(.admin-body) .sponsor-placeholder {
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 209, 61, 0.24), rgba(35, 102, 209, 0.18)),
    rgba(255, 248, 238, 0.12);
  color: #fff8ee;
}

body:not(.admin-body) .calendar-item,
body:not(.admin-body) .admin-list-item,
body:not(.admin-body) .admin-table th,
body:not(.admin-body) .admin-table td {
  border-color: rgba(255, 238, 201, 0.2);
}

body:not(.admin-body) .flash {
  border-radius: 8px;
}

body:not(.admin-body) .flash--success {
  background: rgba(220, 255, 230, 0.94);
}

body:not(.admin-body) .flash--error {
  background: rgba(255, 234, 234, 0.94);
}

body:not(.admin-body) .site-footer {
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 214, 128, 0.16), transparent 0 24%),
    linear-gradient(180deg, rgba(67, 6, 5, 0.88), rgba(46, 5, 4, 0.96)),
    linear-gradient(90deg, #711008, #4e0907);
  border-top: 1px solid rgba(255, 214, 128, 0.62);
}

body:not(.admin-body) .site-footer p {
  color: rgba(255, 243, 228, 0.74);
}

body:not(.admin-body) .footer-kicker {
  color: rgba(255, 214, 128, 0.88);
}

body:not(.admin-body) .footer-links-inline a {
  color: rgba(255, 247, 238, 0.92);
}

body:not(.admin-body) .footer-links-inline a:hover,
body:not(.admin-body) .footer-links-inline a:focus-visible {
  color: #ffd77f;
}

@media (max-width: 920px) {
  body:not(.admin-body) .nav-toggle {
    border-radius: 8px;
    background: rgba(255, 248, 238, 0.95);
    color: #5f0a08;
    border-color: rgba(255, 238, 201, 0.24);
  }

  body:not(.admin-body) .site-header.nav-open .nav-toggle {
    background: #ffd13d;
    color: #5f0a08;
  }

  body:not(.admin-body) .site-nav {
    background:
      linear-gradient(145deg, rgba(144, 13, 8, 0.98), rgba(92, 8, 8, 0.96));
    border-color: rgba(255, 238, 201, 0.24);
    border-radius: 8px;
  }

  body:not(.admin-body)::after {
    height: 15rem;
    opacity: 0.58;
  }

  body:not(.admin-body) .page-intro {
    padding-top: 3.8rem;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-meta {
    justify-items: start;
    min-width: 0;
  }

  .footer-links-inline {
    justify-content: flex-start;
    gap: .85rem 1rem;
  }
}

body:not(.admin-body).theme--calm {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 185, 122, 0.18), transparent 0 22%),
    radial-gradient(circle at 82% 18%, rgba(255, 221, 153, 0.12), transparent 0 18%),
    linear-gradient(180deg, rgba(255, 116, 79, 0.16), transparent 20rem),
    linear-gradient(135deg, #c61f0d 0%, #b6190c 48%, #9f140a 100%);
}

body:not(.admin-body).theme--calm::before {
  opacity: 0.34;
  background:
    linear-gradient(102deg, transparent 0 67%, rgba(255, 227, 168, 0.38) 67% 68%, transparent 68% 100%),
    repeating-linear-gradient(90deg, transparent 0 122px, rgba(255,255,255,0.08) 122px 124px, transparent 124px 244px),
    repeating-linear-gradient(28deg, transparent 0 132px, rgba(255, 222, 163, 0.08) 132px 136px, transparent 136px 268px);
  mix-blend-mode: screen;
}

body:not(.admin-body).theme--calm::after {
  height: min(16vw, 9rem);
  opacity: 0.32;
  background:
    linear-gradient(180deg, transparent 0 18%, rgba(123, 11, 7, 0.24) 100%),
    linear-gradient(90deg, rgba(255, 212, 62, 0.16), rgba(38, 88, 166, 0.12));
}

body:not(.admin-body).theme--calm .hero-copy,
body:not(.admin-body).theme--calm .hero-media,
body:not(.admin-body).theme--calm .content-card,
body:not(.admin-body).theme--calm .info-card,
body:not(.admin-body).theme--calm .news-card,
body:not(.admin-body).theme--calm .board-card,
body:not(.admin-body).theme--calm .sponsor-tile,
body:not(.admin-body).theme--calm .pagination__arrow {
  background:
    linear-gradient(145deg, rgba(123, 11, 7, 0.82), rgba(101, 10, 8, 0.76)),
    linear-gradient(135deg, rgba(255, 214, 101, 0.06), rgba(35, 102, 209, 0.05));
}

body:not(.admin-body).theme--calm .hero-carousel {
  background:
    linear-gradient(145deg, rgba(255, 248, 238, 0.12), rgba(92, 8, 8, 0.42)),
    rgba(113, 10, 8, 0.58);
}

body:not(.admin-body).theme--calm .hero-carousel::before {
  opacity: 0.28;
}

body:not(.admin-body).theme--calm .site-header {
  background: rgba(132, 16, 10, 0.84);
}

body:not(.admin-body).theme--calm .button--primary,
body:not(.admin-body).theme--calm .button--secondary {
  background: #ffe08a;
}

body:not(.admin-body).theme--light {
  color: #1d2433;
  background:
    linear-gradient(180deg, rgba(255, 235, 231, 0.92), rgba(255, 255, 255, 0.98) 22rem),
    linear-gradient(180deg, #fff8f4 0%, #ffffff 100%);
}

body:not(.admin-body).theme--light::before {
  opacity: 0.52;
  background:
    linear-gradient(104deg, transparent 0 71%, rgba(233, 54, 24, 0.12) 71% 72%, transparent 72% 100%),
    linear-gradient(64deg, transparent 0 76%, rgba(43, 104, 201, 0.1) 76% 77%, transparent 77% 100%),
    radial-gradient(circle at 14% 20%, rgba(255, 208, 61, 0.16) 0 10%, transparent 10% 100%),
    radial-gradient(circle at 84% 28%, rgba(43, 104, 201, 0.1) 0 8%, transparent 8% 100%),
    repeating-linear-gradient(90deg, transparent 0 132px, rgba(218, 34, 19, 0.05) 132px 134px, transparent 134px 268px);
  mix-blend-mode: multiply;
}

body:not(.admin-body).theme--light::after {
  height: min(12vw, 6rem);
  opacity: 0.18;
  background:
    linear-gradient(90deg, rgba(43, 104, 201, 0.18), rgba(255, 208, 61, 0.16)),
    linear-gradient(180deg, transparent 0 22%, rgba(29, 36, 51, 0.06) 100%);
}

body:not(.admin-body).theme--light a {
  color: #a11408;
}

body:not(.admin-body).theme--light .site-header {
  background: rgba(167, 20, 8, 0.95);
  border-bottom-color: rgba(255, 228, 196, 0.28);
}

body:not(.admin-body).theme--light .site-nav a,
body:not(.admin-body).theme--light .site-nav a:hover,
body:not(.admin-body).theme--light .site-nav a:focus-visible,
body:not(.admin-body).theme--light .site-nav a.is-active {
  color: #fff9f1;
  text-shadow: 0 1px 8px rgba(96, 10, 7, 0.28);
}

body:not(.admin-body).theme--light .site-nav a:hover,
body:not(.admin-body).theme--light .site-nav a:focus-visible,
body:not(.admin-body).theme--light .site-nav a.is-active {
  background: rgba(255,255,255,0.22);
}

body:not(.admin-body).theme--light .site-nav a.is-highlight {
  background: #ffd13d;
  color: #6f0e07;
}

body:not(.admin-body).theme--light h1,
body:not(.admin-body).theme--light h2,
body:not(.admin-body).theme--light h3 {
  color: #7d140a;
  text-shadow: none;
}

body:not(.admin-body).theme--light .lead,
body:not(.admin-body).theme--light .eyebrow {
  color: #7d140a;
}

body:not(.admin-body).theme--light .hero-copy,
body:not(.admin-body).theme--light .hero-media,
body:not(.admin-body).theme--light .content-card,
body:not(.admin-body).theme--light .info-card,
body:not(.admin-body).theme--light .news-card,
body:not(.admin-body).theme--light .board-card,
body:not(.admin-body).theme--light .sponsor-tile,
body:not(.admin-body).theme--light .pagination__arrow {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,247,242,0.98)),
    linear-gradient(135deg, rgba(233, 54, 24, 0.04), rgba(43, 104, 201, 0.04));
  color: #1d2433;
  border-color: rgba(183, 39, 24, 0.14);
  box-shadow: 0 18px 40px rgba(133, 33, 20, 0.08);
}

body:not(.admin-body).theme--light .hero-copy__text,
body:not(.admin-body).theme--light .richtext p,
body:not(.admin-body).theme--light .richtext li,
body:not(.admin-body).theme--light .news-list__excerpt,
body:not(.admin-body).theme--light .news-detail__meta,
body:not(.admin-body).theme--light .form-hint,
body:not(.admin-body).theme--light .sponsor-caption small,
body:not(.admin-body).theme--light .section-head p,
body:not(.admin-body).theme--light .content-card p,
body:not(.admin-body).theme--light .info-card p,
body:not(.admin-body).theme--light .board-card p,
body:not(.admin-body).theme--light .news-card p,
body:not(.admin-body).theme--light .lead {
  color: #455065;
}

body:not(.admin-body).theme--light .hero-carousel {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,247,242,0.94)),
    rgba(255,255,255,0.9);
  border-color: rgba(183, 39, 24, 0.14);
}

body:not(.admin-body).theme--light .hero-carousel::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(255, 228, 219, 0.24)),
    url('../../images/IMG_2300.jpeg') center/cover no-repeat;
  opacity: 0.34;
}

body:not(.admin-body).theme--light .hero-carousel__bar {
  background: rgba(161, 20, 8, 0.92);
  color: #fff9f1;
  border-color: rgba(255,255,255,0.18);
}

body:not(.admin-body).theme--light .hero-carousel__bar:nth-child(2) {
  background: #ffd13d;
  color: #6f0e07;
}

body:not(.admin-body).theme--light .hero-carousel__bar:nth-child(3) {
  background: rgba(22, 54, 112, 0.92);
}

body:not(.admin-body).theme--light .hero-carousel__dots span {
  background: rgba(125, 20, 10, 0.18);
}

body:not(.admin-body).theme--light .hero-carousel__dots span.is-active {
  background: #d83b17;
}

body:not(.admin-body).theme--light .button--primary {
  background: #a11408;
  color: #fff9f1;
}

body:not(.admin-body).theme--light .button--secondary {
  background: #ffd13d;
  color: #6f0e07;
}

body:not(.admin-body).theme--light .button--ghost {
  background: rgba(161, 20, 8, 0.06);
  color: #7d140a;
  border: 1px solid rgba(161, 20, 8, 0.12);
}

body:not(.admin-body).theme--light .button--danger {
  background: #163670;
  color: #fff9f1;
}

body:not(.admin-body).theme--light .sponsor-media,
body:not(.admin-body).theme--light input,
body:not(.admin-body).theme--light textarea,
body:not(.admin-body).theme--light select {
  background: #ffffff;
  color: #1d2433;
  border-color: rgba(128, 144, 170, 0.25);
}

body:not(.admin-body).theme--light .sponsor-caption strong,
body:not(.admin-body).theme--light .news-list__title-link,
body:not(.admin-body).theme--light .home-news-link {
  color: #7d140a;
}

body:not(.admin-body).theme--light .calendar-item,
body:not(.admin-body).theme--light .admin-list-item,
body:not(.admin-body).theme--light .admin-table th,
body:not(.admin-body).theme--light .admin-table td {
  border-color: rgba(161, 20, 8, 0.12);
}

body:not(.admin-body).theme--light .site-footer {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(252,245,239,0.98));
  border-top: 1px solid rgba(161, 20, 8, 0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}

body:not(.admin-body).theme--light .site-footer,
body:not(.admin-body).theme--light .site-footer a,
body:not(.admin-body).theme--light .site-footer h2 {
  color: #7d140a;
}

body:not(.admin-body).theme--light .site-footer p {
  color: #4c5568;
}

body:not(.admin-body).theme--light .footer-kicker {
  color: #d83b17;
}

body:not(.admin-body).theme--light .footer-links-inline a {
  background: rgba(161, 20, 8, 0.05);
  border-color: rgba(161, 20, 8, 0.12);
  color: #7d140a;
}

body:not(.admin-body).theme--light .footer-links-inline a:hover,
body:not(.admin-body).theme--light .footer-links-inline a:focus-visible {
  background: rgba(161, 20, 8, 0.1);
  color: #a11408;
}

body:not(.admin-body).theme--dark {
  color: #f4f0ea;
  background:
    radial-gradient(circle at 12% 18%, rgba(205, 35, 16, 0.2), transparent 0 20%),
    radial-gradient(circle at 86% 22%, rgba(35, 102, 209, 0.14), transparent 0 18%),
    linear-gradient(180deg, rgba(38, 8, 6, 0.2), transparent 22rem),
    linear-gradient(180deg, #0d0f13 0%, #11151d 55%, #0b0d12 100%);
}

body:not(.admin-body).theme--dark::before {
  opacity: 0.46;
  background:
    linear-gradient(112deg, transparent 0 66%, rgba(214, 56, 28, 0.24) 66% 67.2%, transparent 67.2% 100%),
    linear-gradient(67deg, transparent 0 73%, rgba(43, 104, 201, 0.18) 73% 74.2%, transparent 74.2% 100%),
    radial-gradient(circle at 18% 76%, rgba(255, 208, 61, 0.18) 0 1.6%, transparent 1.7% 100%),
    radial-gradient(circle at 72% 64%, rgba(255,255,255,0.08) 0 1.1%, transparent 1.2% 100%),
    repeating-linear-gradient(90deg, transparent 0 138px, rgba(255,255,255,0.04) 138px 140px, transparent 140px 280px);
}

body:not(.admin-body).theme--dark::after {
  height: min(20vw, 11rem);
  opacity: 0.38;
  background:
    linear-gradient(180deg, transparent 0 16%, rgba(0,0,0,0.42) 100%),
    linear-gradient(90deg, rgba(255, 208, 61, 0.18), rgba(43, 104, 201, 0.16));
}

body:not(.admin-body).theme--dark a {
  color: #ffd666;
}

body:not(.admin-body).theme--dark .site-header {
  background: rgba(154, 18, 8, 0.94);
  border-bottom-color: rgba(255, 228, 196, 0.16);
}

body:not(.admin-body).theme--dark h1,
body:not(.admin-body).theme--dark h2,
body:not(.admin-body).theme--dark h3,
body:not(.admin-body).theme--dark .lead {
  color: #fff5ec;
}

body:not(.admin-body).theme--dark .eyebrow {
  color: #ffd13d;
}

body:not(.admin-body).theme--dark .lead {
  color: rgba(244, 240, 234, 0.76);
}

body:not(.admin-body).theme--dark .hero-copy,
body:not(.admin-body).theme--dark .hero-media,
body:not(.admin-body).theme--dark .content-card,
body:not(.admin-body).theme--dark .info-card,
body:not(.admin-body).theme--dark .news-card,
body:not(.admin-body).theme--dark .board-card,
body:not(.admin-body).theme--dark .sponsor-tile,
body:not(.admin-body).theme--dark .pagination__arrow {
  background:
    linear-gradient(180deg, rgba(18, 23, 30, 0.94), rgba(13, 16, 22, 0.96)),
    linear-gradient(135deg, rgba(214, 56, 28, 0.06), rgba(43, 104, 201, 0.06));
  border-color: rgba(255, 219, 157, 0.12);
  color: #f4f0ea;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

body:not(.admin-body).theme--dark .hero-copy__text,
body:not(.admin-body).theme--dark .richtext p,
body:not(.admin-body).theme--dark .richtext li,
body:not(.admin-body).theme--dark .news-list__excerpt,
body:not(.admin-body).theme--dark .news-detail__meta,
body:not(.admin-body).theme--dark .form-hint,
body:not(.admin-body).theme--dark .sponsor-caption small,
body:not(.admin-body).theme--dark .section-head p,
body:not(.admin-body).theme--dark .content-card p,
body:not(.admin-body).theme--dark .info-card p,
body:not(.admin-body).theme--dark .board-card p,
body:not(.admin-body).theme--dark .news-card p {
  color: rgba(244, 240, 234, 0.8);
}

body:not(.admin-body).theme--dark .hero-carousel {
  background:
    linear-gradient(180deg, rgba(24, 31, 41, 0.94), rgba(14, 18, 24, 0.94));
  border-color: rgba(255, 219, 157, 0.12);
}

body:not(.admin-body).theme--dark .hero-carousel::before {
  background:
    linear-gradient(135deg, rgba(17, 19, 23, 0.5), rgba(120, 18, 8, 0.18)),
    url('../../images/IMG_2300.jpeg') center/cover no-repeat;
  opacity: 0.24;
}

body:not(.admin-body).theme--dark .hero-carousel__bar {
  background: rgba(154, 18, 8, 0.92);
  color: #fff9f1;
}

body:not(.admin-body).theme--dark .hero-carousel__bar:nth-child(2) {
  background: #ffd13d;
  color: #651007;
}

body:not(.admin-body).theme--dark .hero-carousel__bar:nth-child(3) {
  background: rgba(26, 60, 126, 0.92);
}

body:not(.admin-body).theme--dark .hero-carousel__dots span {
  background: rgba(255,255,255,0.18);
}

body:not(.admin-body).theme--dark .hero-carousel__dots span.is-active {
  background: #ffd13d;
}

body:not(.admin-body).theme--dark .button--primary {
  background: #c52610;
  color: #fffaf3;
}

body:not(.admin-body).theme--dark .button--secondary {
  background: #163f96;
  color: #fffaf3;
}

body:not(.admin-body).theme--dark .button--ghost {
  background: rgba(255,255,255,0.08);
  color: #f4f0ea;
  border: 1px solid rgba(255,255,255,0.12);
}

body:not(.admin-body).theme--dark .button--danger {
  background: #ffd13d;
  color: #651007;
}

body:not(.admin-body).theme--dark .sponsor-media,
body:not(.admin-body).theme--dark input,
body:not(.admin-body).theme--dark textarea,
body:not(.admin-body).theme--dark select {
  background: rgba(248, 245, 239, 0.96);
  color: #1d2433;
  border-color: rgba(255,255,255,0.16);
}

body:not(.admin-body).theme--dark .sponsor-caption strong,
body:not(.admin-body).theme--dark .news-list__title-link,
body:not(.admin-body).theme--dark .home-news-link {
  color: #fff7ee;
}

body:not(.admin-body).theme--dark .site-footer {
  background:
    linear-gradient(180deg, rgba(10, 12, 16, 0.98), rgba(6, 8, 12, 1));
  border-top: 1px solid rgba(255, 208, 61, 0.22);
}

body:not(.admin-body).theme--dark .site-footer p {
  color: rgba(244, 240, 234, 0.72);
}

body:not(.admin-body).theme--dark .footer-kicker {
  color: rgba(255, 208, 61, 0.88);
}

body:not(.admin-body).theme--dark .footer-links-inline a {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  color: #f4f0ea;
}

body:not(.admin-body).theme--dark .footer-links-inline a:hover,
body:not(.admin-body).theme--dark .footer-links-inline a:focus-visible {
  color: #ffd666;
  background: rgba(255,255,255,0.1);
}

body:not(.admin-body).theme--stage-red {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 214, 76, 0.22), transparent 0 18%),
    radial-gradient(circle at 82% 14%, rgba(255, 145, 88, 0.16), transparent 0 16%),
    linear-gradient(180deg, rgba(255, 104, 65, 0.22), transparent 24rem),
    linear-gradient(135deg, #d71e0d 0%, #c0150a 44%, #8f0e08 100%);
}

body:not(.admin-body).theme--stage-red::before {
  opacity: 0.7;
  background:
    radial-gradient(circle at 8% 22%, rgba(255,255,255,0.22) 0 1.1%, transparent 1.2% 100%),
    radial-gradient(circle at 24% 12%, rgba(255, 214, 76, 0.26) 0 1.4%, transparent 1.5% 100%),
    radial-gradient(circle at 42% 16%, rgba(90, 121, 217, 0.22) 0 1.2%, transparent 1.3% 100%),
    radial-gradient(circle at 67% 10%, rgba(255,255,255,0.16) 0 1%, transparent 1.1% 100%),
    radial-gradient(circle at 86% 24%, rgba(255, 214, 76, 0.24) 0 1.4%, transparent 1.5% 100%),
    linear-gradient(120deg, transparent 0 60%, rgba(255, 223, 160, 0.3) 60% 61.2%, transparent 61.2% 100%),
    linear-gradient(58deg, transparent 0 73%, rgba(100, 132, 232, 0.22) 73% 74.4%, transparent 74.4% 100%),
    repeating-linear-gradient(90deg, transparent 0 132px, rgba(255,255,255,0.08) 132px 134px, transparent 134px 268px);
}

body:not(.admin-body).theme--stage-red::after {
  height: min(26vw, 16rem);
  opacity: 0.58;
  background:
    linear-gradient(180deg, transparent 0 14%, rgba(116, 8, 8, 0.28) 100%),
    conic-gradient(from 24deg at 10% 100%, rgba(255, 214, 76, 0.92) 0 10%, transparent 10% 100%),
    conic-gradient(from 336deg at 28% 100%, rgba(66, 91, 184, 0.78) 0 11%, transparent 11% 100%),
    conic-gradient(from 18deg at 46% 100%, rgba(255, 235, 223, 0.7) 0 9%, transparent 9% 100%),
    conic-gradient(from 340deg at 66% 100%, rgba(255, 156, 68, 0.84) 0 10%, transparent 10% 100%),
    conic-gradient(from 16deg at 86% 100%, rgba(255, 214, 76, 0.82) 0 12%, transparent 12% 100%);
}

body:not(.admin-body).theme--stage-red .hero-copy,
body:not(.admin-body).theme--stage-red .hero-media,
body:not(.admin-body).theme--stage-red .content-card,
body:not(.admin-body).theme--stage-red .info-card,
body:not(.admin-body).theme--stage-red .news-card,
body:not(.admin-body).theme--stage-red .board-card,
body:not(.admin-body).theme--stage-red .sponsor-tile,
body:not(.admin-body).theme--stage-red .pagination__arrow {
  background:
    linear-gradient(145deg, rgba(137, 12, 8, 0.88), rgba(106, 10, 8, 0.8)),
    radial-gradient(circle at top right, rgba(255, 214, 76, 0.08), transparent 0 32%);
}

body:not(.admin-body).theme--stage-red .hero-carousel::before {
  background:
    linear-gradient(135deg, rgba(255, 115, 69, 0.22), rgba(127, 9, 8, 0.32)),
    url('../../images/IMG_2300.jpeg') center/cover no-repeat;
  opacity: 0.38;
}

body:not(.admin-body).theme--stage-red .button--primary {
  background: #ffd13d;
  color: #651007;
}

body:not(.admin-body).theme--stage-red .button--secondary {
  background: #274ca8;
  color: #fff7ef;
}

body:not(.admin-body).theme--stage-red .site-footer {
  background:
    linear-gradient(180deg, rgba(90, 8, 7, 0.72), rgba(61, 6, 5, 0.94)),
    linear-gradient(90deg, #8f0e08, #c0150a);
  border-top: 1px solid rgba(255, 214, 76, 0.7);
}

body:not(.admin-body).theme--parade-light {
  color: #2a3142;
  background:
    radial-gradient(circle at 16% 16%, rgba(255, 214, 76, 0.16), transparent 0 15%),
    radial-gradient(circle at 88% 18%, rgba(73, 111, 209, 0.12), transparent 0 14%),
    linear-gradient(180deg, rgba(255, 236, 230, 0.82), rgba(255, 255, 255, 0.98) 18rem),
    linear-gradient(180deg, #fffaf6 0%, #ffffff 100%);
}

body:not(.admin-body).theme--parade-light::before {
  opacity: 0.52;
  background:
    conic-gradient(from 180deg at 8% 0%, rgba(219, 48, 22, 0.18) 0 8%, transparent 8% 100%),
    conic-gradient(from 180deg at 18% 0%, rgba(255, 214, 76, 0.22) 0 8%, transparent 8% 100%),
    conic-gradient(from 180deg at 28% 0%, rgba(73, 111, 209, 0.18) 0 8%, transparent 8% 100%),
    conic-gradient(from 180deg at 38% 0%, rgba(219, 48, 22, 0.14) 0 8%, transparent 8% 100%),
    repeating-linear-gradient(90deg, transparent 0 136px, rgba(181, 34, 18, 0.05) 136px 138px, transparent 138px 276px),
    linear-gradient(108deg, transparent 0 73%, rgba(255, 214, 76, 0.1) 73% 74%, transparent 74% 100%);
  mix-blend-mode: multiply;
}

body:not(.admin-body).theme--parade-light::after {
  height: min(10vw, 5rem);
  opacity: 0.18;
  background:
    linear-gradient(90deg, rgba(219, 48, 22, 0.18), rgba(73, 111, 209, 0.12), rgba(255, 214, 76, 0.18));
}

body:not(.admin-body).theme--parade-light a {
  color: #9e170b;
}

body:not(.admin-body).theme--parade-light .site-header {
  background: rgba(167, 20, 8, 0.96);
}

body:not(.admin-body).theme--parade-light .site-nav a,
body:not(.admin-body).theme--parade-light .site-nav a:hover,
body:not(.admin-body).theme--parade-light .site-nav a:focus-visible,
body:not(.admin-body).theme--parade-light .site-nav a.is-active {
  color: #fff9f1;
  text-shadow: 0 1px 8px rgba(96, 10, 7, 0.28);
}

body:not(.admin-body).theme--parade-light .site-nav a:hover,
body:not(.admin-body).theme--parade-light .site-nav a:focus-visible,
body:not(.admin-body).theme--parade-light .site-nav a.is-active {
  background: rgba(255,255,255,0.22);
}

body:not(.admin-body).theme--parade-light h1,
body:not(.admin-body).theme--parade-light h2,
body:not(.admin-body).theme--parade-light h3,
body:not(.admin-body).theme--parade-light .lead,
body:not(.admin-body).theme--parade-light .eyebrow {
  color: #82150a;
  text-shadow: none;
}

body:not(.admin-body).theme--parade-light .hero-copy,
body:not(.admin-body).theme--parade-light .hero-media,
body:not(.admin-body).theme--parade-light .content-card,
body:not(.admin-body).theme--parade-light .info-card,
body:not(.admin-body).theme--parade-light .news-card,
body:not(.admin-body).theme--parade-light .board-card,
body:not(.admin-body).theme--parade-light .sponsor-tile,
body:not(.admin-body).theme--parade-light .pagination__arrow {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,249,244,0.98)),
    radial-gradient(circle at top right, rgba(255, 214, 76, 0.08), transparent 0 28%);
  color: #2a3142;
  border-color: rgba(170, 29, 12, 0.14);
  box-shadow: 0 18px 36px rgba(129, 27, 13, 0.08);
}

body:not(.admin-body).theme--parade-light .hero-copy__text,
body:not(.admin-body).theme--parade-light .richtext p,
body:not(.admin-body).theme--parade-light .richtext li,
body:not(.admin-body).theme--parade-light .news-list__excerpt,
body:not(.admin-body).theme--parade-light .news-detail__meta,
body:not(.admin-body).theme--parade-light .form-hint,
body:not(.admin-body).theme--parade-light .sponsor-caption small,
body:not(.admin-body).theme--parade-light .section-head p,
body:not(.admin-body).theme--parade-light .content-card p,
body:not(.admin-body).theme--parade-light .info-card p,
body:not(.admin-body).theme--parade-light .board-card p,
body:not(.admin-body).theme--parade-light .news-card p {
  color: #4b566d;
}

body:not(.admin-body).theme--parade-light .hero-carousel {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,247,239,0.95));
  border-color: rgba(170, 29, 12, 0.14);
}

body:not(.admin-body).theme--parade-light .hero-carousel::before {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.58), rgba(255, 229, 218, 0.22)),
    url('../../images/IMG_2300.jpeg') center/cover no-repeat;
  opacity: 0.26;
}

body:not(.admin-body).theme--parade-light .button--primary {
  background: #b21a0c;
  color: #fff8f1;
}

body:not(.admin-body).theme--parade-light .button--secondary {
  background: #ffd13d;
  color: #651007;
}

body:not(.admin-body).theme--parade-light .site-footer {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(251,245,239,0.98));
  border-top: 1px solid rgba(170, 29, 12, 0.12);
}

body:not(.admin-body).theme--parade-light .site-footer,
body:not(.admin-body).theme--parade-light .site-footer a,
body:not(.admin-body).theme--parade-light .site-footer h2 {
  color: #82150a;
}

body:not(.admin-body).theme--parade-light .site-footer p {
  color: #4b566d;
}

body:not(.admin-body).theme--parade-light .footer-links-inline a {
  background: rgba(178, 26, 12, 0.05);
  border-color: rgba(178, 26, 12, 0.1);
  color: #82150a;
}

.admin-theme-form {
  display: grid;
  gap: 1.25rem;
}

.admin-theme-group {
  display: grid;
  gap: .8rem;
}

.admin-theme-group .eyebrow {
  color: #fff8ef;
}

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

.admin-theme-card {
  display: grid;
  grid-template-columns: 1.5rem minmax(0, 1fr);
  grid-template-areas:
    "radio preview"
    "body body";
  align-items: start;
  gap: .9rem 1rem;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  cursor: pointer;
  min-height: 0;
}

.admin-theme-card input {
  grid-area: radio;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0;
  align-self: start;
  justify-self: center;
  margin-top: .2rem;
}

.admin-theme-card__preview {
  grid-area: preview;
  display: block;
  min-height: 6.2rem;
  border-radius: 8px;
  border: 1px solid rgba(26,39,76,.08);
}

.admin-theme-card__preview--carnival {
  background:
    linear-gradient(115deg, transparent 0 58%, rgba(255, 207, 49, 0.88) 58% 60%, transparent 60% 100%),
    linear-gradient(64deg, transparent 0 68%, rgba(55, 122, 224, 0.62) 68% 70%, transparent 70% 100%),
    linear-gradient(135deg, #f12a08 0%, #db1907 42%, #bd1208 100%);
}

.admin-theme-card__preview--calm {
  background:
    linear-gradient(102deg, transparent 0 67%, rgba(255, 227, 168, 0.42) 67% 68%, transparent 68% 100%),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(255,255,255,0.11) 42px 44px, transparent 44px 84px),
    linear-gradient(135deg, #c61f0d 0%, #b6190c 48%, #9f140a 100%);
}

.admin-theme-card__preview--light {
  background:
    linear-gradient(180deg, #b61b0d 0 22%, #fff9f4 22% 100%),
    linear-gradient(112deg, transparent 0 66%, rgba(233, 54, 24, 0.12) 66% 68%, transparent 68% 100%),
    linear-gradient(64deg, transparent 0 76%, rgba(43, 104, 201, 0.1) 76% 78%, transparent 78% 100%);
}

.admin-theme-card__preview--dark {
  background:
    linear-gradient(180deg, #9a1208 0 22%, #12171e 22% 100%),
    linear-gradient(112deg, transparent 0 66%, rgba(214, 56, 28, 0.22) 66% 68%, transparent 68% 100%),
    linear-gradient(67deg, transparent 0 73%, rgba(43, 104, 201, 0.16) 73% 75%, transparent 75% 100%);
}

.admin-theme-card__preview--stage-red {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 214, 76, 0.22), transparent 0 12%),
    linear-gradient(120deg, transparent 0 58%, rgba(255, 223, 160, 0.3) 58% 60%, transparent 60% 100%),
    linear-gradient(58deg, transparent 0 73%, rgba(100, 132, 232, 0.22) 73% 75%, transparent 75% 100%),
    linear-gradient(135deg, #d71e0d 0%, #c0150a 44%, #8f0e08 100%);
}

.admin-theme-card__preview--parade-light {
  background:
    linear-gradient(180deg, #b61b0d 0 20%, #fff9f4 20% 100%),
    conic-gradient(from 180deg at 12% 0%, rgba(219, 48, 22, 0.16) 0 8%, transparent 8% 100%),
    conic-gradient(from 180deg at 24% 0%, rgba(255, 214, 76, 0.22) 0 8%, transparent 8% 100%),
    conic-gradient(from 180deg at 36% 0%, rgba(73, 111, 209, 0.16) 0 8%, transparent 8% 100%);
}

.admin-theme-card__body {
  grid-area: body;
  display: grid;
  gap: .4rem;
  padding-top: .1rem;
  padding: .85rem .9rem;
  border-radius: 8px;
  background: transparent;
  border: 0;
  opacity: 1 !important;
}

.admin-body .admin-theme-card__body,
.admin-body .admin-theme-card__body * {
  opacity: 1 !important;
  text-shadow: none !important;
}

.admin-body .admin-theme-card__body strong {
  font-size: 1rem;
  line-height: 1.3;
  color: #172033 !important;
}

.admin-body .admin-theme-card__body span {
  display: block;
  font-size: .95rem;
  color: #4e596f !important;
  line-height: 1.5;
}

.admin-theme-card input {
  accent-color: #d62828;
}

.admin-theme-card:has(input:checked) {
  border-color: rgba(214, 40, 40, 0.38);
  box-shadow: 0 16px 28px rgba(125, 21, 10, 0.12);
}

.admin-theme-card:hover {
  box-shadow: 0 12px 24px rgba(31, 47, 101, 0.08);
}

@media (max-width: 920px) {
  .admin-theme-grid {
    grid-template-columns: 1fr;
  }

  .admin-theme-card {
    grid-template-columns: 1.35rem minmax(0, 1fr);
  }
}
