:root {
  --font-head: "Oswald", "Arial Narrow", Arial, sans-serif;
  --font-body: "Barlow", Arial, sans-serif;

  --bg: #090909;
  --bg-soft: #141414;
  --bg-card: #171717;
  --line: #2a2a2a;

  --text: #f4f4f4;
  --text-soft: #c8c8c8;
  --text-dim: #9d9d9d;

  --yellow: #ffd200;
  --yellow-soft: #ffe98a;
  --yellow-dark: #a88600;

  --danger: #f8b8b8;
  --shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 210, 0, 0.12), transparent 34%),
    radial-gradient(circle at 88% 4%, rgba(255, 210, 0, 0.06), transparent 28%),
    linear-gradient(160deg, #0b0b0b, #090909 50%, #111111);
  min-height: 100vh;
}

.bg-noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.11;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 5px,
      rgba(255, 255, 255, 0.03) 5px,
      rgba(255, 255, 255, 0.03) 6px
    );
  z-index: 0;
}

a {
  color: var(--yellow-soft);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: #fff5b8;
}

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

.container {
  width: min(1140px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.page {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 8, 0.78);
  backdrop-filter: blur(10px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text);
}

.brand img {
  width: 52px;
  height: auto;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.4));
}

.brand strong {
  display: block;
  font-family: var(--font-head);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 1.2rem;
  line-height: 1;
}

.brand small {
  display: block;
  color: var(--text-soft);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #111;
  color: var(--text);
  border-radius: 10px;
  padding: 0.5rem 0.62rem;
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link,
.drop-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  background: transparent;
  color: var(--text-soft);
  font-family: var(--font-head);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.88rem;
  padding: 0.6rem 0.72rem;
  border-radius: 8px;
  cursor: pointer;
}

.nav-link:hover,
.nav-link:focus-visible,
.drop-toggle:hover,
.drop-toggle:focus-visible,
.nav-link.active,
.drop-toggle.active {
  color: #111;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-soft));
}

.drop-toggle .caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-top: 2px;
}

.dropdown {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 250px;
  list-style: none;
  margin: 0;
  padding: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #121212;
  box-shadow: var(--shadow);
  display: none;
}

.dropdown a {
  display: block;
  color: var(--text-soft);
  padding: 0.52rem 0.65rem;
  border-radius: 8px;
  font-size: 0.93rem;
}

.dropdown a:hover,
.dropdown a:focus-visible,
.dropdown a.active {
  background: rgba(255, 210, 0, 0.12);
  color: #fff;
}

.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown,
.has-dropdown.open > .dropdown {
  display: block;
}

.hero {
  position: relative;
  padding: clamp(2.6rem, 5vw, 5rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: clip;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -42% auto;
  width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 210, 0, 0.22), rgba(255, 210, 0, 0));
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.kicker {
  display: inline-flex;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #111;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-soft));
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.76rem;
  margin-bottom: 1rem;
}

.hero h1,
.page-title {
  margin: 0;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.page-title {
  font-size: clamp(1.7rem, 3.8vw, 3rem);
}

.hero p,
.lead {
  margin: 1rem 0 0;
  max-width: 62ch;
  color: var(--text-soft);
  line-height: 1.58;
}

.lead {
  margin-top: 0.8rem;
}

.hero-brand-card {
  background: linear-gradient(160deg, rgba(255, 210, 0, 0.14), rgba(255, 210, 0, 0.02));
  border: 1px solid rgba(255, 210, 0, 0.2);
  border-radius: 20px;
  padding: 1.2rem;
}

.hero-brand-card img {
  max-width: 140px;
  margin: 0 auto 1rem;
}

.hero-brand-card p {
  margin: 0;
  text-align: center;
  color: var(--text-soft);
}

.cta-row {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0.72rem 1rem;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.82rem;
}

.button-primary {
  color: #0b0b0b;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-soft));
}

.button-primary:hover,
.button-primary:focus-visible {
  color: #0a0a0a;
}

.button-secondary {
  border-color: var(--line);
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.02);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: #fff;
  border-color: rgba(255, 210, 0, 0.5);
  background: rgba(255, 210, 0, 0.08);
}

.quick-stats {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.stat-pill {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  color: var(--text-soft);
  font-size: 0.93rem;
}

.section {
  padding: clamp(2rem, 4vw, 3.8rem) 0;
}

.section + .section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-title {
  margin: 0;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.4rem, 2.4vw, 2.15rem);
}

.section-subtitle {
  margin: 0.3rem 0 0;
  color: var(--text-dim);
  max-width: 75ch;
  line-height: 1.5;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

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

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

.card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.2));
  border-radius: 14px;
  padding: 1rem;
}

.card h3,
.card h4 {
  margin: 0;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card p {
  margin: 0.6rem 0 0;
  color: var(--text-soft);
  line-height: 1.5;
}

.card .meta {
  margin-top: 0.8rem;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.card .tag {
  display: inline-flex;
  border: 1px solid rgba(255, 210, 0, 0.4);
  border-radius: 999px;
  padding: 0.2rem 0.56rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--yellow-soft);
  margin-bottom: 0.55rem;
}

.info-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.info-box {
  border: 1px dashed rgba(255, 210, 0, 0.45);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  color: var(--text-soft);
  background: rgba(255, 210, 0, 0.06);
}

.notice {
  margin-top: 1rem;
  border-left: 4px solid var(--yellow);
  background: rgba(255, 210, 0, 0.08);
  padding: 0.75rem 0.9rem;
  color: var(--text-soft);
  border-radius: 8px;
}

.warning {
  border-left-color: #f2b233;
  background: rgba(242, 178, 51, 0.1);
  color: #ffe4ad;
}

.timeline {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0.42rem;
  bottom: 0;
  width: 2px;
  background: rgba(255, 210, 0, 0.4);
}

.timeline-item {
  position: relative;
  margin-left: 0;
  padding-left: 1.7rem;
  padding-bottom: 1rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 0.86rem;
  height: 0.86rem;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 6px rgba(255, 210, 0, 0.16);
}

.timeline-item h4 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.06rem;
  text-transform: uppercase;
}

.timeline-item p {
  margin: 0.35rem 0 0;
  color: var(--text-soft);
  line-height: 1.5;
}

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

.person-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem;
  background: var(--bg-card);
}

.person-role {
  margin: 0;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.98rem;
  color: var(--yellow-soft);
}

.person-card p {
  margin: 0.58rem 0 0;
  color: var(--text-soft);
  line-height: 1.45;
  white-space: pre-line;
}

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

