:root {
  --black: #090b0d;
  --black-soft: #151719;
  --red: #e30613;
  --red-dark: #9e1717;
  --ink: #14171a;
  --muted: #647069;
  --paper: #f4f1ec;
  --white: #ffffff;
  --line: rgba(20, 23, 26, 0.13);
  --shadow: 0 24px 70px rgba(5, 7, 10, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(226, 45, 45, 0.05) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(9, 11, 13, 0.04) 0 1px, transparent 1px 100%);
  background-size: 42px 42px;
}

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

img {
  max-width: 100%;
  height: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.92), rgba(5, 7, 10, 0.52) 76%, rgba(5, 7, 10, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.crest {
  display: block;
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.38));
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  font-size: 0.9rem;
  font-weight: 800;
}

.main-nav a {
  padding: 9px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  border-color: var(--red);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slider {
  overflow: hidden;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  animation: heroSlide 21s infinite;
}

.hero-slide:nth-child(1) {
  animation-delay: 0s;
}

.hero-slide:nth-child(2) {
  animation-delay: 7s;
}

.hero-slide:nth-child(3) {
  animation-delay: 14s;
  object-position: center top;
}

@keyframes heroSlide {
  0%,
  100% {
    opacity: 0;
    transform: scale(1.04);
  }

  8%,
  29% {
    opacity: 1;
  }

  37% {
    opacity: 0;
    transform: scale(1.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
    opacity: 0;
    transform: none;
  }

  .hero-slide:first-child {
    opacity: 1;
  }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.96), rgba(5, 7, 10, 0.68) 48%, rgba(5, 7, 10, 0.22)),
    linear-gradient(0deg, rgba(5, 7, 10, 0.94), rgba(5, 7, 10, 0.12) 58%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 36px));
  margin: 0 clamp(18px, 7vw, 96px) 8vh;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 16px;
  padding: 0 12px;
  border-left: 5px solid var(--red);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.kicker {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .kicker {
  color: #ffd2d2;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 14px;
  font-size: clamp(3.5rem, 10vw, 8.7rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2.05rem, 4.4vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-copy {
  max-width: 860px;
  margin-bottom: 20px;
  padding-left: clamp(16px, 2vw, 28px);
  border-left: 6px solid var(--red);
  color: rgba(255, 255, 255, 0.93);
  font-size: clamp(1.16rem, 2vw, 1.58rem);
  font-weight: 760;
  line-height: 1.48;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.72);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 780px;
}

.hero-badges span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(9, 11, 13, 0.42);
  font-size: 0.82rem;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 7px;
  font-weight: 950;
}

.button {
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.button.primary {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.button.dark {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid var(--line);
}

.quick-strip.current-notes {
  grid-template-columns: repeat(3, 1fr);
}

.quick-strip a {
  position: relative;
  min-height: 128px;
  padding: 24px clamp(18px, 4vw, 44px);
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.quick-strip a::before {
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.quick-strip a:hover::before {
  transform: scaleX(1);
}

.quick-strip a:hover {
  background: var(--black-soft);
}

.quick-strip span {
  color: rgba(255, 255, 255, 0.58);
}

.quick-strip strong {
  color: var(--white);
}

.anniversary-band {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 24px clamp(18px, 7vw, 96px);
  color: var(--white);
  background:
    linear-gradient(90deg, var(--black), rgba(9, 11, 13, 0.92)),
    var(--black);
  border-top: 6px solid var(--red);
}

.anniversary-band img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.anniversary-band .kicker {
  margin-bottom: 4px;
  color: #ffb9b9;
}

.anniversary-band strong {
  display: block;
  font-size: clamp(1.1rem, 2.3vw, 2rem);
  line-height: 1.15;
}

.section-tabs {
  position: sticky;
  top: 0;
  z-index: 9;
  display: grid;
  grid-template-columns: repeat(10, minmax(max-content, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  overflow-x: auto;
}

.section-tabs a {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-right: 1px solid var(--line);
  color: var(--black);
  font-weight: 950;
  text-align: center;
}

.section-tabs a:hover {
  color: var(--white);
  background: var(--red);
}

.match-meta span,
.timeline span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.quick-strip span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
  font-weight: 800;
}

.match-meta strong,
.timeline strong {
  font-size: clamp(1rem, 1.6vw, 1.24rem);
}

.quick-strip strong {
  color: var(--white);
  font-size: clamp(1rem, 1.6vw, 1.24rem);
}

.home-hub {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  gap: 18px;
  padding: clamp(24px, 4vw, 42px) clamp(18px, 7vw, 96px);
  background: var(--black);
}

.hub-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.hub-card-large {
  min-height: 420px;
  display: grid;
  align-items: end;
  color: var(--white);
  background: var(--black-soft);
}

.hub-card-large img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hub-card-large::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.92), rgba(5, 7, 10, 0.54) 55%, rgba(5, 7, 10, 0.18)),
    linear-gradient(0deg, rgba(5, 7, 10, 0.85), transparent 66%);
  content: "";
}

.hub-card-large > div {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: clamp(24px, 5vw, 48px);
}

.hub-card span,
.hub-card-large span {
  display: block;
  margin-bottom: 10px;
  color: #ffb6b6;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hub-card-large h2 {
  max-width: 620px;
  margin-bottom: 12px;
  color: var(--white);
}

.hub-card-large p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.hub-stack {
  display: grid;
  gap: 14px;
}

.hub-card.small {
  display: grid;
  align-content: end;
  min-height: 130px;
  padding: 22px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent),
    var(--black-soft);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hub-card.small strong {
  max-width: 430px;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.08;
}

.hub-card.small.red {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent),
    var(--red-dark);
}

.section {
  padding: clamp(58px, 9vw, 112px) clamp(18px, 7vw, 96px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-heading.compact {
  margin-top: 34px;
  margin-bottom: 16px;
}

.news-section {
  background: var(--white);
}

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

.news-grid article {
  min-height: 260px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 38px rgba(5, 7, 10, 0.08);
}

.news-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.news-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  line-height: 1.06;
}

.news-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.news-grid .channel-card {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(9, 11, 13, 0.96), rgba(226, 45, 45, 0.84)),
    var(--black);
}

.news-grid .channel-card p {
  color: rgba(255, 255, 255, 0.78);
}

.inline-link,
.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 18px;
  padding: 0 14px;
  border-radius: 6px;
  color: var(--white);
  background: var(--red);
  font-weight: 950;
}

.contact-link {
  min-height: 38px;
  margin-top: 12px;
  font-size: 0.92rem;
}

.match-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.fixture {
  min-height: 330px;
  padding: clamp(28px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(226, 45, 45, 0.92), rgba(158, 23, 23, 0.78)),
    var(--red);
  color: var(--white);
}

.fixture-label {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 7px 10px;
  border-radius: 4px;
  background: rgba(5, 7, 10, 0.28);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.teams {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.teams strong {
  font-size: clamp(1.7rem, 4vw, 3.45rem);
  line-height: 1;
}

.teams span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 850;
}

.match-meta {
  display: grid;
}

.match-meta div {
  display: grid;
  align-content: center;
  min-height: 110px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}

.match-meta div:last-child {
  border-bottom: 0;
}

.match-data-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.official-widget {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 38px rgba(5, 7, 10, 0.08);
}

.official-widget h3 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.official-widget-slot {
  min-height: 170px;
  margin-top: 18px;
  border: 1px dashed rgba(9, 11, 13, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(226, 45, 45, 0.06), rgba(9, 11, 13, 0.03)),
    var(--white);
}

.data-card {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(5, 7, 10, 0.08);
}

.results-card {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(226, 45, 45, 0.96), rgba(9, 11, 13, 0.98)),
    var(--black);
}

.results-card .kicker,
.results-card .result-list span,
.results-card .result-list small {
  color: #ffd0d0;
}

.results-card .result-list li {
  border-color: rgba(255, 255, 255, 0.18);
}

.results-card .result-list strong,
.results-card .result-list small {
  color: var(--white);
}

.results-card .result-list small {
  display: inline-grid;
  width: max-content;
  min-width: 58px;
  place-items: center;
  margin-top: 3px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 950;
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.card-head .kicker {
  margin-bottom: 0;
}

.card-head a {
  min-width: max-content;
  color: var(--red);
  font-size: 0.88rem;
  font-weight: 950;
}

.fixture-list,
.result-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fixture-list li,
.result-list li {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.fixture-list li:first-child,
.result-list li:first-child {
  border-top: 0;
}

.fixture-list time,
.result-list span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

.fixture-list strong,
.result-list strong {
  color: var(--ink);
  line-height: 1.25;
}

.fixture-list span,
.result-list small {
  color: var(--muted);
  line-height: 1.45;
}

.team-section {
  background: var(--white);
}

.team-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: stretch;
}

.team-photo,
.media-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--black);
}

