:root {
  --red: #e21f2f;
  --red-dark: #a90d1b;
  --red-soft: #fff0f2;
  --blue: #1744bd;
  --blue-bright: #1e55df;
  --blue-deep: #071a4d;
  --blue-ink: #0a1d52;
  --blue-soft: #edf2ff;
  --ink: #0b1430;
  --ink-soft: #40506f;
  --paper: #f5f7fc;
  --white: #ffffff;
  --line: rgba(11, 20, 48, 0.13);
  --line-light: rgba(255, 255, 255, 0.19);
  --shadow-sm: 0 16px 36px rgba(8, 25, 72, 0.10);
  --shadow-md: 0 24px 70px rgba(8, 25, 72, 0.16);
  --shadow-lg: 0 34px 100px rgba(2, 12, 42, 0.28);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shell: 1240px;
  --header-height: 92px;
  --display: "Arial Black", "Arial Narrow", "Segoe UI", sans-serif;
  --body: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

button {
  cursor: pointer;
}

svg {
  display: block;
  width: 1.2em;
  height: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

[hidden] {
  display: none !important;
}

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

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

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

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

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

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--white);
  background: linear-gradient(180deg, rgba(3, 12, 38, 0.72), rgba(3, 12, 38, 0));
  transition: height 0.3s ease, color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled,
.site-header.legal-header {
  height: 78px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(6, 22, 65, 0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 28px;
}

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

.brand-mark {
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: none;
  transition: width 0.3s ease, height 0.3s ease;
}

.site-header.is-scrolled .brand-mark,
.site-header.legal-header .brand-mark {
  width: 54px;
  height: 54px;
}

.brand-copy {
  display: grid;
  gap: 0;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 1.04rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.brand-copy span {
  margin-top: 3px;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.82;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  margin-left: auto;
  font-size: 0.92rem;
  font-weight: 750;
}

.main-nav > a:not(.nav-shop) {
  position: relative;
  padding: 10px 0;
}

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

.main-nav > a:not(.nav-shop):hover::after,
.main-nav > a:not(.nav-shop):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-shop {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 17px;
  color: var(--white);
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(226, 31, 47, 0.26);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav-shop:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
}

.nav-shop svg {
  width: 18px;
  height: 18px;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.nav-toggle > span:not(.sr-only) {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}

.nav-toggle > span:nth-child(2) { top: 15px; }
.nav-toggle > span:nth-child(3) { top: 22px; }
.nav-toggle > span:nth-child(4) { top: 29px; }

.nav-toggle[aria-expanded="true"] > span:nth-child(2) {
  top: 22px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(4) {
  top: 22px;
  transform: rotate(-45deg);
}

/* General typography and controls */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span:first-child {
  display: inline-block;
  width: 32px;
  height: 3px;
  background: var(--red);
  border-radius: 99px;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.82);
}

.eyebrow-light > span:first-child {
  background: var(--red);
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h2 {
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: clamp(2.15rem, 4.25vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

h3 {
  font-family: var(--display);
  letter-spacing: -0.04em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 820;
  line-height: 1;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.button svg {
  width: 18px;
  height: 18px;
}

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

.button-red {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 34px rgba(226, 31, 47, 0.3);
}

.button-red:hover {
  background: var(--red-dark);
  box-shadow: 0 19px 40px rgba(171, 13, 28, 0.32);
}

.button-blue {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(23, 68, 189, 0.27);
}

.button-blue:hover {
  background: var(--blue-deep);
}

.button-white {
  color: var(--blue-deep);
  background: var(--white);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  color: var(--blue-deep);
  background: var(--white);
  border-color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  font-weight: 800;
  border-bottom: 2px solid var(--red);
}

.text-link svg {
  width: 18px;
  transition: transform 0.2s ease;
}

.text-link:hover svg {
  transform: translateX(5px);
}

.text-link-light {
  color: var(--white);
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: 790px;
  height: min(920px, 100svh);
  overflow: hidden;
  color: var(--white);
  background: var(--blue-deep);
}

.hero-media,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image:
    linear-gradient(90deg, rgba(3, 12, 42, 0.96) 0%, rgba(4, 17, 58, 0.84) 36%, rgba(4, 19, 61, 0.36) 67%, rgba(4, 18, 55, 0.23) 100%),
    linear-gradient(180deg, rgba(2, 10, 34, 0.42) 0%, rgba(2, 12, 42, 0.08) 55%, rgba(2, 11, 37, 0.70) 100%),
    url("assets/hero-verein.webp");
  background-position: center, center, center 56%;
  background-size: cover;
  transform: scale(1.015);
}

.hero-grid {
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, black 0%, transparent 69%);
}

.hero::before {
  position: absolute;
  z-index: 1;
  content: "";
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  background: linear-gradient(180deg, var(--red) 0 55%, var(--blue-bright) 55% 100%);
}

.hero::after {
  position: absolute;
  z-index: 1;
  content: "";
  right: -130px;
  bottom: -300px;
  width: 560px;
  height: 680px;
  border: 80px solid rgba(226, 31, 47, 0.13);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  align-items: center;
  gap: 80px;
  padding-top: var(--header-height);
}

.hero-copy {
  max-width: 790px;
  padding: 58px 0 76px;
}

.hero h1 {
  margin: 0 0 26px;
  font-family: var(--display);
  font-size: clamp(3.7rem, 6.8vw, 6.9rem);
  line-height: 0.88;
  letter-spacing: -0.068em;
  text-transform: uppercase;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
}

.hero h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.78);
  text-stroke: 2px rgba(255, 255, 255, 0.78);
}

.hero-lead {
  max-width: 630px;
  margin-bottom: 31px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 1.75vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 42px;
}

.hero-facts {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 600px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-facts li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 17px 26px 0 0;
  margin-right: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.hero-facts li:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: 0;
}

.hero-facts strong {
  color: var(--white);
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1;
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-badge {
  position: relative;
  display: grid;
  justify-items: center;
  align-self: center;
  padding: 38px 28px 32px;
  text-align: center;
  background: rgba(5, 24, 75, 0.40);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transform: rotate(2deg);
}

.hero-badge::before {
  position: absolute;
  content: "";
  top: -12px;
  right: 30px;
  width: 74px;
  height: 24px;
  background: var(--red);
  border-radius: 999px;
  transform: rotate(-9deg);
}

.hero-badge-ring {
  display: grid;
  place-items: center;
  width: 230px;
  height: 230px;
  margin-bottom: 25px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-badge-ring img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  filter: none;
}

.hero-badge p {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero-badge p strong {
  display: block;
  margin-top: 4px;
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.hero-badge > span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
  font-weight: 700;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 48px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue svg {
  width: 24px;
  height: 24px;
  animation: cue 1.8s ease-in-out infinite;
}

@keyframes cue {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}

/* Department section */
.departments {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 5%, rgba(23, 68, 189, 0.08), transparent 30%),
    linear-gradient(180deg, var(--white), var(--paper));
}

.departments::before {
  position: absolute;
  content: "GERMANIA";
  top: 42px;
  right: -35px;
  color: rgba(7, 26, 77, 0.035);
  font-family: var(--display);
  font-size: clamp(7rem, 14vw, 13rem);
  line-height: 1;
  letter-spacing: -0.08em;
  white-space: nowrap;
  pointer-events: none;
}

.section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 54px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 5px;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.department-grid {
  display: grid;
  gap: 20px;
}

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

.department-card {
  position: relative;
  display: block;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-deep);
  isolation: isolate;
  box-shadow: var(--shadow-sm);
}

.department-card img,
.department-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.department-card img {
  z-index: -2;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s ease;
}

.department-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(3, 12, 40, 0.08), rgba(3, 13, 42, 0.84) 88%),
    linear-gradient(90deg, rgba(6, 29, 92, 0.6), transparent 60%);
}

.department-card::after {
  position: absolute;
  z-index: 2;
  content: "";
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red) 0 50%, var(--blue-bright) 50% 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.department-card:hover img,
.department-card:focus-visible img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.03);
}

.department-card:hover::after,
.department-card:focus-visible::after {
  transform: scaleX(1);
}

.department-card-featured {
  min-height: 490px;
  border-radius: var(--radius-md);
}

.department-number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: -0.04em;
}