.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.table th,
.table td {
  text-align: left;
  padding: 0.72rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.table th {
  color: #111;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-soft));
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
}

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

.steps {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.steps li {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-soft);
}

.steps strong {
  color: #fff;
}

.link-list {
  margin: 0.6rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.link-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.link-list a:hover,
.link-list a:focus-visible {
  border-color: rgba(255, 210, 0, 0.4);
  background: rgba(255, 210, 0, 0.08);
}

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

.checklist {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 1.2rem;
  margin-top: 0.45rem;
  color: var(--text-soft);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--yellow);
  border-radius: 50%;
}

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

.form-grid label {
  display: grid;
  gap: 0.35rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0f0f0f;
  color: var(--text);
  padding: 0.62rem 0.72rem;
  font: inherit;
}

.form-grid textarea {
  min-height: 120px;
  resize: vertical;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.page-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 0;
  position: relative;
  z-index: 1;
  background: #0c0c0c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  gap: 1rem;
}

.footer-title {
  margin: 0;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.page-footer p,
.page-footer li,
.page-footer a {
  color: var(--text-soft);
}

.page-footer ul {
  margin: 0.5rem 0 0;
  padding-left: 1rem;
}

.footer-bar {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: space-between;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.center {
  text-align: center;
}

@media (max-width: 1000px) {
  .hero-grid,
  .grid-4,
  .grid-3,
  .people-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav {
    position: absolute;
    inset: 84px 0 auto;
    background: #0d0d0d;
    border-bottom: 1px solid var(--line);
    padding: 0.8rem 1.2rem 1rem;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: 220ms ease;
  }

  .site-nav.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-list {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-link,
  .drop-toggle {
    width: 100%;
    justify-content: space-between;
    border: 1px solid var(--line);
    background: #121212;
    padding: 0.65rem 0.75rem;
  }

  .dropdown {
    position: static;
    display: none;
    margin-top: 0.45rem;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.1);
  }

  .has-dropdown.open > .dropdown {
    display: block;
  }

  .has-dropdown:hover > .dropdown,
  .has-dropdown:focus-within > .dropdown {
    display: none;
  }

  .has-dropdown.open:hover > .dropdown,
  .has-dropdown.open:focus-within > .dropdown {
    display: block;
  }
}

@media (max-width: 760px) {
  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .people-grid,
  .form-grid,
  .footer-grid,
  .cols-2 {
    grid-template-columns: 1fr;
  }

  .hero-brand-card {
    max-width: 360px;
  }

  .container {
    width: min(1140px, calc(100% - 1.3rem));
  }
}

/* 2026 visual refresh: warmer website look, less portal styling */
:root {
  --bg: #f6f2e6;
  --bg-soft: #fff5c9;
  --bg-card: #ffffff;
  --line: #e3dcc6;
  --text: #141414;
  --text-soft: #3c3524;
  --text-dim: #6d6551;
  --yellow: #f3c400;
  --yellow-soft: #ffe16b;
  --yellow-dark: #947300;
  --shadow: 0 14px 32px rgba(15, 15, 15, 0.09);
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at 8% 10%, rgba(243, 196, 0, 0.18), transparent 24%),
    radial-gradient(circle at 95% 2%, rgba(243, 196, 0, 0.12), transparent 22%),
    linear-gradient(180deg, #fff9e8 0%, #f7f3e8 100%);
}

.bg-noise {
  opacity: 0.05;
  background-image:
    repeating-linear-gradient(
      -35deg,
      transparent,
      transparent 6px,
      rgba(0, 0, 0, 0.05) 6px,
      rgba(0, 0, 0, 0.05) 7px
    );
}

a {
  color: #141414;
}

a:hover,
a:focus-visible {
  color: #000;
}

.site-header {
  border-bottom: 1px solid #ceb95f;
  background: rgba(255, 249, 229, 0.9);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.brand {
  color: #141414;
}

.brand small {
  color: #5d5543;
}

.nav-link,
.drop-toggle {
  color: #1a1a1a;
  border-radius: 999px;
}

.nav-link:hover,
.nav-link:focus-visible,
.drop-toggle:hover,
.drop-toggle:focus-visible,
.nav-link.active,
.drop-toggle.active {
  color: #141414;
  background: var(--yellow);
}

.dropdown {
  border: 1px solid #e0d6b2;
  background: #fffdf6;
}

.dropdown a {
  color: #2a2418;
}

.dropdown a:hover,
.dropdown a:focus-visible,
.dropdown a.active {
  background: rgba(243, 196, 0, 0.2);
  color: #111;
}

.hero {
  border-bottom: 1px solid #e2dabc;
  background:
    linear-gradient(130deg, #fff1a5 0%, #fff6cd 35%, #fffdf5 100%);
}

.hero::after {
  inset: auto -8% -34% auto;
  width: 420px;
  background: radial-gradient(circle, rgba(243, 196, 0, 0.35), rgba(243, 196, 0, 0));
}

.kicker {
  color: #141414;
  background: var(--yellow);
}

.hero h1,
.page-title {
  color: #141414;
}

.hero p,
.lead {
  color: #2f291d;
}

.hero-brand-card {
  background: #fffdf5;
  border: 1px solid #e3d7aa;
  box-shadow: var(--shadow);
}

.hero-brand-card p {
  color: #3f3627;
}

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

.button-secondary {
  border-color: #d7cb9e;
  color: #2b2418;
  background: rgba(255, 255, 255, 0.72);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: #b99712;
  background: rgba(243, 196, 0, 0.2);
  color: #111;
}

.stat-pill {
  border: 1px solid #e2d9ba;
  background: #fffcf1;
  color: #3d3525;
}

.section + .section {
  border-top: 1px solid #ebe2c6;
}

.section-title {
  color: #141414;
}

.card {
  border: 1px solid #e2d9bc;
  background: #fffef8;
  box-shadow: var(--shadow);
}

.card p {
  color: #393222;
}

.card .meta {
  color: #6f6650;
}

.card .tag {
  border-color: #caab2f;
  color: #4f3f09;
  background: #fff3bf;
}

.info-box {
  border: 1px solid #d0bc69;
  background: #fff7d7;
  color: #342d1d;
}

.notice {
  border-left-color: #cea200;
  background: #fff5cf;
  color: #352f21;
}

.warning {
  background: #ffefcf;
  color: #4b3715;
}

.timeline::before {
  background: rgba(148, 115, 0, 0.35);
}

.timeline-item h4 {
  color: #1b1811;
}

.timeline-item p {
  color: #453c2b;
}

.person-card {
  border-color: #e0d5b3;
  background: #fffdf4;
}

.person-role {
  color: #8c6b00;
}

.table-wrap {
  border-color: #d7ca9d;
  background: #fffef9;
}

.table th {
  color: #141414;
  background: var(--yellow);
}

.table td {
  color: #2c261a;
}

.steps li {
  border: 1px solid #e3d8b5;
  background: #fffef7;
  color: #342d1d;
}

.steps strong {
  color: #1c1912;
}

.link-list a {
  border: 1px solid #e2d8b8;
  color: #2f291d;
  background: #fffdf4;
}

.link-list a:hover,
.link-list a:focus-visible {
  border-color: #ba9610;
  background: #fff0b3;
}

.checklist li {
  color: #3b3425;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  border: 1px solid #dacfa8;
  background: #fffef8;
  color: #1d1a14;
}

.page-footer {
  border-top: 1px solid #342d18;
  background: #111;
}

.page-footer p,
.page-footer li,
.page-footer a {
  color: #f4ecd0;
}

.footer-bar {
  border-top: 1px solid rgba(243, 196, 0, 0.3);
  color: #d7cda7;
}

.bfv-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.bfv-widget {
  min-height: 560px;
  border: 1px solid #dfd6b8;
  border-radius: 12px;
  background: #fffdf8;
  overflow: hidden;
}

.matchcenter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.matchcenter-tab {
  display: inline-flex;
  align-items: center;
  padding: 0.46rem 0.8rem;
  border-radius: 999px;
  border: 1px solid #d5c27f;
  background: #fff7d9;
  color: #1a1813;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.matchcenter-tab:hover,
.matchcenter-tab:focus-visible {
  background: var(--yellow);
  color: #121212;
}

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

.photo-card {
  margin: 0;
  border: 1px solid #dfd3af;
  border-radius: 14px;
  overflow: hidden;
  background: #fffef8;
  box-shadow: var(--shadow);
}

.photo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.photo-card figcaption {
  padding: 0.7rem 0.8rem;
  color: #312a1d;
  font-size: 0.92rem;
}

#archive-list .link-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-height: 560px;
  overflow: auto;
  padding-right: 0.3rem;
}

@media (max-width: 1000px) {
  .site-nav {
    background: #fff9e3;
    border-bottom: 1px solid #d8ca96;
  }

  .nav-link,
  .drop-toggle {
    border: 1px solid #ddcf9d;
    background: #fffdf6;
  }

  .dropdown {
    border-color: #ddd0a1;
  }
}

@media (max-width: 760px) {
  .bfv-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .photo-card img {
    height: 210px;
  }

  #archive-list .link-list {
    grid-template-columns: 1fr;
    max-height: none;
  }
}

/* April 2026 refinement: dark theme, sharper geometry, new homepage blocks */
:root {
  --radius: 10px;
  --bg: #090909;
  --bg-soft: #141414;
  --bg-card: #171717;
  --line: #2a2a2a;
  --text: #f4f4f4;
  --text-soft: #c8c8c8;
  --text-dim: #9d9d9d;
  --yellow: #ffd200;
  --yellow-soft: #ffe98a;
  --yellow-dark: #a88600;
  --shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 210, 0, 0.12), transparent 34%),
    radial-gradient(circle at 88% 4%, rgba(255, 210, 0, 0.06), transparent 28%),
    linear-gradient(160deg, #0b0b0b, #090909 50%, #111111);
}

.bg-noise {
  opacity: 0.09;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 5px,
      rgba(255, 255, 255, 0.03) 5px,
      rgba(255, 255, 255, 0.03) 6px
    );
}

a {
  color: var(--yellow-soft);
}

a:hover,
a:focus-visible {
  color: #fff5b8;
}

.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 8, 0.86);
  box-shadow: none;
}