.team-photo {
  min-height: 420px;
  margin: 0;
}

.team-photo img,
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 10px 12px;
  border-left: 5px solid var(--red);
  border-radius: 6px;
  color: var(--white);
  background: rgba(5, 7, 10, 0.74);
  font-weight: 950;
}

.placeholder-photo {
  display: grid;
  min-height: 260px;
  place-items: center;
  border: 1px dashed rgba(226, 45, 45, 0.42);
  background:
    linear-gradient(135deg, rgba(9, 11, 13, 0.94), rgba(32, 34, 37, 0.96)),
    var(--black);
  color: var(--white);
}

.placeholder-photo img {
  width: 104px;
  height: 104px;
  object-fit: contain;
  opacity: 0.72;
}

.placeholder-photo span,
.placeholder-photo figcaption {
  align-self: start;
  padding: 0 20px 22px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 850;
}

.team-copy {
  display: grid;
  align-content: center;
  padding: clamp(26px, 4vw, 44px);
  border-left: 6px solid var(--red);
  background: var(--paper);
}

.club-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.club-facts article {
  min-height: 124px;
  padding: 20px;
  background: var(--black);
  color: var(--white);
}

.club-facts span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.club-facts strong {
  display: block;
  line-height: 1.35;
}

.squad-section {
  margin-top: 24px;
}

.squad-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.squad-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.squad-grid h4 {
  margin: 0;
  padding: 14px 16px;
  color: var(--white);
  background: var(--black);
  font-size: 1rem;
}

.squad-grid ul {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
}

.squad-grid li {
  display: grid;
  grid-template-columns: 48px 32px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 62px;
  padding: 8px 12px 8px 8px;
  background: var(--paper);
  font-weight: 850;
}

.squad-grid li img,
.squad-grid li b {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: var(--black);
}

.squad-grid li img {
  object-fit: cover;
  object-position: top center;
}