.department-content {
  position: absolute;
  right: 32px;
  bottom: 32px;
  left: 32px;
  display: grid;
}

.department-kicker {
  width: max-content;
  margin-bottom: 9px;
  padding: 5px 9px;
  color: var(--white);
  background: var(--red);
  border-radius: 99px;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.department-card-featured .department-content > strong {
  font-family: var(--display);
  font-size: clamp(1.95rem, 3.4vw, 3.15rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.department-card-featured .department-content > span:not(.department-kicker):not(.department-link) {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.department-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 23px;
  padding-top: 17px;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.82rem;
  font-weight: 800;
}

.department-link svg {
  width: 22px;
  height: 22px;
  transition: transform 0.25s ease;
}

.department-card:hover .department-link svg {
  transform: translateX(6px);
}

.more-departments {
  margin-top: 82px;
}

.more-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.72fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 30px;
}

.more-heading .eyebrow {
  margin-bottom: 7px;
}

.more-heading h3 {
  margin: 0;
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  line-height: 1;
  text-transform: uppercase;
}

.more-heading > p {
  max-width: 520px;
  margin: 0 0 2px;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

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

.department-info-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.88fr) minmax(0, 1.12fr);
  min-height: 385px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.department-info-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-deep);
  isolation: isolate;
}

.department-info-media img,
.department-info-media .department-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.department-info-media img {
  z-index: 0;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s ease;
}