.brand {
  gap: 0;
}

.brand img {
  width: 56px;
}

.brand span {
  display: none;
}

.nav-toggle,
.nav-link,
.drop-toggle,
.dropdown,
.dropdown a,
.button,
.kicker,
.stat-pill,
.card,
.hero-brand-card,
.person-card,
.table-wrap,
.steps li,
.link-list a,
.matchcenter-tab,
.photo-card,
.bfv-widget,
.info-box,
.notice,
.form-grid input,
.form-grid textarea,
.form-grid select,
.hero-slider-control,
.hero-dot,
.news-card,
.sponsor-logo {
  border-radius: var(--radius) !important;
}

.nav-link,
.drop-toggle {
  color: var(--text-soft);
  border-radius: var(--radius) !important;
}

.nav-link:hover,
.nav-link:focus-visible,
.drop-toggle:hover,
.drop-toggle:focus-visible,
.nav-link.active,
.drop-toggle.active {
  color: #111;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-soft));
}

.nav-link.nav-cta {
  background: var(--yellow);
  color: #111;
  border: 1px solid rgba(255, 210, 0, 0.45);
}

.nav-link.nav-cta:hover,
.nav-link.nav-cta:focus-visible {
  background: var(--yellow-soft);
  color: #111;
}

.dropdown {
  top: calc(100% - 1px);
  border: 1px solid var(--line);
  background: #121212;
  z-index: 120;
}

.dropdown a {
  color: var(--text-soft);
}

.dropdown a:hover,
.dropdown a:focus-visible,
.dropdown a.active {
  background: rgba(255, 210, 0, 0.12);
  color: #fff;
}

.has-dropdown.open-desktop > .dropdown {
  display: block;
}

.hero h1,
.page-title,
.section-title {
  color: var(--text);
}

.section-subtitle,
.card .meta {
  color: var(--text-dim);
}

.hero p,
.lead,
.card p,
.checklist li,
.timeline-item p {
  color: var(--text-soft);
}

.timeline-item h4,
.steps strong {
  color: #fff;
}

.hero-brand-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 210, 0, 0.2);
  box-shadow: none;
}

.button-primary {
  color: #0b0b0b;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-soft));
}

.button-secondary {
  border-color: var(--line);
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.02);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: #fff;
  border-color: rgba(255, 210, 0, 0.5);
  background: rgba(255, 210, 0, 0.08);
}

.stat-pill {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-soft);
}

.section + .section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.link-list a {
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.02);
}

.link-list a:hover,
.link-list a:focus-visible {
  border-color: rgba(255, 210, 0, 0.4);
  background: rgba(255, 210, 0, 0.08);
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  border: 1px solid var(--line);
  background: #0f0f0f;
  color: var(--text);
}

.info-box {
  border: 1px dashed rgba(255, 210, 0, 0.45);
  background: rgba(255, 210, 0, 0.06);
  color: var(--text-soft);
}

.notice {
  border-left-color: var(--yellow);
  background: rgba(255, 210, 0, 0.08);
  color: var(--text-soft);
}

.warning {
  border-left-color: #f2b233;
  background: rgba(242, 178, 51, 0.1);
  color: #ffe4ad;
}

.person-card {
  border-color: var(--line);
  background: var(--bg-card);
}

.bfv-widget {
  border: 1px solid var(--line);
  background: #101010;
}

.bfv-widget > div,
.bfv-widget iframe {
  width: 100% !important;
  max-width: 100% !important;
}

.table-wrap {
  border: 1px solid var(--line);
  background: transparent;
}

.steps li {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-soft);
}

.table td {
  color: var(--text-soft);
}

.hero {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}