.squad-grid li b {
  display: inline-grid;
  place-items: center;
  color: var(--white);
  font-size: 0.86rem;
  letter-spacing: 0;
}

.squad-grid li span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
}

.staff-strip {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  margin-top: 14px;
  padding: 18px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(226, 45, 45, 0.94), rgba(9, 11, 13, 0.96)),
    var(--black);
}

.staff-strip span {
  color: #ffd0d0;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.staff-strip strong {
  line-height: 1.45;
}

.appearance-board {
  margin-top: 28px;
}

.appearance-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  list-style: none;
}

.appearance-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 68px;
  padding: 14px 16px;
  background: var(--paper);
}

.appearance-list li:nth-child(1) {
  grid-column: 1 / -1;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(226, 45, 45, 0.96), rgba(9, 11, 13, 0.96)),
    var(--black);
}

.appearance-list span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-weight: 950;
}

.appearance-list strong {
  line-height: 1.2;
}

.appearance-list em {
  color: var(--muted);
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

.appearance-list li:nth-child(1) em {
  color: rgba(255, 255, 255, 0.82);
}

.team-two,
.teams-overview {
  margin-top: 28px;
  padding: clamp(22px, 3vw, 32px);
  border-radius: 8px;
  background: var(--paper);
  border-left: 7px solid var(--red);
}

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

.teams-grid article {
  min-height: 130px;
  padding: 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--black);
}

.teams-grid span {
  display: block;
  margin-bottom: 8px;
  color: #ffd0d0;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.teams-grid strong,
.teams-grid small {
  display: block;
}

.teams-grid strong {
  font-size: 1.18rem;
}

.teams-grid small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}

.club-band {
  background: #eeeeea;
}

.club-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.club-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.board-panel {
  margin-top: clamp(24px, 4vw, 42px);
  padding: clamp(22px, 4vw, 34px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 54px rgba(5, 7, 10, 0.14);
}

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

.board-grid article {
  padding: 18px;
  border-left: 5px solid var(--red);
  border-radius: 6px;
  background: var(--paper);
}

.board-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.board-grid strong {
  font-size: 1rem;
  line-height: 1.35;
}

.story-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.story-panels article {
  padding: clamp(22px, 3vw, 32px);
  border-radius: 8px;
  background: var(--white);
  border-top: 6px solid var(--red);
}

.story-panels article:only-child {
  grid-column: 1 / -1;
}

.story-panels h3 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.clubhouse-feature {
  position: relative;
  overflow: hidden;
  min-height: clamp(320px, 46vw, 560px);
  margin: 34px 0 0;
  border-radius: 8px;
  background: var(--black);
  box-shadow: var(--shadow);
}

.clubhouse-feature img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.clubhouse-feature figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  max-width: 620px;
  padding: 18px 20px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(5, 7, 10, 0.76);
  backdrop-filter: blur(8px);
  line-height: 1.55;
}

.clubhouse-feature span {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 1.28rem;
  font-weight: 950;
}

.divisions-section {
  background: var(--white);
}

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

.division-grid article {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 0.58fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 46px rgba(5, 7, 10, 0.08);
}

.division-grid img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.division-grid div {
  display: grid;
  align-content: center;
  padding: clamp(20px, 3vw, 30px);
}

.division-grid span {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.division-grid h3 {
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
}

.life-heading {
  max-width: 860px;
  margin-top: clamp(28px, 5vw, 54px);
}

.life-heading h3 {
  max-width: 740px;
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
}

.life-heading p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.life-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.life-grid article {
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(226, 45, 45, 0.92), rgba(9, 11, 13, 0.96)),
    var(--black);
  box-shadow: 0 24px 70px rgba(5, 7, 10, 0.18);
}

.life-grid img {
  width: 100%;
  height: clamp(240px, 24vw, 360px);
  object-fit: cover;
}

.life-grid div {
  padding: clamp(22px, 3vw, 34px);
}

.life-grid span {
  display: block;
  margin-bottom: 8px;
  color: #ffd0d0;
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.life-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.02;
}

.life-grid p {
  color: rgba(255, 255, 255, 0.82);
}

.life-grid ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.life-grid li {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 850;
}

.life-wide {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(240px, 0.42fr);
  overflow: hidden;
  margin: 16px 0 0;
  border-radius: 8px;
  background: var(--black);
  box-shadow: 0 18px 46px rgba(5, 7, 10, 0.12);
}

.life-wide img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.life-wide figcaption {
  display: grid;
  align-content: center;
  margin: 0;
  padding: clamp(24px, 4vw, 42px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(9, 11, 13, 0.96), rgba(226, 45, 45, 0.8)),
    var(--black);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 850;
  line-height: 1.35;
}

.rise-section {
  background: var(--white);
}

.rise-graphic {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(226, 45, 45, 0.08), rgba(9, 11, 13, 0.04)),
    var(--paper);
  box-shadow: var(--shadow);
}

.rise-archive {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  margin: 0 0 16px;
  border-radius: 8px;
  background: var(--black);
}

.rise-archive img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
}

.rise-archive figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 11px;
  border-radius: 6px;
  color: var(--white);
  background: rgba(5, 7, 10, 0.72);
  font-weight: 850;
}

.rise-track {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
  min-height: 360px;
}

.league-history {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(5, 7, 10, 0.08);
}