.department-info-media .department-shade {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3, 12, 40, 0.08), rgba(3, 13, 42, 0.88) 92%),
    linear-gradient(90deg, rgba(6, 29, 92, 0.52), transparent 72%);
}

.department-info-card:hover .department-info-media img {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.03);
}

.department-info-media .department-number {
  z-index: 2;
  top: 20px;
  right: 20px;
}

.department-info-title {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 23px;
  left: 22px;
}

.department-info-title h4 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 1.68vw, 1.72rem);
  line-height: 0.95;
  letter-spacing: -0.052em;
  overflow-wrap: normal;
  word-break: normal;
  text-transform: uppercase;
}

.department-info-title h4 span {
  white-space: nowrap;
}

.department-info-title .department-kicker {
  margin-bottom: 10px;
  font-size: 0.6rem;
}

.department-info-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px 28px 26px;
}

.department-info-body > p {
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 0.91rem;
  line-height: 1.55;
}

.department-meta {
  display: grid;
  margin: 0 0 22px;
  border-top: 1px solid var(--line);
}

.department-meta > div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.department-meta dt {
  color: var(--blue);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.55;
  text-transform: uppercase;
}

.department-meta dd {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  font-size: 0.81rem;
  font-weight: 700;
  line-height: 1.45;
}

.department-meta dd span {
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 600;
}

.department-meta a {
  text-decoration: underline;
  text-decoration-color: rgba(226, 31, 47, 0.5);
  text-underline-offset: 3px;
}

.department-inquiry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 15px;
  color: var(--blue-deep);
  border-top: 2px solid var(--red);
  font-size: 0.78rem;
  font-weight: 850;
}

.department-inquiry svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--red);
  transition: transform 0.2s ease;
}

.department-inquiry:hover svg,
.department-inquiry:focus-visible svg {
  transform: translateX(5px);
}

/* Club */
.club-section {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(30, 85, 223, 0.45), transparent 30%),
    var(--blue-deep);
}

.club-section::before {
  position: absolute;
  content: "";
  top: -320px;
  left: -260px;
  width: 650px;
  height: 650px;
  border: 110px solid rgba(226, 31, 47, 0.13);
  border-radius: 50%;
}

.club-stripe {
  position: absolute;
  top: 0;
  right: 0;
  width: min(34vw, 440px);
  height: 100%;
  opacity: 0.2;
  background-image: repeating-linear-gradient(-45deg, transparent 0 24px, rgba(255, 255, 255, 0.12) 24px 25px);
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
}

.club-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.85fr);
  align-items: start;
  gap: 110px;
}

.club-copy h2 {
  max-width: 730px;
}

.club-copy > p:not(.eyebrow) {
  max-width: 670px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 1.06rem;
}

.club-principles {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-light);
}

.club-principles article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 22px;
  padding: 29px 0;
  border-bottom: 1px solid var(--line-light);
}

.club-principles article > span {
  color: var(--red);
  font-family: var(--display);
  font-size: 1.05rem;
}

.club-principles h3 {
  margin: 0 0 7px;
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.club-principles p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.91rem;
}

/* Meeting */
.meeting-section {
  padding: 78px 0;
  background: var(--red-soft);
}