.hero-slider {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: clamp(360px, 58vh, 660px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-slider::after {
  display: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 540ms ease;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 58vh, 660px);
  object-fit: cover;
  filter: brightness(0.56) saturate(1.05);
}

.hero-slide-overlay {
  position: absolute;
  inset: auto auto 2.4rem 2rem;
  max-width: min(90vw, 760px);
  z-index: 3;
}

.hero-slide-overlay .kicker {
  margin-bottom: 0.7rem;
}

.hero-slide-overlay h1 {
  margin: 0;
  color: #fff;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
  font-size: clamp(1.8rem, 4.6vw, 3.8rem);
}

.hero-slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(10, 10, 10, 0.58);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.hero-slider-control.prev {
  left: 1rem;
}

.hero-slider-control.next {
  right: 1rem;
}

.hero-slider-control:hover,
.hero-slider-control:focus-visible {
  background: rgba(255, 210, 0, 0.85);
  color: #111;
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 4;
}

.hero-dot {
  width: 11px;
  height: 11px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.hero-dot.active {
  background: var(--yellow);
  border-color: var(--yellow);
}

.news-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr;
  gap: 1rem;
}

.news-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.2));
  overflow: hidden;
  box-shadow: var(--shadow);
}

.news-card-featured {
  grid-row: span 2;
}

.news-image {
  display: block;
}

.news-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.news-card-featured .news-image img {
  height: 300px;
}

.news-body {
  padding: 0.95rem 1rem 1.05rem;
}

.news-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.45rem;
  padding: 0.24rem 0.5rem;
  border: 1px solid rgba(255, 210, 0, 0.48);
  background: rgba(255, 210, 0, 0.08);
  color: var(--yellow-soft);
  border-radius: var(--radius);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.72rem;
}

.news-body h3 {
  margin: 0;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.news-body h3 a {
  color: #fff;
}

.news-body p {
  margin: 0.58rem 0 0;
  color: var(--text-soft);
}

.sponsor-banner {
  margin-top: 1.8rem;
  background:
    linear-gradient(180deg, rgba(255, 210, 0, 0.08), rgba(255, 210, 0, 0.02)),
    #0d0d0d;
  border-top: 1px solid rgba(255, 210, 0, 0.25);
  border-bottom: 1px solid rgba(255, 210, 0, 0.15);
}

.sponsor-banner-inner {
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.1rem 0 2.3rem;
}

.sponsor-carousel {
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.01);
}

.sponsor-track {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: max-content;
  padding: 0.9rem 1rem;
  animation: sponsor-scroll 18s linear infinite;
}

.sponsor-logo {
  min-width: 190px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(0, 0, 0, 0.22);
  padding: 0.45rem 1rem;
}

.sponsor-logo img {
  max-width: 100%;
  max-height: 44px;
  width: auto;
  height: auto;
  filter: grayscale(0.12);
}

.sponsor-logo:hover,
.sponsor-logo:focus-visible {
  border-color: rgba(255, 210, 0, 0.6);
  background: rgba(255, 210, 0, 0.08);
}

@keyframes sponsor-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.2));
  box-shadow: none;
}

.card .meta {
  color: var(--text-dim);
}

.card .tag {
  border-radius: var(--radius);
  color: var(--yellow-soft);
  border-color: rgba(255, 210, 0, 0.4);
  background: rgba(255, 210, 0, 0.05);
}

.page-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0c0c0c;
}

.page-footer p,
.page-footer li,
.page-footer a {
  color: var(--text-soft);
}

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-dim);
}

@media (max-width: 1000px) {
  .site-nav {
    background: #0d0d0d;
    border-bottom: 1px solid var(--line);
  }

  .nav-link,
  .drop-toggle {
    border: 1px solid var(--line);
    background: #121212;
  }

  .dropdown {
    border-color: rgba(255, 255, 255, 0.1);
  }

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

  .news-card-featured {
    grid-row: auto;
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .hero-slider {
    min-height: 360px;
  }

  .hero-slide img {
    min-height: 360px;
  }

  .hero-slide-overlay {
    left: 1rem;
    right: 1rem;
    bottom: 1.1rem;
  }

  .hero-slider-control {
    width: 36px;
    height: 36px;
  }

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

  .news-card-featured .news-image img,
  .news-image img {
    height: 200px;
  }

  .sponsor-logo {
    min-width: 160px;
    height: 58px;
  }
}

/* April 2026 homepage refresh: static hero copy + editorial sections */
:root {
  --brand-yellow: #ffd200;
  --yellow: var(--brand-yellow);
}

.nav-link.active,
.drop-toggle.active,
.dropdown a.active {
  color: var(--text-soft);
  background: transparent;
}

.home-hero {
  min-height: clamp(420px, 64vh, 760px);
}

.home-hero .hero-slide img {
  min-height: clamp(420px, 64vh, 760px);
  filter: brightness(0.48) saturate(1.08) contrast(1.06);
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  padding-bottom: 0;
}

.home-hero-content {
  max-width: 900px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.home-hero-content h1,
.home-hero-content h2 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.08;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
  border-radius: var(--radius);
  display: inline-block;
  padding: 0.45rem 0.95rem;
}

.home-hero-content h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--yellow);
  background: rgba(0, 0, 0, 0.78);
}

.home-hero-content h2 {
  margin-top: 0;
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 2.2vw, 1.85rem);
  color: #111;
  background: rgba(255, 210, 0, 0.88);
}

.home-hero .hero-slider-dots {
  bottom: 1rem;
}

.home-welcome,
.home-history,
.sponsor-banner-full {
  background: rgba(255, 255, 255, 0.015);
}

.home-news,
.home-departments {
  background: rgba(0, 0, 0, 0.2);
}

.home-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}

.home-copy p {
  margin: 0.68rem 0 0;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 68ch;
}

.home-visual {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #121212;
  box-shadow: var(--shadow);
}

.home-visual img {
  width: 100%;
  height: 100%;
  max-height: 470px;
  object-fit: cover;
}

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

.home-news-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.22));
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease;
  color: inherit;
  text-decoration: none;
}

.home-news-card:hover,
.home-news-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(255, 210, 0, 0.45);
}

.home-news-image {
  display: block;
}

.home-news-image img {
  width: 100%;
  height: 215px;
  object-fit: cover;
}

.home-news-body {
  padding: 0.95rem 1rem 1.1rem;
}

.home-news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.62rem;
  font-family: var(--font-head);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.home-news-meta time {
  color: var(--yellow);
}

.home-news-meta span {
  color: var(--text-dim);
}

.home-news-body h3 {
  margin: 0;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.2rem;
  line-height: 1.15;
  color: #fff;
}

.home-news-body p {
  margin: 0.62rem 0 0;
  color: var(--text-soft);
}

.home-news-actions {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
}