.league-history-head,
.league-history li {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.league-history-head {
  padding: 14px 18px;
  color: var(--white);
  background: var(--black);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.league-history ol {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.league-history li {
  padding: 14px 18px;
  border-top: 1px solid var(--line);
}

.league-history li:nth-child(4),
.league-history li:nth-child(12),
.league-history li:nth-child(14) {
  border-left: 6px solid var(--red);
}

.league-history time {
  color: var(--muted);
  font-weight: 950;
}

.league-history strong {
  line-height: 1.35;
}

.league-history p {
  margin: 0;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  background: var(--paper);
  font-size: 0.92rem;
}

.rise-step {
  display: grid;
  align-content: end;
  min-height: 150px;
  padding: 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--black);
  box-shadow: 0 18px 44px rgba(5, 7, 10, 0.18);
}

.rise-step.level-1 {
  min-height: 145px;
}

.rise-step.level-2 {
  min-height: 205px;
}

.rise-step.level-3 {
  min-height: 265px;
}

.rise-step.level-4 {
  min-height: 330px;
  background:
    linear-gradient(145deg, rgba(226, 45, 45, 0.92), rgba(158, 23, 23, 0.95)),
    var(--red);
}

.rise-step span {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.rise-step strong {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.04;
}

.rise-step small {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.rise-line {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 35%;
  height: 5px;
  background: linear-gradient(90deg, var(--black), var(--red));
  transform: rotate(-10deg);
  transform-origin: left center;
  opacity: 0.2;
}

.history {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: clamp(30px, 6vw, 72px);
  background:
    radial-gradient(circle at 12% 20%, rgba(226, 45, 45, 0.26), transparent 28%),
    linear-gradient(135deg, var(--black), #1a1111);
  color: var(--white);
}

.history p {
  color: rgba(255, 255, 255, 0.72);
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.timeline span {
  color: #ffb6b6;
}

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

.media-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: minmax(220px, 1fr);
  gap: 14px;
}

.media-card {
  position: relative;
  min-height: 230px;
  margin: 0;
}

.media-card.large {
  grid-row: span 2;
}

.media-card figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 9px 11px;
  border-radius: 6px;
  color: var(--white);
  background: rgba(5, 7, 10, 0.72);
  font-weight: 850;
}

.sponsor-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(9, 11, 13, 0.98), rgba(37, 11, 11, 0.96)),
    var(--black);
}

.sponsor-section .section-heading p:not(.kicker) {
  color: rgba(255, 255, 255, 0.72);
}

.sponsor-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(226, 45, 45, 0.22), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.04);
}

.sponsor-hero span,
.sponsor-grid span {
  display: block;
  margin-bottom: 10px;
  color: #ffb9b9;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.sponsor-hero strong {
  display: block;
  max-width: 760px;
  font-size: clamp(1.8rem, 4vw, 4rem);
  line-height: 0.98;
}

.sponsor-hero p {
  max-width: 780px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.sponsor-grid article {
  min-height: 220px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.sponsor-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.05;
}

.sponsor-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(32px, 7vw, 82px);
  background:
    linear-gradient(135deg, rgba(226, 45, 45, 0.08), rgba(9, 11, 13, 0.04)),
    var(--white);
}