.meeting-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  align-items: center;
  gap: 70px;
  padding: 54px 62px;
  background: var(--white);
  border-left: 8px solid var(--red);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.meeting-card h2 {
  margin-bottom: 17px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.meeting-card p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.meeting-meta {
  padding-left: 44px;
  border-left: 1px solid var(--line);
}

.meeting-meta p {
  display: grid;
  margin-bottom: 21px;
}

.meeting-meta p span {
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Service */
.service-section {
  background: var(--paper);
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(540px, 1.1fr);
  align-items: start;
  gap: 100px;
}

.service-heading {
  position: sticky;
  top: 115px;
}

.service-heading h2 {
  font-size: clamp(2.3rem, 4.8vw, 4.4rem);
}


.document-list {
  display: grid;
  gap: 12px;
}

.document-list > a {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 25px;
  align-items: center;
  gap: 18px;
  min-height: 102px;
  padding: 18px 24px;
  background: var(--white);
  border: 1px solid rgba(11, 20, 48, 0.09);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 26px rgba(8, 25, 72, 0.055);
  transition: transform 0.23s ease, border-color 0.23s ease, box-shadow 0.23s ease;
}

.document-list > a:hover {
  border-color: rgba(23, 68, 189, 0.25);
  box-shadow: var(--shadow-sm);
  transform: translateX(7px);
}

.document-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 58px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px 8px 12px 8px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.document-list > a > span:nth-child(2) {
  display: grid;
  line-height: 1.25;
}

.document-list strong {
  font-size: 1rem;
}

.document-list small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.document-list > a > svg {
  color: var(--blue);
  width: 23px;
  height: 23px;
}

/* Shop */
.shop-section {
  padding: 64px 0 72px;
  background: var(--paper);
}

.shop-shell {
  display: flex;
  justify-content: center;
}

.shop-card {
  position: relative;
  display: grid;
  width: min(100%, 920px);
  min-height: 270px;
  overflow: hidden;
  color: var(--white);
  background: var(--red-dark);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}

.shop-card > img,
.shop-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-card > img {
  object-position: center 46%;
  transition: transform 0.7s ease;
}

.shop-card:hover > img {
  transform: scale(1.035);
}

.shop-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(95, 3, 16, 0.96), rgba(171, 9, 25, 0.83) 52%, rgba(9, 31, 91, 0.30)),
    linear-gradient(180deg, transparent, rgba(5, 18, 55, 0.24));
}

.shop-copy {
  align-self: center;
  max-width: 600px;
  padding: 38px 46px;
}

.shop-copy > strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: clamp(2.45rem, 5vw, 4.15rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.shop-copy > span:not(.eyebrow):not(.button) {
  display: block;
  max-width: 420px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.80);
  font-size: 0.94rem;
}

.shop-copy .button {
  width: max-content;
}

/* Contact */
.contact-section {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 20%, rgba(30, 85, 223, 0.42), transparent 32%),
    linear-gradient(120deg, var(--blue-deep), #0b2b83 72%, #103ba7);
}

.contact-section::before {
  position: absolute;
  content: "";
  right: -130px;
  bottom: -270px;
  width: 620px;
  height: 620px;
  border: 95px solid rgba(226, 31, 47, 0.16);
  border-radius: 50%;
}

.contact-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: radial-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, black, transparent 58%);
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(540px, 1.05fr);
  align-items: start;
  gap: 96px;
}

.contact-copy {
  padding-top: 18px;
}