.home-history .button {
  margin-top: 1rem;
}

.home-departments-grid {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-department-card {
  display: block;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.home-department-card:hover,
.home-department-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 210, 0, 0.45);
}

.home-department-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.home-department-body {
  padding: 0.95rem 1rem 1.1rem;
}

.home-department-body h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #fff;
}

.home-department-body p {
  margin: 0.6rem 0 0.2rem;
}

.sponsor-banner-full {
  margin-top: clamp(2rem, 5vw, 3.4rem);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(1.8rem, 4vw, 2.8rem) 0 1.8rem;
  background: rgba(255, 255, 255, 0.015);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sponsor-banner-full .section-title {
  width: min(1140px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.sponsor-banner-full .sponsor-carousel {
  margin-top: 1.1rem;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.sponsor-banner-full .sponsor-track {
  padding: 0.92rem 1.1rem;
  gap: 1.3rem;
  animation: sponsor-scroll 20s linear infinite;
}

.sponsor-banner-full .sponsor-logo {
  min-width: 220px;
  height: 70px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
}

.button,
.button-primary,
.button-secondary {
  background: var(--yellow);
  color: #111;
  border: 1px solid rgba(255, 210, 0, 0.65);
}

.button:hover,
.button:focus-visible,
.button-primary:hover,
.button-primary:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible {
  background: #ffdf43;
  color: #111;
  border-color: #ffdf43;
}

@media (max-width: 1100px) {
  .home-news-grid,
  .home-departments-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-split {
    grid-template-columns: 1fr;
  }

  .home-visual img {
    max-height: 420px;
  }
}

@media (max-width: 760px) {
  .home-hero,
  .home-hero .hero-slide img {
    min-height: 360px;
  }

  .home-hero-overlay {
    padding-bottom: 0;
  }

  .home-hero-content {
    padding: 0;
  }

  .home-hero-content h1 {
    font-size: clamp(1.6rem, 8vw, 2.3rem);
  }

  .home-hero-content h2 {
    font-size: clamp(0.94rem, 4.8vw, 1.25rem);
  }

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

  .home-news-image img,
  .home-department-card img {
    height: 190px;
  }

  .sponsor-banner-full {
    margin-top: 1.5rem;
    padding: 1.35rem 0 1.2rem;
  }

  .sponsor-banner-full .sponsor-logo {
    min-width: 165px;
    height: 58px;
  }
}

/* April 2026 polish pass: hero placement, nav hover, sponsor slider, news pages */
body {
  overflow-x: hidden;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus-visible,
.site-header .drop-toggle:hover,
.site-header .drop-toggle:focus-visible {
  background: rgba(255, 210, 0, 0.14) !important;
  color: #fff !important;
}

.site-header .nav-link.active,
.site-header .drop-toggle.active,
.site-header .dropdown a.active {
  background: transparent !important;
  color: var(--text-soft) !important;
}

.site-header .dropdown a:hover,
.site-header .dropdown a:focus-visible {
  background: rgba(255, 210, 0, 0.18) !important;
  color: #fff !important;
}

.site-header .nav-link.nav-cta {
  background: var(--yellow) !important;
  color: #111 !important;
  border: 1px solid var(--yellow) !important;
}

.site-header .nav-link.nav-cta:hover,
.site-header .nav-link.nav-cta:focus-visible {
  background: #111 !important;
  color: var(--yellow) !important;
}

.home-hero-overlay {
  align-items: flex-end !important;
  justify-content: center;
  padding: 0 0 clamp(1.4rem, 4vh, 2.8rem) !important;
}

.home-hero-overlay .container {
  display: flex;
  justify-content: center;
}

.home-hero-content {
  max-width: min(92vw, 980px);
}

.home-hero-content h1,
.home-hero-content h2 {
  padding: 0.5rem 1rem;
}

.home-hero-content h2 {
  margin-top: 0.2rem;
}

.home-welcome {
  background: #15110d !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.home-news {
  background: #090909 !important;
}

.home-history {
  background: #15110d !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.home-departments {
  background: #090909 !important;
}

.button,
.button-primary,
.button-secondary {
  background: var(--yellow) !important;
  color: #111 !important;
  border: 1px solid var(--yellow) !important;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.26);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible,
.button-primary:hover,
.button-primary:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible {
  background: #111 !important;
  color: var(--yellow) !important;
  border-color: var(--yellow) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.34);
}

.sponsor-banner-full {
  background: #15110d !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sponsor-banner-full .sponsor-carousel {
  width: 100vw;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  overflow: hidden;
  padding: 0.2rem 0;
  background: transparent !important;
}

.sponsor-track-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: sponsor-scroll 28s linear infinite;
}

.sponsor-banner-full .sponsor-track {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  width: max-content;
  padding: 0.8rem 1rem;
  animation: none !important;
}

.sponsor-banner-full .sponsor-logo {
  flex: 0 0 auto;
  min-width: 230px;
  height: 72px;
}

.sponsor-banner-full .sponsor-carousel:hover .sponsor-track-wrap {
  animation-play-state: paused;
}

.news-overview-hero,
.news-detail-hero {
  background: #15110d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.news-overview {
  background: #0a0a0a;
}

.news-overview-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.news-overview-info {
  display: grid;
  gap: 0.25rem;
}

.news-count {
  margin: 0;
  color: var(--text-dim);
}

.news-search-wrap {
  display: grid;
  gap: 0.35rem;
  min-width: min(100%, 420px);
}

.news-search-wrap span {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.news-search {
  width: 100%;
  height: 44px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #111;
  color: var(--text);
  padding: 0 0.78rem;
}

.news-search:focus-visible {
  outline: 0;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 210, 0, 0.2);
}

.news-empty {
  margin-top: 1rem;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  color: var(--text-soft);
}

.news-detail-head {
  max-width: 900px;
}

.news-detail-meta {
  margin: 0 0 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.news-detail-meta time {
  color: var(--yellow);
}

.news-detail-meta span {
  color: #111;
  background: rgba(255, 210, 0, 0.9);
  border-radius: var(--radius);
  padding: 0.22rem 0.45rem;
}

.news-detail-article {
  max-width: 920px;
  padding: 1rem;
}

.news-detail-image {
  width: 100%;
  height: clamp(220px, 42vw, 460px);
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.news-detail-content {
  margin-top: 0.95rem;
}

.news-detail-content p {
  margin: 0.68rem 0 0;
  line-height: 1.65;
}

.news-detail-actions {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

@media (max-width: 900px) {
  .news-overview-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .news-search-wrap {
    min-width: 100%;
  }
}

@media (max-width: 760px) {
  .home-hero-overlay {
    padding: 0 0 1.2rem !important;
  }

  .home-hero-content h1,
  .home-hero-content h2 {
    padding: 0.42rem 0.75rem;
  }

  .sponsor-banner-full .sponsor-logo {
    min-width: 170px;
    height: 60px;
  }

  .sponsor-banner-full .sponsor-track {
    gap: 0.9rem;
    padding: 0.75rem 0.7rem;
  }
}

/* April 2026: template-style detail layout (text left, image right) */
.news-detail-template {
  background: #0b0b0b;
  padding-top: clamp(1.4rem, 2.8vw, 2.2rem);
}

.news-template-layout {
  width: min(1240px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.news-template-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.8rem);
  align-items: start;
}

.news-template-left .page-title {
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  line-height: 1.1;
  margin-top: 0.9rem;
}

.news-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 0.88rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.76rem;
}

.news-back-link:hover,
.news-back-link:focus-visible {
  border-color: var(--yellow);
  color: #fff;
  background: rgba(255, 210, 0, 0.12);
}

.news-back-row {
  display: block;
  margin: 0 0 0.95rem;
}

.news-template-meta {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0.7rem;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.news-template-meta time {
  color: var(--yellow);
}

.news-template-meta span {
  color: #111;
  background: rgba(255, 210, 0, 0.95);
  border-radius: var(--radius);
  padding: 0.2rem 0.5rem;
  margin-left: auto;
}

.news-template-left .lead {
  margin-top: 0.8rem;
}

.news-template-divider {
  border: 0;
  height: 1px;
  margin: 1rem 0;
  background: rgba(255, 255, 255, 0.16);
}

.news-template-content p {
  margin: 0.78rem 0 0;
  line-height: 1.62;
  color: var(--text-soft);
}

.news-template-media {
  margin: 0;
  border-radius: var(--radius);
}

.news-template-media .news-detail-image {
  width: 100%;
  height: clamp(280px, 42vw, 560px);
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.news-template-media figcaption {
  margin-top: 0.6rem;
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .news-template-grid {
    grid-template-columns: 1fr;
  }

  .news-template-media .news-detail-image {
    height: clamp(240px, 58vw, 430px);
  }
}

/* April 2026: shared hero image for all subpages */
body:not([data-page="index"]) .hero {
  background-image: url("../archive/uploads/2018/01/DSC_9908-2.png");
  background-position: center 40%;
  background-size: cover;
  background-repeat: no-repeat;
}

body:not([data-page="index"]) .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.56);
  pointer-events: none;
}

body:not([data-page="index"]) .hero::after {
  display: none;
}

body:not([data-page="index"]) .hero > .container {
  position: relative;
  z-index: 1;
}

/* April 2026: footer cleanup */
.footer-grid.footer-grid-minimal {
  grid-template-columns: 1.25fr 0.75fr;
}

.footer-social-links {
  margin-top: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-social-links a {
  display: inline;
  width: fit-content;
  padding: 0;
  border: 0;
  border-radius: 0;
  min-height: 0;
  color: var(--yellow);
  background: transparent;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.98rem;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

.footer-social-links a:hover,
.footer-social-links a:focus-visible {
  color: #fff3a6;
  background: transparent;
  text-decoration-thickness: 2px;
}

/* April 2026: flutlicht page content layout */
.flutlicht-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 2rem);
  align-items: start;
}

.flutlicht-copy p {
  margin: 0.78rem 0 0;
  line-height: 1.65;
  color: var(--text-soft);
}

.flutlicht-media {
  margin: 0;
}

.flutlicht-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.flutlicht-led {
  padding-top: 0.2rem;
}

.flutlicht-facts-wrap {
  margin-top: 0.9rem;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
}

.flutlicht-facts-title {
  margin: 0;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.1rem;
}

.flutlicht-facts {
  margin: 0.8rem 0 0;
}

.flutlicht-fact-row {
  display: grid;
  grid-template-columns: minmax(130px, 180px) 1fr;
  gap: 0.8rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.flutlicht-fact-row:last-child {
  border-bottom: 0;
  padding-bottom: 0.2rem;
}

.flutlicht-fact-row dt {
  margin: 0;
  color: var(--yellow);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}

.flutlicht-fact-row dd {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
}

@media (max-width: 980px) {
  .footer-grid.footer-grid-minimal {
    grid-template-columns: 1fr;
  }

  .footer-social-links a {
    width: fit-content;
  }

  .flutlicht-grid {
    grid-template-columns: 1fr;
  }

  .flutlicht-fact-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
}

/* April 2026: downloads layout refresh */
.downloads-section .section-subtitle {
  margin-bottom: 1rem;
}

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

.download-item {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

.download-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
}

.download-head h3 {
  margin: 0;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.download-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 28px;
  border-radius: var(--radius);
  background: rgba(255, 210, 0, 0.92);
  color: #111;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

.download-item p {
  margin: 0.65rem 0 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.download-actions {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.download-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: var(--yellow);
  text-decoration: none;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.02);
}

.download-link:hover,
.download-link:focus-visible {
  color: #111;
  background: var(--yellow);
  border-color: var(--yellow);
}

.downloads-media-section {
  padding-top: 0.5rem;
}

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

.download-media-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.download-media-item img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.download-media-body {
  padding: 0.8rem;
}

.download-media-body h3 {
  margin: 0;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1rem;
}

.download-media-body p {
  margin: 0.5rem 0 0;
  color: var(--text-soft);
}

@media (max-width: 1000px) {
  .downloads-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .downloads-grid,
  .downloads-media-grid {
    grid-template-columns: 1fr;
  }
}

/* April 2026: news search full-width */
.news-overview-toolbar {
  display: block;
}

.news-overview-toolbar .news-search-wrap {
  display: block;
  width: 100%;
  min-width: 100%;
}

.news-overview-toolbar .news-search {
  width: 100%;
}

/* April 2026: downloads media refinement */
.download-media-item {
  display: flex;
  flex-direction: column;
}

.download-media-item img {
  height: 190px;
  object-fit: cover;
  object-position: center;
  background: #0f0f0f;
}

.download-media-item.is-logo img {
  object-fit: contain;
  padding: 0.8rem;
  background: #0b0b0b;
}

/* April 2026: downloads preview overlay */
body.modal-open {
  overflow: hidden;
}

.download-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.download-preview-modal[hidden] {
  display: none !important;
}

.download-preview-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.download-preview-dialog {
  position: relative;
  width: min(1220px, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #0d0d0d;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.download-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.download-preview-head h2 {
  margin: 0;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
}

.download-preview-close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
}

.download-preview-close:hover,
.download-preview-close:focus-visible {
  background: var(--yellow);
  color: #111;
  border-color: var(--yellow);
}

.download-preview-content {
  min-height: 0;
  display: grid;
  place-items: center;
  background: #060606;
}

.download-preview-image {
  display: none;
  width: 100%;
  max-height: calc(100vh - 130px);
  object-fit: contain;
  background: #060606;
}

.download-preview-pdf {
  display: none;
  width: 100%;
  height: calc(100vh - 130px);
  border: 0;
  background: #fff;
}

@media (max-width: 760px) {
  .download-preview-modal {
    padding: 0.45rem;
  }

  .download-preview-dialog {
    width: calc(100vw - 0.9rem);
    max-height: calc(100vh - 0.9rem);
  }

  .download-preview-image,
  .download-preview-pdf {
    max-height: calc(100vh - 150px);
    height: calc(100vh - 150px);
  }
}

/* April 2026: mobile polish (footer, fullscreen nav, hero sizing) */
@media (max-width: 1000px) {
  .site-header {
    z-index: 150;
  }

  .site-header .brand {
    position: relative;
    z-index: 160;
  }

  .nav-toggle {
    position: relative;
    z-index: 160;
  }

  .site-nav {
    position: fixed !important;
    inset: 0 !important;
    z-index: 140;
    width: 100vw;
    height: 100dvh;
    overflow-y: auto;
    padding: 86px 1rem 1.2rem !important;
    background: #0b0b0b !important;
    border-bottom: 0 !important;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 240ms ease, opacity 240ms ease;
  }

  .site-nav.open {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .site-nav .nav-list {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
  }

  .site-nav .drop-toggle {
    width: 100%;
    display: block;
    margin: 0.2rem 0 0.15rem;
    padding: 0.25rem 0.1rem;
    border: 0 !important;
    background: transparent !important;
    color: var(--yellow) !important;
    font-size: 0.78rem;
    letter-spacing: 0.09em;
    opacity: 0.98;
    pointer-events: none;
    cursor: default;
  }

  .site-nav .drop-toggle .caret {
    display: none;
  }

  .site-nav .nav-link,
  .site-nav .dropdown a {
    width: 100%;
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0.62rem 0.78rem !important;
    border: 1px solid var(--line) !important;
    border-radius: 10px !important;
    background: #121212 !important;
    color: var(--text-soft) !important;
    line-height: 1.2;
  }

  .site-nav .dropdown {
    display: block !important;
    position: static !important;
    margin-top: 0.3rem !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    min-width: 0;
  }

  .site-nav .dropdown a {
    margin: 0.34rem 0 0;
  }

  .site-nav .nav-link:hover,
  .site-nav .nav-link:focus-visible,
  .site-nav .dropdown a:hover,
  .site-nav .dropdown a:focus-visible {
    border-color: rgba(255, 210, 0, 0.52) !important;
    color: var(--yellow) !important;
    background: rgba(255, 210, 0, 0.08) !important;
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media (max-width: 760px) {
  .page-footer {
    text-align: center;
  }

  .footer-grid {
    justify-items: center;
  }

  .footer-grid.footer-grid-minimal > section {
    text-align: center;
  }

  .footer-social-links {
    align-items: center;
  }

  .footer-social-links a {
    margin-inline: auto;
  }

  .footer-bar {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 0.35rem;
  }

  .home-hero,
  .home-hero .hero-slide img {
    min-height: 270px !important;
  }

  .home-hero-overlay {
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
  }

  .home-hero-content {
    max-width: min(92vw, 540px);
    text-align: center;
  }

  .home-hero-content h1 {
    font-size: clamp(2rem, 9vw, 2.6rem) !important;
  }

  .home-hero-content h2 {
    font-size: clamp(1.05rem, 5.4vw, 1.45rem) !important;
  }

  .home-hero .hero-slider-dots {
    bottom: 0.55rem;
  }

  body:not([data-page="index"]) .hero {
    min-height: 178px;
    display: flex;
    align-items: center;
    padding: 0.95rem 0 1.05rem !important;
  }

  body:not([data-page="index"]) .hero .kicker {
    margin-bottom: 0.42rem;
    font-size: 0.66rem;
    padding: 0.2rem 0.48rem;
  }

  body:not([data-page="index"]) .hero .page-title {
    font-size: clamp(1.24rem, 6.8vw, 1.72rem);
    line-height: 1.05;
  }

  body:not([data-page="index"]) .hero .lead {
    margin-top: 0.42rem;
    line-height: 1.36;
    font-size: 0.88rem;
  }
}

/* April 2026: plain text links in content should be yellow + underlined */
.page a:not(.button):not(.nav-link):not(.drop-toggle):not(.home-news-card):not(.home-department-card):not(.sponsor-logo):not(.download-link):not(.hero-dot):not(.hero-slider-control):not(.download-preview-close):not(.download-preview-backdrop) {
  color: var(--yellow);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.page a:not(.button):not(.nav-link):not(.drop-toggle):not(.home-news-card):not(.home-department-card):not(.sponsor-logo):not(.download-link):not(.hero-dot):not(.hero-slider-control):not(.download-preview-close):not(.download-preview-backdrop):hover,
.page a:not(.button):not(.nav-link):not(.drop-toggle):not(.home-news-card):not(.home-department-card):not(.sponsor-logo):not(.download-link):not(.hero-dot):not(.hero-slider-control):not(.download-preview-close):not(.download-preview-backdrop):focus-visible {
  color: #fff3a6;
  text-decoration-thickness: 2px;
}

.page-footer a {
  color: var(--yellow);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.page-footer a:hover,
.page-footer a:focus-visible {
  color: #fff3a6;
  text-decoration-thickness: 2px;
}

.site-nav a,
.site-nav a:hover,
.site-nav a:focus-visible {
  text-decoration: none !important;
}

/* April 2026: unified football matchcenter */
.matchcenter-switcher .matchcenter-tab {
  cursor: pointer;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #121212;
  color: var(--text-soft);
  padding: 0.55rem 0.9rem;
}

.matchcenter-switcher .matchcenter-tab:hover,
.matchcenter-switcher .matchcenter-tab:focus-visible {
  background: rgba(255, 210, 0, 0.12);
  border-color: rgba(255, 210, 0, 0.42);
  color: var(--yellow);
}

.matchcenter-switcher .matchcenter-tab.is-active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #111;
}

.bfv-grid-single-page {
  margin-top: 1rem;
}

.training-info-grid {
  margin-top: 0.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.training-info-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.95rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.34rem;
}

.training-info-label {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.72rem;
  color: var(--yellow);
}

.training-info-card strong {
  margin: 0;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.3;
  font-size: 1rem;
  color: var(--text);
}

.training-info-grid-darts .training-info-card strong {
  font-size: 0.95rem;
}

.fussball-impressions .section-title {
  margin-bottom: 0.9rem;
}

.center-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.55rem;
}

.center-carousel-viewport {
  position: relative;
  overflow: hidden;
  padding: 0.3rem 0;
}

.center-carousel-viewport::before,
.center-carousel-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 34px;
  z-index: 2;
  pointer-events: none;
}

.center-carousel-viewport::before {
  left: 0;
  background: linear-gradient(90deg, rgba(11, 11, 11, 0.95), rgba(11, 11, 11, 0));
}

.center-carousel-viewport::after {
  right: 0;
  background: linear-gradient(270deg, rgba(11, 11, 11, 0.95), rgba(11, 11, 11, 0));
}

.center-carousel-track {
  display: flex;
  gap: 0.9rem;
  transition: transform 360ms ease;
  will-change: transform;
}

.center-carousel-slide {
  margin: 0;
  flex: 0 0 clamp(220px, 30vw, 360px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  overflow: hidden;
  opacity: 0.52;
  transform: scale(0.9);
  filter: saturate(0.78);
  transition: transform 260ms ease, opacity 260ms ease, filter 260ms ease, border-color 260ms ease;
}

.center-carousel-slide.is-center {
  opacity: 1;
  transform: scale(1);
  filter: none;
  border-color: rgba(255, 210, 0, 0.6);
}

.center-carousel-slide img {
  width: 100%;
  height: clamp(180px, 24vw, 260px);
  object-fit: cover;
}

.center-carousel-nav {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.46);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.center-carousel-nav:hover,
.center-carousel-nav:focus-visible {
  border-color: rgba(255, 210, 0, 0.75);
  background: rgba(255, 210, 0, 0.2);
  color: var(--yellow);
}

@media (max-width: 760px) {
  .matchcenter-switcher {
    flex-direction: column;
    align-items: stretch;
  }

  .matchcenter-switcher .matchcenter-tab {
    width: 100%;
    justify-content: center;
  }

  .training-info-grid {
    grid-template-columns: 1fr;
  }

  .center-carousel {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .center-carousel-nav {
    width: 44px;
    height: 36px;
    margin: 0 auto;
  }

  .center-carousel-slide {
    flex-basis: 82vw;
  }
}

/* April 2026: contact map and mobile nav refinements */
.nav-toggle {
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
  min-width: 42px;
  min-height: 42px;
  justify-content: center;
  align-items: center;
  padding: 0.45rem;
  border-color: rgba(255, 210, 0, 0.35);
}

.nav-toggle-icon {
  position: relative;
  display: block;
  width: 20px;
  height: 14px;
}

.nav-toggle-icon span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 200ms ease, top 200ms ease, opacity 170ms ease;
}

.nav-toggle-icon span:nth-child(1) {
  top: 0;
}

.nav-toggle-icon span:nth-child(2) {
  top: 6px;
}

.nav-toggle-icon span:nth-child(3) {
  top: 12px;
}

.nav-toggle.is-open {
  background: rgba(255, 210, 0, 0.14);
  border-color: var(--yellow);
  color: var(--yellow);
}

.nav-toggle.is-open .nav-toggle-icon span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle-icon span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

.contact-map-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #090909;
}

.contact-map {
  width: 100%;
  height: 320px;
  background: #101010;
}

.contact-map .leaflet-tile-pane {
  filter: brightness(1.08) contrast(1.2) saturate(0.9);
}

.contact-map .leaflet-control-zoom a {
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  border-color: rgba(17, 17, 17, 0.22);
  text-decoration: none !important;
}

.contact-map .leaflet-control-zoom a:hover,
.contact-map .leaflet-control-zoom a:focus-visible {
  background: var(--yellow);
  color: #111;
}

.contact-map .leaflet-popup-content-wrapper,
.contact-map .leaflet-popup-tip {
  background: var(--yellow);
  color: #111;
  border: 1px solid rgba(17, 17, 17, 0.28);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26);
}

.contact-map .leaflet-popup-content {
  margin: 0.7rem 0.8rem;
  line-height: 1.4;
}

.contact-map .leaflet-popup-content strong {
  color: #111;
}

.contact-map .leaflet-popup-close-button {
  color: #111 !important;
}

.contact-map a {
  text-decoration: none !important;
}

.contact-map .leaflet-control-attribution {
  background: rgba(255, 255, 255, 0.88);
  color: #222;
}

.contact-map .leaflet-control-attribution a {
  color: #111 !important;
  text-decoration: underline !important;
}

@media (max-width: 1000px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  body {
    padding-top: 84px;
  }

  body.header-hidden-mobile .site-header {
    transform: translateY(calc(-100% - 8px));
    opacity: 0;
    pointer-events: none;
  }

  body.nav-open .site-header {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .site-nav .has-dropdown {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    padding: 0.46rem 0.58rem 0.62rem;
  }

  .site-nav .has-dropdown .drop-toggle {
    margin: 0 !important;
    padding: 0.08rem 0.06rem 0.4rem !important;
    border-bottom: 1px solid rgba(255, 210, 0, 0.3) !important;
    border-radius: 0 !important;
  }

  .site-nav .has-dropdown .dropdown {
    margin-top: 0.38rem !important;
    padding: 0.08rem 0 0 0.42rem !important;
    border-left: 2px solid rgba(255, 210, 0, 0.28);
  }

  .site-nav .has-dropdown .dropdown a {
    margin: 0.28rem 0 0 !important;
    background: #101010 !important;
  }

  .site-nav .nav-item:not(.has-dropdown) > .nav-link {
    background: #131313 !important;
  }

  .site-nav .nav-item:not(.has-dropdown) > .nav-link.nav-cta {
    background: var(--yellow) !important;
    color: #111 !important;
    border-color: var(--yellow) !important;
  }

  .site-nav .nav-item:not(.has-dropdown) > .nav-link.nav-cta:hover,
  .site-nav .nav-item:not(.has-dropdown) > .nav-link.nav-cta:focus-visible {
    background: #111 !important;
    color: var(--yellow) !important;
    border-color: rgba(255, 210, 0, 0.72) !important;
  }
}

@media (max-width: 760px) {
  .home-hero-content h1 {
    font-size: clamp(1.78rem, 8vw, 2.2rem) !important;
    white-space: nowrap;
    letter-spacing: 0.01em;
    padding: 0.34rem 0.58rem !important;
  }

  .center-carousel-nav {
    display: none;
  }

  .center-carousel-track {
    gap: 0.72rem;
  }

  .center-carousel-slide {
    flex-basis: 78vw;
  }

  .contact-map {
    height: 320px;
  }
}

/* April 2026: legal pages as plain flowing text */
.legal-flow-section {
  padding-top: clamp(1.1rem, 2.2vw, 1.8rem);
}

.legal-flow {
  max-width: 940px;
}

.legal-flow h2 {
  margin: 1.35rem 0 0.42rem;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  color: var(--text);
}

.legal-flow h2:first-child {
  margin-top: 0;
}

.legal-flow p {
  margin: 0.55rem 0 0;
  max-width: 92ch;
  color: var(--text-soft);
  line-height: 1.68;
}

.legal-flow .meta {
  margin-top: 1.3rem;
  color: var(--text-dim);
}