.contact-intro {
  display: grid;
  align-content: center;
  grid-column: 1 / -1;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.contact-cards article {
  padding: 16px 18px;
  border-left: 5px solid var(--red);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(5, 7, 10, 0.08);
}

.contact-cards span {
  display: block;
  margin-bottom: 4px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-cards strong {
  line-height: 1.35;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

button {
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: var(--red);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.legal-section {
  background: var(--white);
}

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

.legal-grid article {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.legal-grid h3 {
  margin-bottom: 16px;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.legal-grid dl,
.legal-grid p {
  margin: 0;
  color: var(--muted);
}

.legal-grid dl {
  display: grid;
  gap: 12px;
}

.legal-grid dt {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.legal-grid dd {
  margin: 3px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.legal-grid p + p {
  margin-top: 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 7vw, 96px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--black);
}

.site-footer span:first-child {
  color: var(--white);
  font-weight: 950;
}

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

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

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

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

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

@media (max-width: 860px) {
  .quick-strip,
  .home-hub,
  .match-panel,
  .match-data-grid,
  .team-layout,
  .division-grid,
  .life-wide,
  .story-panels,
  .history,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .section-tabs,
  .teams-grid,
  .contact-cards,
  .sponsor-grid,
  .legal-grid,
  .life-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .appearance-list li:nth-child(1) {
    grid-column: auto;
  }

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

  .rise-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    min-height: auto;
  }

  .rise-step,
  .rise-step.level-1,
  .rise-step.level-2,
  .rise-step.level-3,
  .rise-step.level-4 {
    min-height: 180px;
  }

  .rise-line {
    display: none;
  }

  .league-history-head,
  .league-history li {
    grid-template-columns: 100px minmax(0, 1fr);
  }
}

@media (max-width: 620px) {
  .brand small {
    display: none;
  }

  .crest {
    width: 44px;
    height: 44px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 7vh;
  }

  .hero-kicker {
    font-size: 0.7rem;
  }

  h1 {
    font-size: clamp(3.35rem, 17vw, 5.8rem);
  }

  .hero-copy {
    padding-left: 14px;
    font-size: 1rem;
  }

  .hero-badges {
    gap: 6px;
  }

  .hero-badges span {
    min-height: 30px;
    font-size: 0.74rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .quick-strip a,
  .home-hub,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .quick-strip a {
    min-height: 104px;
  }

  .hub-card-large {
    min-height: 380px;
  }

  .hub-card-large > div {
    padding: 22px;
  }

  .club-grid,
  .club-facts,
  .squad-grid,
  .news-grid,
  .board-grid,
  .rise-track,
  .media-grid,
  .section-tabs,
  .teams-grid,
  .contact-cards,
  .sponsor-grid,
  .legal-grid,
  .life-grid {
    grid-template-columns: 1fr;
  }

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

  .media-card.large {
    grid-row: auto;
  }

.site-footer {
    display: grid;
  }
}

.section-heading h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.section-actions {
  margin-top: 24px;
}

.venue-grid,
.contact-grid,
.sponsor-options {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
}

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

.sponsor-options {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: stretch;
}

.venue-grid figure,
.team-photo {
  margin: 0;
}

.venue-grid img,
.team-photo img {
  display: block;
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.contact-card,
.sponsor-options article {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 38px rgba(5, 7, 10, 0.08);
}

.contact-card span,
.sponsor-options span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card strong,
.sponsor-options h2 {
  display: block;
  margin: 0 0 14px;
  color: var(--black);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.1;
}

.contact-card p,
.sponsor-options p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
}

.official-widget h2 {
  margin-top: 0;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

@media (max-width: 900px) {
  .venue-grid,
  .contact-grid,
  .sponsor-options {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Modernisierung 2026: Typografie, Micro-Interaktionen, Kader, Mobile-Nav
   ========================================================================== */

@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/space-grotesk-latin.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

::selection {
  color: var(--white);
  background: var(--red);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

h1,
h2,
h3,
h4,
.brand strong,
.button,
.inline-link {
  font-family: var(--font-display);
}

h1 {
  font-weight: 700;
  letter-spacing: -0.025em;
}

h2,
h3 {
  font-weight: 700;
  letter-spacing: -0.015em;
}

.kicker,
.hero-kicker {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.16em;
}

.kicker::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 3px;
  margin-right: 10px;
  vertical-align: 0.24em;
  background: var(--red);
}

.card-head .kicker::before {
  width: 14px;
}

.section {
  padding: clamp(72px, 10vw, 140px) clamp(20px, 7vw, 110px);
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading p:not(.kicker) {
  font-size: 1.06rem;
}

/* Header: kompakter, fester Zustand nach dem Scrollen */
.site-header {
  transition:
    background-color 0.35s ease,
    box-shadow 0.35s ease,
    padding 0.35s ease;
}

.site-header.scrolled {
  background: rgba(9, 11, 13, 0.97);
  box-shadow: 0 12px 34px rgba(5, 7, 10, 0.35);
  padding-top: 10px;
  padding-bottom: 10px;
}

.main-nav a {
  position: relative;
  border-bottom: 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-out);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

/* Hero: plakative Headline */
.hero h1 {
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

/* Buttons und Links: weiche Hover-Zustände */
.button,
.inline-link,
button {
  transition:
    transform 0.2s var(--ease-out),
    box-shadow 0.2s var(--ease-out),
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.button:hover,
.inline-link:hover,
button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(227, 6, 19, 0.24);
}

.button.primary:hover,
.inline-link:hover,
button:hover {
  background: #c00511;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 30px rgba(5, 7, 10, 0.28);
}

.button.dark:hover {
  background: var(--black-soft);
  box-shadow: 0 14px 30px rgba(5, 7, 10, 0.28);
}

/* Karten: dezentes Anheben */
.news-grid article,
.data-card,
.contact-card,
.sponsor-options article,
.official-widget,
.board-grid article,
.hub-card.small,
.club-facts article,
.teams-grid article,
.timeline article {
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    border-color 0.3s ease;
}

.news-grid article:hover,
.data-card:hover,
.contact-card:hover,
.sponsor-options article:hover,
.official-widget:hover,
.board-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(5, 7, 10, 0.16);
}

.hub-card.small:hover,
.club-facts article:hover,
.teams-grid article:hover,
.timeline article:hover {
  transform: translateY(-4px);
  border-color: rgba(227, 6, 19, 0.55);
}

/* Bilder: ruhiger Zoom */
.venue-grid figure {
  overflow: hidden;
  border-radius: 8px;
}

.venue-grid img,
.team-photo img,
.hub-card-large img {
  transition: transform 0.8s var(--ease-out);
}

.venue-grid figure:hover img,
.team-photo:hover img,
.hub-card-large:hover img {
  transform: scale(1.045);
}

.site-footer {
  border-top: 5px solid var(--red);
}

/* Spielbetrieb: Fallback-Hinweis und Listen */
[data-matches-empty] {
  margin: 0;
  padding: 18px;
  border: 1px dashed rgba(9, 11, 13, 0.25);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.6);
}

.fixture-list .match-meta-line,
.result-list .match-meta-line {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

.fixture-list small,
.result-list small {
  color: var(--muted);
}

/* Kader-Grid */
.player-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 14px;
}

.player-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 8px;
  background: var(--black);
  box-shadow: 0 14px 34px rgba(5, 7, 10, 0.1);
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out);
}

.player-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 56px rgba(5, 7, 10, 0.22);
}

.player-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.92);
  transition:
    transform 0.6s var(--ease-out),
    filter 0.6s var(--ease-out);
}

.player-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.05);
}

.player-name {
  display: grid;
  gap: 5px;
  align-content: start;
  padding: 12px 14px 14px;
  border-top: 3px solid var(--red);
  color: var(--white);
}

.player-name strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.15;
}

.player-role {
  justify-self: start;
  padding: 3px 9px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Scroll-Reveal (nur mit aktivem JS) */
html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}

/* Mobile Navigation: Hamburger + Vollbild-Overlay */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 60;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  min-height: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(9, 11, 13, 0.4);
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--white);
  transition:
    transform 0.3s var(--ease-out),
    opacity 0.2s ease;
}