.contact-copy h2 {
  max-width: 620px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.contact-details {
  display: grid;
  gap: 11px;
  margin: 0;
  font-style: normal;
}

.contact-details > a,
.contact-details > div {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  max-width: 500px;
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.contact-details > a {
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.contact-details > a:hover {
  color: var(--white);
  padding-left: 7px;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.contact-icon svg {
  width: 21px;
  height: 21px;
}

.contact-details > a > span:last-child,
.contact-details > div > span:last-child {
  display: grid;
}

.contact-details small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-details strong {
  margin-top: 2px;
  font-size: 0.94rem;
  line-height: 1.45;
}

.contact-shell {
  position: relative;
  z-index: 1;
}

.form-card-heading {
  margin-bottom: 27px;
  padding-bottom: 23px;
  border-bottom: 1px solid rgba(11, 20, 48, 0.11);
}

.form-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.form-card-heading h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.form-card-heading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.contact-records {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 24px;
  margin-top: 42px;
}

.contact-record-card {
  padding: 32px 34px;
  background: rgba(255, 255, 255, 0.085);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 55px rgba(2, 10, 35, 0.15);
  backdrop-filter: blur(7px);
}

.record-heading {
  margin-bottom: 13px;
}

.record-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--body);
  font-size: 0.69rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.record-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.record-list > div {
  display: grid;
  grid-template-columns: minmax(145px, 0.88fr) minmax(0, 1.12fr);
  gap: 22px;
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.record-list dt,
.record-list dd {
  margin: 0;
}

.record-list dt {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.71rem;
  font-weight: 820;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.record-list dd {
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.88rem;
  font-weight: 720;
  line-height: 1.45;
}

.account-code {
  overflow-wrap: anywhere;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.035em;
}

.form-card {
  padding: 40px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 30px 90px rgba(2, 10, 35, 0.34);
}

.contact-form {
  display: grid;
  gap: 19px;
}

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

.contact-form label:not(.check-label) {
  display: grid;
  gap: 7px;
}

.contact-form label > span:first-child {
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.contact-form b {
  color: var(--red);
}

.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: #f8f9fc;
  border: 1px solid rgba(11, 20, 48, 0.16);
  border-radius: 10px;
  outline: 0;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:not([type="checkbox"]),
.contact-form select {
  min-height: 52px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 142px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(23, 68, 189, 0.11);
}

.check-label {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.77rem;
  line-height: 1.55;
}

.check-label input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.check-label a,
.form-note a {
  color: var(--blue);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.form-submit {
  width: 100%;
  margin-top: 2px;
  border: 0;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.78;
  transform: none;
}

.form-note {
  margin: -3px 0 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  text-align: center;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.87rem;
  font-weight: 700;
}

.form-status.is-success {
  color: #075c35;
  background: #e8f8f0;
  border: 1px solid #a7dfc2;
}

.form-status.is-error {
  color: #8b101b;
  background: #fff0f1;
  border: 1px solid #f2b4bb;
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.73);
  background: #030b21;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(270px, 1.2fr) repeat(3, minmax(150px, 0.55fr));
  gap: 58px;
  padding-top: 76px;
  padding-bottom: 65px;
}

.brand-footer {
  color: var(--white);
}

.footer-brand > p {
  margin: 19px 0 0 74px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-column h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  width: max-content;
  max-width: 100%;
  margin: 0;
  font-size: 0.84rem;
}

.footer-column a {
  transition: color 0.2s ease, transform 0.2s ease;
}

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

.footer-contact p {
  margin-bottom: 7px;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  gap: 22px;
}

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

.back-to-top {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(7, 26, 77, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--red-dark);
}

.back-to-top svg {
  width: 23px;
  height: 23px;
}

/* Legal pages */
.legal-body {
  background: var(--paper);
}

.legal-main {
  min-height: 75vh;
  padding: 80px 0 100px;
}

.legal-hero {
  position: relative;
  margin-top: 78px;
  overflow: hidden;
  padding: 68px 0 76px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0, rgba(30, 85, 223, 0.55), transparent 35%),
    var(--blue-deep);
}

.legal-hero::after {
  position: absolute;
  content: "";
  right: -90px;
  bottom: -190px;
  width: 410px;
  height: 410px;
  border: 70px solid rgba(226, 31, 47, 0.17);
  border-radius: 50%;
}

.legal-hero .shell {
  position: relative;
  z-index: 1;
}

.legal-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.legal-content {
  max-width: 880px;
  margin: 0 auto;
  padding: 64px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.legal-content h2 {
  margin: 44px 0 14px;
  font-family: var(--body);
  font-size: 1.35rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-transform: none;
}

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

.legal-content h3 {
  margin: 28px 0 10px;
  font-family: var(--body);
  font-size: 1rem;
  letter-spacing: 0;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
}

.legal-content a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content ul {
  padding-left: 1.35rem;
}

.legal-note {
  padding: 18px 20px;
  background: var(--blue-soft);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
}

/* Reveals */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.js [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1120px) {
  :root {
    --header-height: 84px;
  }

  .main-nav {
    gap: 20px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 295px;
    gap: 42px;
  }

  .hero-badge {
    padding: 30px 22px 27px;
  }

  .hero-badge-ring {
    width: 195px;
    height: 195px;
  }

  .hero-badge-ring img {
    width: 185px;
    height: 185px;
  }

  .department-card-featured {
    min-height: 430px;
  }

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

  .department-info-card {
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    min-height: 330px;
  }

  .footer-main {
    grid-template-columns: minmax(250px, 1.2fr) repeat(2, minmax(130px, 0.72fr));
    gap: 42px;
  }

  .footer-contact {
    grid-column: 2 / -1;
  }

  .club-layout,
  .contact-layout {
    gap: 62px;
  }

  .service-layout {
    gap: 65px;
  }
}

@media (max-width: 930px) {
  .shell {
    width: min(calc(100% - 36px), var(--shell));
  }

  .nav-toggle {
    display: block;
    z-index: 2;
  }

  .main-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 7px;
    padding: 110px 24px 44px;
    color: var(--ink);
    background:
      radial-gradient(circle at 100% 0, rgba(23, 68, 189, 0.12), transparent 38%),
      var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }

  .main-nav::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 7px;
    height: 100%;
    background: linear-gradient(var(--red) 0 50%, var(--blue) 50%);
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav > a:not(.nav-shop) {
    padding: 9px 20px;
    font-family: var(--display);
    font-size: clamp(1.8rem, 6vw, 3.1rem);
    line-height: 1;
    letter-spacing: -0.045em;
    text-transform: uppercase;
  }

  .main-nav > a:not(.nav-shop)::after {
    display: none;
  }

  .main-nav .nav-shop {
    margin-top: 18px;
    padding: 14px 24px;
    font-size: 1rem;
  }

  .site-header:not(.is-scrolled):not(.legal-header) .nav-toggle[aria-expanded="true"] {
    color: var(--ink);
  }

  .hero {
    height: auto;
    min-height: 820px;
  }

  .hero-media {
    background-image:
      linear-gradient(90deg, rgba(3, 12, 42, 0.95), rgba(4, 18, 58, 0.68)),
      linear-gradient(180deg, rgba(2, 10, 34, 0.2), rgba(2, 11, 37, 0.75)),
      url("assets/hero-verein.webp");
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-content: center;
    min-height: 820px;
  }

  .hero-copy {
    max-width: 780px;
    padding-top: 100px;
  }

  .hero-badge {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading,
  .more-heading,
  .club-layout,
  .service-layout,
  .contact-layout,
  .contact-records {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .more-heading {
    gap: 26px;
  }

  .more-heading > p {
    max-width: 680px;
  }

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

  .section-heading > p {
    max-width: 680px;
  }

  .club-layout {
    gap: 55px;
  }

  .club-principles {
    max-width: 720px;
  }

  .service-layout {
    gap: 46px;
  }

  .service-heading {
    position: static;
    max-width: 680px;
  }

  .contact-layout {
    gap: 58px;
  }

  .contact-copy {
    max-width: 700px;
  }

  .footer-main {
    grid-template-columns: 1.2fr repeat(2, 0.8fr);
  }

  .footer-contact {
    grid-column: 2 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 76px;
  }

  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .section {
    padding: 88px 0;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.legal-header {
    height: 72px;
  }

  .brand-mark,
  .site-header.is-scrolled .brand-mark,
  .site-header.legal-header .brand-mark {
    width: 50px;
    height: 50px;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .brand-copy span {
    font-size: 0.66rem;
    letter-spacing: 0.1em;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .nav-toggle > span:not(.sr-only) {
    left: 12px;
    width: 18px;
  }

  .nav-toggle > span:nth-child(2) { top: 14px; }
  .nav-toggle > span:nth-child(3) { top: 21px; }
  .nav-toggle > span:nth-child(4) { top: 28px; }
  .nav-toggle[aria-expanded="true"] > span:nth-child(2),
  .nav-toggle[aria-expanded="true"] > span:nth-child(4) { top: 21px; }

  .hero {
    min-height: 760px;
  }

  .hero-media {
    background-position: center, center, 62% center;
  }

  .hero-inner {
    min-height: 760px;
  }

  .hero-copy {
    padding: 104px 0 56px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 14.6vw, 4.9rem);
    line-height: 0.9;
  }

  .hero h1 em {
    -webkit-text-stroke-width: 1.4px;
  }

  .hero-lead {
    max-width: 520px;
    font-size: 1.02rem;
  }

  .hero-actions {
    margin-bottom: 34px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    justify-content: space-between;
  }

  .hero-facts li {
    display: grid;
    gap: 3px;
    padding-right: 13px;
    margin-right: 13px;
  }

  .hero-facts strong {
    font-size: 1.4rem;
  }

  .hero-facts span {
    font-size: 0.65rem;
  }

  .departments::before {
    top: 28px;
    font-size: 6rem;
  }

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

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

  .department-card-featured {
    min-height: 390px;
  }

  .department-content {
    right: 24px;
    bottom: 25px;
    left: 24px;
  }

  .department-info-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .department-info-media {
    min-height: 245px;
  }

  .department-info-body {
    padding: 25px 23px 23px;
  }

  .department-info-title h4 {
    font-size: clamp(1.55rem, 7.3vw, 2.05rem);
  }

  .more-departments {
    margin-top: 62px;
  }

  .club-layout {
    gap: 42px;
  }

  .club-principles article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 13px;
  }

  .meeting-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    padding: 38px 30px;
  }

  .meeting-card > * {
    min-width: 0;
  }

  .meeting-card h2 {
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .meeting-meta {
    padding: 28px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-layout {
    gap: 32px;
  }

  .document-list > a {
    grid-template-columns: 46px minmax(0, 1fr) 21px;
    min-height: 91px;
    padding: 14px 16px;
  }

  .document-icon {
    width: 44px;
    height: 50px;
    font-size: 0.64rem;
  }

  .shop-section {
    padding: 48px 0 54px;
  }

  .shop-card {
    min-height: 350px;
    border-radius: var(--radius-md);
  }

  .shop-card > img {
    object-position: 42% center;
  }

  .shop-overlay {
    background: linear-gradient(180deg, rgba(117, 4, 19, 0.34), rgba(112, 4, 19, 0.96) 63%);
  }

  .shop-copy {
    align-self: end;
    padding: 30px 25px;
  }

  .shop-copy > strong {
    font-size: clamp(2.5rem, 12vw, 3.8rem);
  }

  .contact-layout {
    gap: 44px;
  }

  .form-card {
    padding: 28px 22px;
  }

  .form-card-heading {
    margin-bottom: 23px;
    padding-bottom: 20px;
  }

  .contact-records {
    gap: 16px;
    margin-top: 28px;
  }

  .contact-record-card {
    padding: 25px 22px;
  }

  .record-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px 0;
  }

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

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 30px;
    padding-top: 58px;
    padding-bottom: 50px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 20px 0;
  }

  .legal-main {
    padding: 62px 0 75px;
  }

  .legal-hero {
    padding: 52px 0 58px;
  }

  .legal-content {
    padding: 36px 24px;
  }
}

@media (max-width: 430px) {
  .brand-copy span {
    display: none;
  }

  .hero-facts li {
    padding-right: 9px;
    margin-right: 9px;
  }

  .hero-facts span {
    max-width: 74px;
  }

  .department-card-featured {
    min-height: 360px;
  }

  .department-meta > div {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 10px;
  }

  .department-info-title {
    right: 18px;
    bottom: 19px;
    left: 18px;
  }

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

  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }

  .footer-brand > p {
    margin-left: 0;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}


/* V4 final: ruhige Ansprechpartner, kompakter Shop, Formularhinweis */
.contact-overview .record-heading > span {
  font-weight: 690;
  letter-spacing: 0.10em;
}

.contact-overview .record-list dt {
  color: #6c7690;
  font-size: 0.72rem;
  font-weight: 540;
  letter-spacing: 0.01em;
  line-height: 1.35;
  text-transform: none;
}

.contact-overview .record-list dd {
  font-size: 0.86rem;
  font-weight: 590;
  line-height: 1.4;
}

.contact-overview .record-list dd a {
  color: inherit;
  text-decoration-color: rgba(23, 68, 189, 0.28);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-overview .record-list dd a:hover {
  color: var(--blue);
  text-decoration-color: currentColor;
}

.privacy-hint {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.55;
}

.privacy-hint a {
  color: var(--blue);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.shop-section-compact {
  padding: 48px 0 54px;
}

.shop-section-compact .shop-card {
  width: min(100%, 780px);
  min-height: 220px;
}

.shop-section-compact .shop-copy {
  max-width: 520px;
  padding: 30px 38px;
}

.shop-section-compact .shop-copy > strong {
  font-size: clamp(2.15rem, 4.2vw, 3.35rem);
}

@media (max-width: 720px) {
  .shop-section-compact {
    padding: 40px 0 44px;
  }

  .shop-section-compact .shop-card {
    min-height: 285px;
  }

  .shop-section-compact .shop-copy {
    padding: 26px 22px;
  }
}


/* V4 final layout: Vereinskontakte über dem Formular */
.contact-overview {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 72px;
}

.contact-overview .contact-copy {
  padding-top: 10px;
}

.contact-overview .contact-copy > p:not(.eyebrow) {
  margin-bottom: 34px;
}

.contact-overview .contact-records {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 0;
}

.contact-overview .contact-record-card {
  padding: 27px 28px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(11, 20, 48, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 65px rgba(2, 10, 35, 0.22);
  backdrop-filter: none;
}

.contact-overview .record-heading {
  margin-bottom: 10px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(11, 20, 48, 0.10);
}

.contact-overview .record-label {
  margin: 0;
  color: var(--blue);
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.10em;
  line-height: 1.35;
  text-transform: uppercase;
}

.contact-overview .record-list > div {
  grid-template-columns: minmax(110px, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid rgba(11, 20, 48, 0.09);
}

.contact-overview .record-list > div:first-child {
  border-top: 0;
}

.contact-overview .record-list dt {
  color: #6c7690;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.contact-overview .record-list dd {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 580;
  line-height: 1.4;
}

.contact-overview .record-list dd a {
  color: inherit;
  text-decoration-color: rgba(23, 68, 189, 0.28);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-overview .record-list dd a:hover {
  color: var(--blue);
  text-decoration-color: currentColor;
}

.form-card-wide {
  position: relative;
  z-index: 1;
  width: min(100%, 960px);
  margin: 54px auto 0;
}

@media (max-width: 1120px) {
  .contact-overview {
    grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
    gap: 44px;
  }

  .contact-overview .contact-records {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 930px) {
  .contact-overview {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-overview .contact-copy {
    max-width: 700px;
  }

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

@media (max-width: 720px) {
  .contact-overview {
    gap: 36px;
  }

  .contact-overview .contact-records {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-overview .contact-record-card {
    padding: 23px 21px;
  }

  .contact-overview .record-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .form-card-wide {
    margin-top: 38px;
  }
}


/* V5: kompaktes Kontaktformular */
.form-card-wide {
  width: min(100%, 880px);
  margin-top: 44px;
  padding: 30px 32px;
}

.form-card-wide .form-card-heading {
  margin-bottom: 20px;
  padding-bottom: 17px;
}

.form-card-wide .form-kicker {
  margin-bottom: 6px;
  font-size: 0.64rem;
}

.form-card-wide .form-card-heading h3 {
  margin-bottom: 6px;
  font-size: clamp(1.85rem, 3vw, 2.45rem);
}

.contact-form-compact {
  gap: 14px;
}

.form-grid-compact {
  display: grid;
  grid-template-columns: minmax(240px, 0.74fr) minmax(0, 1.26fr);
  align-items: stretch;
  gap: 18px;
}

.form-fields-stack {
  display: grid;
  align-content: start;
  gap: 12px;
}

.contact-form-compact label:not(.check-label) {
  gap: 6px;
}

.form-card-wide .contact-form input:not([type="checkbox"]),
.form-card-wide .contact-form select {
  min-height: 46px;
}

.message-field {
  grid-template-rows: auto minmax(0, 1fr);
}

.form-card-wide .message-field textarea {
  height: 100%;
  min-height: 208px;
}

.form-card-wide .privacy-hint {
  font-size: 0.75rem;
  line-height: 1.48;
}

.form-actions-compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.form-actions-compact .form-submit {
  width: auto;
  min-width: 210px;
  margin-top: 0;
  padding-inline: 24px;
}

.form-actions-compact .form-note {
  margin: 0;
  text-align: right;
}

@media (max-width: 720px) {
  .form-card-wide {
    margin-top: 34px;
    padding: 24px 20px;
  }

  .form-card-wide .form-card-heading {
    margin-bottom: 18px;
    padding-bottom: 15px;
  }

  .form-grid-compact {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .form-card-wide .message-field textarea {
    min-height: 132px;
  }

  .form-actions-compact {
    align-items: stretch;
    flex-direction: column;
    gap: 11px;
  }

  .form-actions-compact .form-submit {
    width: 100%;
  }

  .form-actions-compact .form-note {
    text-align: center;
  }
}


/* V5 final: Kontaktformular proportional kompakter */
.form-card-wide {
  width: min(100%, 820px);
  margin-top: 34px;
  padding: 24px 27px 23px;
}

.form-card-wide .form-card-heading {
  margin-bottom: 14px;
  padding-bottom: 12px;
}

.form-card-wide .form-kicker {
  margin-bottom: 4px;
  font-size: 0.61rem;
}

.form-card-wide .form-card-heading h3 {
  margin-bottom: 4px;
  font-size: clamp(1.65rem, 2.7vw, 2.05rem);
  line-height: 1;
}

.form-card-wide .form-card-heading p {
  font-size: 0.76rem;
}

.contact-form-compact {
  gap: 10px;
}

.form-grid-compact {
  grid-template-columns: minmax(225px, 0.82fr) minmax(0, 1.18fr);
  gap: 14px;
}

.form-fields-stack {
  gap: 9px;
}

.contact-form-compact label:not(.check-label) {
  gap: 4px;
}

.form-card-wide .contact-form label > span:first-child {
  font-size: 0.69rem;
}

.form-card-wide .contact-form input:not([type="checkbox"]),
.form-card-wide .contact-form select {
  min-height: 42px;
  padding-inline: 11px;
}

.form-card-wide .message-field textarea {
  min-height: 172px;
  padding: 10px 11px;
}

.form-card-wide .privacy-hint {
  font-size: 0.69rem;
  line-height: 1.42;
}

.form-actions-compact {
  gap: 14px;
}

.form-actions-compact .form-submit {
  min-width: 190px;
  padding: 11px 20px;
}

.form-actions-compact .form-note {
  font-size: 0.68rem;
}

@media (max-width: 720px) {
  .form-card-wide {
    margin-top: 28px;
    padding: 20px 17px 19px;
  }

  .form-card-wide .form-card-heading {
    margin-bottom: 14px;
    padding-bottom: 12px;
  }

  .form-card-wide .form-card-heading h3 {
    font-size: clamp(1.65rem, 8vw, 2rem);
  }

  .form-grid-compact {
    gap: 10px;
  }

  .form-fields-stack {
    gap: 9px;
  }

  .form-card-wide .message-field textarea {
    min-height: 108px;
  }

  .form-actions-compact {
    gap: 9px;
  }
}

/* Mobile-Korrektur nach den finalen Desktop-Overrides */
@media (max-width: 720px) {
  .form-grid-compact {
    grid-template-columns: 1fr;
  }
}