.nav-toggle span:nth-child(1) {
  top: 15px;
}

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

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

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-header {
    position: fixed;
    display: flex;
    align-items: center;
    padding: 12px 16px;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    padding: 96px clamp(24px, 8vw, 56px) 40px;
    background:
      radial-gradient(circle at 85% 10%, rgba(227, 6, 19, 0.32), transparent 44%),
      rgba(9, 11, 13, 0.97);
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    transition:
      opacity 0.35s ease,
      visibility 0.35s ease;
  }

  body.nav-open .main-nav {
    opacity: 1;
    visibility: visible;
  }

  body.nav-open {
    overflow: hidden;
  }

  .main-nav a {
    padding: 10px 0;
    opacity: 0;
    transform: translateY(16px);
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    transition:
      transform 0.45s var(--ease-out),
      opacity 0.45s var(--ease-out);
  }

  .main-nav a::after {
    bottom: 6px;
    height: 3px;
  }

  body.nav-open .main-nav a {
    opacity: 1;
    transform: none;
  }

  body.nav-open .main-nav a:nth-child(1) { transition-delay: 0.04s; }
  body.nav-open .main-nav a:nth-child(2) { transition-delay: 0.08s; }
  body.nav-open .main-nav a:nth-child(3) { transition-delay: 0.12s; }
  body.nav-open .main-nav a:nth-child(4) { transition-delay: 0.16s; }
  body.nav-open .main-nav a:nth-child(5) { transition-delay: 0.2s; }
  body.nav-open .main-nav a:nth-child(6) { transition-delay: 0.24s; }
  body.nav-open .main-nav a:nth-child(7) { transition-delay: 0.28s; }
  body.nav-open .main-nav a:nth-child(8) { transition-delay: 0.32s; }
  body.nav-open .main-nav a:nth-child(9) { transition-delay: 0.36s; }
  body.nav-open .main-nav a:nth-child(10) { transition-delay: 0.4s; }
}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(2.6rem, 15vw, 5.8rem);
  }

  .section-heading h1 {
    font-size: clamp(2.2rem, 11vw, 5.2rem);
  }
}

/* ==========================================================================
   Zwei-Klick-Widgets (BFV/FuPa)
   ========================================================================== */

[data-consent-ui] {
  display: grid;
  gap: 14px;
  justify-items: start;
  margin-top: 18px;
  padding: 20px;
  border: 1px dashed rgba(227, 6, 19, 0.4);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(227, 6, 19, 0.05), rgba(9, 11, 13, 0.03)),
    var(--white);
}

.consent-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.consent-reset {
  min-height: 0;
  margin-top: 10px;
  padding: 6px 0;
  border: 0;
  color: var(--muted);
  background: none;
  font-size: 0.8rem;
  text-decoration: underline;
  cursor: pointer;
}

.consent-reset:hover {
  color: var(--red);
  background: none;
  transform: none;
  box-shadow: none;
}

/* ==========================================================================
   Trend-Elemente: Progressbar, Marquee, Stats, Watermarks, Hero-Kinetik
   ========================================================================== */

/* Scroll-Fortschrittsbalken */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

/* Laufband-Ticker */
.marquee-band {
  overflow: hidden;
  padding: 18px 0;
  border-top: 6px solid var(--red);
  color: var(--white);
  background: var(--black);
}

.marquee-track {
  display: flex;
  gap: 34px;
  align-items: center;
  width: max-content;
  animation: marqueeScroll 26s linear infinite;
}

.marquee-band:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track span.dot {
  color: var(--red);
}

.marquee-track span.outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.65);
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Verein in Zahlen (Count-up) */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border-bottom: 6px solid var(--red);
}

.stats-band article {
  display: grid;
  gap: 4px;
  align-content: center;
  min-height: 170px;
  padding: 28px clamp(18px, 3vw, 40px);
  color: var(--white);
  background: var(--black);
}

.stats-band [data-count] {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.stats-band [data-count]::after {
  content: attr(data-suffix);
  color: var(--red);
}

.stats-band small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

  .stats-band article {
    min-height: 130px;
  }
}

/* Riesige Outline-Watermarks hinter Sektionen */
.section[data-watermark] {
  position: relative;
  overflow: hidden;
}

.section[data-watermark]::before {
  content: attr(data-watermark);
  position: absolute;
  top: clamp(8px, 2vw, 28px);
  right: -0.06em;
  z-index: 0;
  color: transparent;
  -webkit-text-stroke: 2px rgba(9, 11, 13, 0.07);
  font-family: var(--font-display);
  font-size: clamp(5rem, 17vw, 15rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.section[data-watermark] > * {
  position: relative;
  z-index: 1;
}

/* Hero: kinetischer Einstieg beim Laden */
html.js .hero-content > * {
  opacity: 0;
  transform: translateY(34px);
  animation: heroRise 0.9s var(--ease-out) forwards;
}

html.js .hero-content > *:nth-child(1) { animation-delay: 0.1s; }
html.js .hero-content > *:nth-child(2) { animation-delay: 0.22s; }
html.js .hero-content > *:nth-child(3) { animation-delay: 0.38s; }
html.js .hero-content > *:nth-child(4) { animation-delay: 0.52s; }
html.js .hero-content > *:nth-child(5) { animation-delay: 0.66s; }

@keyframes heroRise {
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-slider,
.hero-content {
  will-change: transform;
}

/* Mobile: horizontale Swipe-Reihen mit Scroll-Snap (App-Feeling) */
@media (max-width: 620px) {
  .news-grid,
  .player-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 14px;
    margin-right: calc(-1 * clamp(16px, 7vw, 96px));
    padding-right: clamp(16px, 7vw, 96px);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .news-grid article {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }

  .player-grid .player-card {
    flex: 0 0 46%;
    scroll-snap-align: start;
  }

  .news-grid::-webkit-scrollbar,
  .player-grid::-webkit-scrollbar {
    height: 4px;
  }

  .news-grid::-webkit-scrollbar-thumb,
  .player-grid::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 999px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
  }

  html.js .hero-content > * {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .scroll-progress {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.js .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .site-header,
  .main-nav,
  .main-nav a,
  .main-nav a::after,
  .nav-toggle span,
  .player-card,
  .player-card img,
  .button,
  .inline-link,
  .news-grid article,
  .data-card,
  .contact-card,
  .venue-grid img,
  .team-photo img,
  .hub-card-large img {
    transition: none !important;
  }
}

/* ==========================================================================
   Dark-Athletic-Designsystem
   Durchgehend dunkle Flächen, rote Glow-Akzente, Grain, Pill-Buttons.
   ========================================================================== */

:root {
  --bg: #0a0c0f;
  --surface: #14171c;
  --surface-2: #1a1e24;
  --line-dark: rgba(255, 255, 255, 0.09);
  --ink: #f2f4f6;
  --muted: #a3acb4;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  --radius: 16px;
}

html {
  scrollbar-color: #343a42 var(--bg);
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  border: 3px solid var(--bg);
  border-radius: 999px;
  background: #343a42;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--red);
}

body {
  color: var(--ink);
  background: var(--bg);
}

/* Rote Atmosphären-Glows statt Papier-Raster */
body::before {
  background:
    radial-gradient(900px 620px at 88% -6%, rgba(227, 6, 19, 0.14), transparent 62%),
    radial-gradient(820px 700px at -12% 108%, rgba(227, 6, 19, 0.09), transparent 60%);
  background-size: auto;
}

/* Feine Grain-Textur über allem */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Sektionshintergründe: eine durchgehende dunkle Bühne */
.news-section,
.team-section,
.legal-section,
.club-band,
.media-section,
.rise-section,
.divisions-section,
.home-hub {
  background: transparent;
}

/* Karten: dunkle Glas-Flächen mit feiner Linie */
.news-grid article,
.data-card,
.official-widget,
.board-grid article,
.contact-card,
.sponsor-options article,
.legal-grid article,
.team-copy,
.team-two,
.teams-overview,
.contact-form,
.board-panel,
.match-panel,
.league-history,
.division-grid article,
.club-grid article {
  border: 1px solid var(--line-dark);
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.news-grid article:hover,
.data-card:hover,
.contact-card:hover,
.sponsor-options article:hover,
.official-widget:hover {
  border-color: rgba(227, 6, 19, 0.5);
}

.teams-grid article,
.club-facts article {
  border: 1px solid var(--line-dark);
  background: var(--surface);
}

.contact-card strong,
.sponsor-options h2 {
  color: var(--ink);
}

.legal-grid dd,
.fixture-list strong,
.result-list strong {
  color: var(--ink);
}

[data-matches-empty] {
  border-color: rgba(255, 255, 255, 0.18);
  background: var(--surface-2);
  color: var(--muted);
}

[data-consent-ui] {
  background:
    linear-gradient(135deg, rgba(227, 6, 19, 0.08), transparent),
    var(--surface-2);
  border-color: rgba(227, 6, 19, 0.4);
}

input,
select,
textarea {
  border-color: var(--line-dark);
  color: var(--ink);
  background: var(--surface-2);
}

label {
  color: var(--ink);
}

/* Watermark auf Dunkel */
.section[data-watermark]::before {
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.06);
}

/* Radien: weicher, moderner */
.news-grid article,
.data-card,
.official-widget,
.contact-card,
.sponsor-options article,
.legal-grid article,
.player-card,
.hub-card,
.team-photo,
.venue-grid figure,
.venue-grid img,
.team-photo img,
.club-facts,
.teams-grid article,
.timeline article,
.board-grid article,
.team-copy,
.media-card,
.clubhouse-feature,
[data-consent-ui],
[data-matches-empty] {
  border-radius: var(--radius);
}

/* Buttons und Chips als Pills */
.button,
.inline-link,
button,
.contact-link {
  border-radius: 999px;
}

.nav-toggle {
  border-radius: 12px;
}

/* Bänder sauber abgrenzen */
.marquee-band {
  border-bottom: 1px solid var(--line-dark);
}

.stats-band article {
  background: var(--surface);
}

.quick-strip {
  background: var(--line-dark);
}

.quick-strip a {
  background: var(--surface);
}

.quick-strip a:hover {
  background: var(--surface-2);
}

.hub-card-large,
.hub-card.small {
  border: 1px solid var(--line-dark);
}

.player-card {
  border: 1px solid var(--line-dark);
  background: var(--surface);
}

.player-name {
  background: var(--surface);
}

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line-dark);
}

/* Header-Logo mit dezentem Glow */
.crest {
  filter: drop-shadow(0 0 14px rgba(227, 6, 19, 0.35));
}

/* Hero auf Mobile: nur das erste Bild, keine Slider-Animation */
@media (max-width: 620px) {
  .hero-slide {
    animation: none;
    opacity: 0;
  }

  .hero-slide:first-child {
    opacity: 1;
    transform: none;
  }
}

/* Vereinslogo im Titelbild */
.hero-crest {
  display: block;
  width: clamp(72px, 9vw, 110px);
  height: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 22px rgba(227, 6, 19, 0.45)) drop-shadow(0 10px 24px rgba(0, 0, 0, 0.5));
}


/* Namensliste (z. B. Kader 2. Mannschaft) */
.name-list {
  columns: 3 180px;
  column-gap: 24px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.name-list li {
  padding: 7px 0;
  border-bottom: 1px solid var(--line-dark);
  font-weight: 700;
  break-inside: avoid;
}

/* Kader: Positionsgruppen und Nummern */
.position-kicker {
  margin: 34px 0 14px;
}

.position-kicker:first-of-type {
  margin-top: 0;
}

.player-pos {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.player-photo-fallback {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(80% 60% at 50% 30%, rgba(227, 6, 19, 0.16), transparent 70%),
    var(--surface-2);
}

.player-photo-fallback img {
  width: 42%;
  height: auto;
  opacity: 0.55;
}

/* Sponsoring-Aufruf (Startseite) */
.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 0 clamp(20px, 7vw, 110px);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(227, 6, 19, 0.45);
  border-radius: var(--radius);
  background:
    radial-gradient(90% 140% at 0% 0%, rgba(227, 6, 19, 0.28), transparent 55%),
    var(--surface);
}

.cta-band h2 {
  margin-bottom: 8px;
}

.cta-band p:last-child {
  margin: 0;
}

@media (max-width: 860px) {
  .cta-band {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Struktur-Umbau: großer Footer, Kader-Gesichter, Sparten-Kacheln
   ========================================================================== */

/* Kader-Teaser: Gesichter-Reihe */
.face-row {
  display: flex;
  gap: clamp(8px, 1.4vw, 18px);
  align-items: stretch;
}

.face-row a {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: var(--surface);
  transition:
    transform 0.35s var(--ease-out),
    border-color 0.35s ease,
    box-shadow 0.35s var(--ease-out);
}

.face-row a:nth-child(odd) {
  transform: rotate(-2.2deg) translateY(6px);
}

.face-row a:nth-child(even) {
  transform: rotate(2.2deg);
}

.face-row a:hover {
  transform: rotate(0deg) translateY(-6px) scale(1.04);
  border-color: rgba(227, 6, 19, 0.6);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.face-row img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
}

@media (max-width: 860px) {
  .face-row {
    flex-wrap: wrap;
  }

  .face-row a {
    flex: 1 1 21%;
  }
}

/* Sparten-Kacheln */
.sparten-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.sparte-tile {
  position: relative;
  display: block;
  min-height: clamp(220px, 26vw, 340px);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--surface);
}

.sparte-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
  transition:
    transform 0.7s var(--ease-out),
    filter 0.7s var(--ease-out);
}

.sparte-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 7, 10, 0.88), rgba(5, 7, 10, 0.05) 62%);
  transition: background 0.4s ease;
}

.sparte-tile strong {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.sparte-tile strong::after {
  content: "";
  display: block;
  width: 26px;
  height: 3px;
  margin-top: 8px;
  background: var(--red);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.sparte-tile:hover img {
  transform: scale(1.07);
  filter: saturate(1.05);
}

.sparte-tile:hover strong::after {
  transform: scaleX(2.2);
}

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

  .sparte-tile:first-child {
    grid-column: 1 / -1;
  }
}

/* Großer Footer */
.site-footer-big {
  margin-top: clamp(40px, 7vw, 90px);
  padding: clamp(48px, 7vw, 90px) clamp(20px, 7vw, 110px) 28px;
  border-top: 1px solid var(--line-dark);
  color: var(--ink);
  background:
    radial-gradient(700px 400px at 90% 0%, rgba(227, 6, 19, 0.12), transparent 60%),
    #07080a;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 16px rgba(227, 6, 19, 0.4));
}

.footer-brand strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.footer-nav a {
  padding: 4px 0;
  color: var(--muted);
  font-family: var(--font-display);
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s var(--ease-out);
}

.footer-nav a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-cta {
  display: grid;
  gap: 10px;
  justify-items: stretch;
}

.footer-wordmark {
  margin: clamp(36px, 6vw, 70px) 0 0;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.14);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8.4vw, 8rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: clamp(24px, 4vw, 40px);
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-meta a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-meta a:hover {
  color: var(--white);
}

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

  .footer-wordmark {
    font-size: clamp(1.6rem, 9vw, 4rem);
  }
}

