:root {
  --black: #050505;
  --ink: #151515;
  --muted: #696969;
  --paper: #f7f5f1;
  --white: #ffffff;
  --orange: #dc5f00;
  --orange-light: #ff9b45;
  --blue: #007c89;
  --header-height: 72px;
  --max-width: 1180px;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  --type-scale: 1;
  --scroll-progress: 0;
  --easing-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: hidden;
}

body {
  position: relative;
  background: var(--black);
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  overflow-x: hidden;
}

body.nav-open {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.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;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: var(--header-height);
  padding: 0 clamp(20px, 4vw, 58px);
  background: rgba(0, 0, 0, 0.84);
  color: var(--white);
  backdrop-filter: blur(16px) saturate(1.35);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(20px) saturate(1.55);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-header::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(var(--scroll-progress) * 100%);
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--orange), var(--orange-light), var(--blue));
  box-shadow: 0 0 18px rgba(255, 155, 69, 0.7);
  transition: width 120ms linear;
}

.site-header::after {
  position: absolute;
  right: clamp(20px, 4vw, 58px);
  bottom: 0;
  left: clamp(20px, 4vw, 58px);
  height: 1px;
  content: "";
  background: linear-gradient(
    90deg,
    transparent,
    rgba(220, 95, 0, 0.95),
    rgba(255, 255, 255, 0.42),
    transparent
  );
  box-shadow: 0 0 18px rgba(220, 95, 0, 0.36);
}

.header-left {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(12px, 1.8vw, 24px);
}

.brand img {
  width: clamp(52px, 5vw, 78px);
  height: auto;
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.brand:hover img,
.brand:focus-visible img {
  filter: drop-shadow(0 0 16px rgba(255, 155, 69, 0.58));
  transform: translateY(-1px);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.5vw, 26px);
  margin-left: auto;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    transform 180ms ease,
    text-shadow 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--orange), var(--white));
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(220, 95, 0, 0.8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--orange-light);
  text-shadow: 0 0 18px rgba(220, 95, 0, 0.45);
  transform: scale(1.05);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.language-switch {
  display: flex;
  gap: 6px;
}

.lang-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 64px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.lang-button:hover,
.lang-button:focus-visible {
  border-color: rgba(255, 155, 69, 0.8);
  box-shadow: 0 0 22px rgba(220, 95, 0, 0.22);
  transform: translateY(-1px);
}

.flag {
  display: inline-block;
  width: 18px;
  height: 12px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.24);
  flex: 0 0 auto;
  color: transparent;
  font-size: 0;
  line-height: 0;
}

.flag-de {
  background: linear-gradient(#000 0 33%, #dd0000 33% 66%, #ffce00 66%);
}

.flag-gb {
  background:
    linear-gradient(
      33deg,
      transparent 0 42%,
      #fff 42% 47%,
      #c8102e 47% 53%,
      #fff 53% 58%,
      transparent 58%
    ),
    linear-gradient(
      147deg,
      transparent 0 42%,
      #fff 42% 47%,
      #c8102e 47% 53%,
      #fff 53% 58%,
      transparent 58%
    ),
    linear-gradient(
      90deg,
      transparent 0 38%,
      #fff 38% 44%,
      #c8102e 44% 56%,
      #fff 56% 62%,
      transparent 62%
    ),
    linear-gradient(
      0deg,
      transparent 0 34%,
      #fff 34% 42%,
      #c8102e 42% 58%,
      #fff 58% 66%,
      transparent 66%
    ),
    #012169;
}

.lang-button.active {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-color: transparent;
  color: var(--black);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 999px;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: sticky;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.3)),
    url("resources/hero-cyclist.png");
  background-position: center;
  background-size: cover;
  filter: saturate(1.08);
  transform: scale(1.01);
  transition:
    filter 900ms ease,
    transform 1200ms var(--easing-out);
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, transparent 0 72%, rgba(5, 5, 5, 0.36)),
    radial-gradient(circle at 72% 42%, rgba(255, 155, 69, 0.2), transparent 34%);
  opacity: 0.78;
}

.hero:hover .hero-bg {
  filter: grayscale(0.45) saturate(0.82) brightness(0.82);
  transform: scale(1.035);
}

.hero-content {
  position: absolute;
  top: 54%;
  right: clamp(24px, 8vw, 130px);
  width: min(38vw, 460px);
  min-width: 270px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.hero-logo {
  width: 100%;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.45));
  animation: heartbeat 2.8s ease-in-out infinite;
  transform-origin: center;
}

.hero-button,
.text-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--black);
  box-shadow: 0 18px 45px rgba(220, 95, 0, 0.35);
  font-weight: 800;
  letter-spacing: 0.05em;
  overflow: hidden;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.hero-button::before,
.text-button::before {
  position: absolute;
  inset: -60% auto -60% -45%;
  width: 42%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  opacity: 0;
  transform: skewX(-22deg) translateX(0);
}

.hero-button:hover::before,
.hero-button:focus-visible::before,
.text-button:hover::before,
.text-button:focus-visible::before {
  animation: button-sheen 820ms var(--easing-out);
}

.hero-button {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  visibility: hidden;
}

.hero:hover .hero-button,
.hero:focus-within .hero-button {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.hero-button:hover,
.text-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 56px rgba(220, 95, 0, 0.46);
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  18% {
    transform: scale(1.035);
  }
  30% {
    transform: scale(0.99);
  }
  44% {
    transform: scale(1.055);
  }
  62% {
    transform: scale(1);
  }
}

@keyframes button-sheen {
  0% {
    opacity: 0;
    transform: skewX(-22deg) translateX(0);
  }
  18% {
    opacity: 0.85;
  }
  100% {
    opacity: 0;
    transform: skewX(-22deg) translateX(360%);
  }
}

.section {
  position: relative;
  z-index: 1;
  padding: clamp(78px, 9vw, 132px) clamp(20px, 5vw, 70px);
  overflow: hidden;
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.reveal-ready .section-inner {
  opacity: 0;
  transform: translateY(76px) scale(0.985);
  transition:
    opacity 850ms ease,
    transform 950ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-ready .section.reveal-visible .section-inner {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-ready .events-hero .section-inner,
.reveal-ready .legal-page .section-inner {
  opacity: 1;
  transform: none;
}

.reveal-ready.events-page .section-inner,
.reveal-ready.legal-document .section-inner {
  opacity: 1;
  transform: none;
}

.section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(
      120deg,
      transparent 0 32%,
      rgba(220, 95, 0, 0.06) 48%,
      transparent 64%
    ),
    linear-gradient(
      240deg,
      transparent 0 38%,
      rgba(0, 124, 137, 0.06) 54%,
      transparent 72%
    );
  opacity: 0;
  transform: translateY(70px);
  transition:
    opacity 950ms ease,
    transform 1200ms ease;
}

.section::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-position: center;
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 45%, #000 0 26%, transparent 72%);
  opacity: 0.22;
}

.section-light::after {
  background-image:
    linear-gradient(rgba(5, 5, 5, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 5, 5, 0.035) 1px, transparent 1px);
  opacity: 0.3;
}

.reveal-ready .section.reveal-visible::before {
  opacity: 1;
  transform: translateY(0);
}

.section-head,
.section-kicker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(26px, 6vw, 88px);
  align-items: end;
  margin-bottom: clamp(44px, 7vw, 88px);
}

.section-kicker-right > div,
.align-right > div {
  grid-column: 2;
  text-align: right;
}

.align-right > h2 {
  grid-column: 1;
  grid-row: 1;
}

.section-head h1,
.section-kicker h1 {
  color: var(--orange);
  font-family: "Bebas Neue", "Poppins", sans-serif;
  font-size: calc(clamp(3.2rem, 9vw, 8rem) * var(--type-scale));
  font-weight: 400;
  letter-spacing: 0.09em;
  line-height: 0.92;
  overflow-wrap: anywhere;
  text-shadow:
    0 0 34px rgba(220, 95, 0, 0.22),
    0 12px 38px rgba(0, 0, 0, 0.12);
}

.section-head p + h1,
.section-kicker p + h1 {
  margin-top: 0.14em;
}

.sponsors-section .section-head h1 {
  font-size: calc(clamp(3rem, 7vw, 6.2rem) * var(--type-scale));
  overflow-wrap: normal;
  white-space: nowrap;
}

.section-head h2,
.coaching-intro h2,
.about-copy h2,
.squad-copy h2 {
  max-width: 620px;
  font-family: "Bebas Neue", "Poppins", sans-serif;
  font-size: calc(clamp(2rem, 4.5vw, 4rem) * var(--type-scale));
  font-weight: 400;
  line-height: 0.95;
  overflow-wrap: anywhere;
}

.split-section .section-head {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
}

.split-section .section-head h1 {
  font-size: calc(clamp(2.8rem, 5vw, 4.8rem) * var(--type-scale));
  line-height: 0.9;
}

.split-section .section-head h2 {
  max-width: 360px;
  font-size: calc(clamp(1.9rem, 3.4vw, 3.4rem) * var(--type-scale));
  line-height: 0.96;
}

.section-head p,
.section-kicker p,
.overline {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-dark .section-head p,
.section-dark .overline {
  color: rgba(255, 255, 255, 0.7);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: clamp(64px, 8vw, 104px);
}

.value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 22px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-align: center;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--easing-out);
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(220, 95, 0, 0.12);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.value-card img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  transition:
    filter 220ms ease,
    transform 220ms var(--easing-out);
}

.value-card:hover img {
  filter: drop-shadow(0 14px 20px rgba(220, 95, 0, 0.22));
  transform: translateY(-3px) scale(1.04);
}

.value-card h2 {
  color: var(--orange);
  font-family: "Bebas Neue", "Poppins", sans-serif;
  font-size: 2.1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.value-card p,
.coaching-intro p,
.diagnostics-copy p,
.squad-copy p,
.about-copy p,
.sponsor-placeholder p {
  color: inherit;
  font-size: 0.96rem;
  line-height: 1.7;
}

.coaching-intro {
  max-width: 820px;
  margin-bottom: 34px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 26px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition:
    transform 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.package-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.42), transparent 24%),
    linear-gradient(145deg, var(--orange), var(--blue));
  opacity: 0;
  transition: opacity 220ms ease;
}

.package-card::after {
  position: absolute;
  inset: 1px;
  z-index: 0;
  content: "";
  border-radius: calc(var(--radius) - 1px);
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.62), transparent 28% 72%, rgba(0, 124, 137, 0.14)),
    radial-gradient(circle at 88% 12%, rgba(255, 155, 69, 0.18), transparent 24%);
  opacity: 0.44;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.package-card > * {
  position: relative;
  z-index: 1;
}

.package-card:hover {
  color: var(--white);
  border-color: transparent;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.2),
    0 0 44px rgba(220, 95, 0, 0.2);
  transform: translateY(-12px) scale(1.012);
}

.package-card:hover::before,
.package-card:focus-within::before {
  opacity: 1;
}

.package-card:hover::after,
.package-card:focus-within::after {
  opacity: 0.16;
}

.package-featured {
  color: var(--ink);
}

.package-card h3 {
  margin: 0 0 18px;
  font-family: "Bebas Neue", "Poppins", sans-serif;
  font-size: 2.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.package-card ul,
.info-list ul,
.two-column-list ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.package-card li,
.info-list li,
.two-column-list li,
.check-row span {
  position: relative;
  padding-left: 28px;
}

.package-card li::before,
.info-list li::before,
.two-column-list li::before,
.check-row span::before {
  position: absolute;
  left: 0;
  color: var(--orange);
  content: "✓";
  font-weight: 900;
}

.package-card:hover li::before,
.package-card:focus-within li::before {
  color: var(--white);
}

.package-price {
  margin-top: auto;
  padding-top: 22px;
  color: var(--orange);
  font-family: "Bebas Neue", "Poppins", sans-serif;
  font-size: 2.1rem !important;
  line-height: 1;
}

.package-card:hover .package-price,
.package-card:focus-within .package-price {
  color: var(--white);
}

.student-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  padding: 10px;
  border-radius: 50%;
  background: var(--black);
  color: var(--orange);
  box-shadow: 0 14px 34px rgba(220, 95, 0, 0.28);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.18;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
  transition:
    box-shadow 220ms ease,
    transform 220ms var(--easing-out);
}

.package-card:hover .student-badge,
.package-card:focus-within .student-badge {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  transform: rotate(4deg) scale(1.04);
}

.check-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
  padding: 24px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.diagnostics-layout,
.about-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
}

.diagnostics-copy {
  display: grid;
  gap: 26px;
}

.lead {
  font-size: 1.12rem !important;
  font-weight: 600;
}

.info-list {
  padding-left: 18px;
  border-left: 3px solid var(--orange);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.info-list:hover {
  border-color: var(--orange-light);
  transform: translateX(3px);
}

.info-list h3,
.two-column-list h3 {
  color: var(--orange-light);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-frame {
  position: relative;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(
    135deg,
    rgba(220, 95, 0, 0.26),
    rgba(0, 124, 137, 0.22)
  );
  box-shadow: var(--shadow);
  overflow: hidden;
}

.video-frame::before {
  position: absolute;
  inset: -35%;
  content: "";
  background: conic-gradient(from 120deg, transparent, rgba(255, 155, 69, 0.36), transparent, rgba(0, 124, 137, 0.3), transparent);
  opacity: 0.34;
  animation: ambient-spin 12s linear infinite;
}

.video-frame video {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}

@keyframes ambient-spin {
  to {
    transform: rotate(1turn);
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}

.team-photo {
  position: relative;
  margin-top: clamp(28px, 4vw, 48px);
  margin-bottom: clamp(26px, 4vw, 46px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
  box-shadow:
    0 24px 68px rgba(0, 0, 0, 0.16),
    0 0 42px rgba(220, 95, 0, 0.1);
}

.team-photo::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: inherit;
  background:
    linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.16)),
    linear-gradient(90deg, rgba(220, 95, 0, 0.14), transparent 26% 74%, rgba(0, 124, 137, 0.12));
}

.team-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.8;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.02);
}

.team-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
  transition:
    box-shadow 260ms ease,
    transform 260ms var(--easing-out);
}

.team-card::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.team-card img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  transition:
    transform 260ms ease,
    filter 260ms ease;
}

.team-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0));
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.team-card:hover img {
  filter: saturate(1.08) brightness(0.55);
  transform: scale(1.05);
}

.team-card:hover {
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.2),
    0 0 36px rgba(220, 95, 0, 0.18);
  transform: translateY(-4px);
}

.team-card:hover::after {
  opacity: 1;
}

.team-card:hover div {
  opacity: 1;
  transform: translateY(0);
}

.team-card h3 {
  color: var(--orange-light);
  font-family: "Bebas Neue", "Poppins", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
}

.squad-copy {
  max-width: 980px;
}

.two-column-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 34px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.text-link {
  color: var(--orange);
  font-weight: 800;
}

.about-layout {
  grid-template-columns: 0.85fr 1.15fr;
}

.coach-portrait {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.portrait-circle {
  position: absolute;
  top: 44px;
  width: min(86%, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 42%,
    rgba(255, 255, 255, 0.9) 0 26%,
    rgba(255, 155, 69, 0.85) 50%,
    rgba(0, 124, 137, 0.78) 78%,
    rgba(0, 0, 0, 0) 79%
  );
  filter: drop-shadow(0 32px 70px rgba(220, 95, 0, 0.26));
}

.coach-portrait img {
  position: relative;
  z-index: 1;
  max-height: 560px;
  object-fit: contain;
}

.about-copy {
  display: grid;
  gap: 18px;
}

.signature {
  color: var(--orange-light) !important;
  font-weight: 800;
}

.contact-panel {
  padding: clamp(26px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.028)),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.whatsapp-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--orange-light), #ffd58b);
  color: var(--black);
  box-shadow: 0 16px 40px rgba(220, 95, 0, 0.18);
}

.contact-direct {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.contact-direct a,
.contact-direct > span {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  text-decoration: none;
}

.contact-direct span span,
.contact-direct a span {
  color: var(--orange-light);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-direct strong {
  overflow-wrap: anywhere;
  font-size: 0.95rem;
  line-height: 1.35;
}

.social-icon,
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange-light);
  box-shadow:
    0 0 0 4px rgba(255, 155, 69, 0.16),
    0 12px 30px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
}

.contact-form input {
  min-height: 52px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 180px;
  padding: 14px;
  resize: vertical;
}

.message-field,
.privacy-check,
.contact-form button {
  grid-column: 1 / -1;
}

.privacy-check {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 12px !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.9rem;
  font-weight: 500 !important;
}

.privacy-check input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--orange);
}

.sponsor-placeholder {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border: 1px dashed rgba(5, 5, 5, 0.22);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.08);
}

.sponsor-marquee {
  position: relative;
  overflow: hidden;
  margin-bottom: 26px;
  padding: 16px 0;
  border-block: 1px solid rgba(5, 5, 5, 0.12);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.sponsor-track {
  display: flex;
  width: max-content;
  gap: 22px;
  animation: sponsor-scroll 24s linear infinite;
}

.sponsor-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(210px, 24vw, 320px);
  height: 92px;
  padding: 18px 24px;
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition:
    box-shadow 200ms ease,
    transform 200ms var(--easing-out);
}

.sponsor-logo:hover,
.sponsor-logo:focus-visible {
  box-shadow:
    inset 0 0 0 1px rgba(255, 155, 69, 0.45),
    0 14px 34px rgba(220, 95, 0, 0.22);
  transform: translateY(-2px) scale(1.015);
}

.sponsor-logo img {
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
}

.sponsor-image img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
}

@keyframes sponsor-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 11px));
  }
}

.site-footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(220, 95, 0, 0.18), transparent 28%),
    radial-gradient(circle at 88% 100%, rgba(0, 124, 137, 0.18), transparent 30%),
    var(--black);
  color: var(--white);
  padding: 34px clamp(20px, 5vw, 70px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.social-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.site-footer .social-links .social-link {
  width: auto;
  min-width: 0;
  height: 42px;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.site-footer .social-links .social-link:hover,
.site-footer .social-links .social-link:focus-visible {
  background: rgba(255, 155, 69, 0.14);
  box-shadow: 0 0 26px rgba(255, 155, 69, 0.18);
  transform: translateY(-2px);
}

.site-footer .social-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--black);
  font-size: 0.86rem;
  font-weight: 900;
}

.footer-links a,
.site-footer p a {
  color: var(--orange-light);
  font-weight: 800;
}

.cookie-consent {
  position: fixed;
  right: 50%;
  bottom: 20px;
  z-index: 120;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 26px;
  align-items: start;
  justify-content: space-between;
  width: min(1180px, calc(100% - 48px));
  padding: 22px 26px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 245, 241, 0.98)),
    var(--white);
  color: var(--ink);
  box-shadow:
    var(--shadow),
    0 0 48px rgba(220, 95, 0, 0.12);
  transform: translateX(50%);
}

.cookie-consent[hidden],
.cookie-options[hidden],
.cookie-action[hidden],
.cookie-settings-button[hidden] {
  display: none;
}

.cookie-consent h2 {
  margin-bottom: 12px;
  font-size: 1.05rem;
  line-height: 1.35;
}

.cookie-consent p {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: 0.82rem;
  line-height: 1.6;
}

.cookie-consent__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
}

.cookie-consent__links a {
  color: var(--blue);
  font-weight: 700;
}

.cookie-consent__links a + a::before {
  margin-right: 10px;
  color: rgba(5, 5, 5, 0.35);
  content: "|";
}

.cookie-consent__actions {
  display: grid;
  gap: 8px;
}

.cookie-action {
  min-height: 42px;
  border: 1px solid rgba(5, 5, 5, 0.45);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.cookie-action:hover,
.cookie-action:focus-visible,
.cookie-action--primary {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--black);
  transform: translateY(-1px);
}

.cookie-options {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 6px;
  background: rgba(247, 245, 241, 0.8);
}

.cookie-option input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--orange);
}

.cookie-option strong,
.cookie-option small {
  display: block;
}

.cookie-option small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.cookie-settings-button {
  position: fixed;
  bottom: 18px;
  left: 18px;
  z-index: 119;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 38%, rgba(255, 155, 69, 0.12), transparent 46%),
    var(--black);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.cookie-settings-button:hover,
.cookie-settings-button:focus-visible {
  box-shadow: 0 16px 42px rgba(220, 95, 0, 0.28);
  transform: translateY(-2px);
}

.cookie-icon {
  width: 36px;
  height: 36px;
  transform: translate(-1px, -3px);
}

.cookie-base {
  fill: url("#cookie-gradient");
}

.cookie-edge {
  fill: none;
  stroke: #2d2e32;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.6;
}

.cookie-shadow {
  fill: rgba(88, 52, 31, 0.18);
}

.cookie-chip {
  fill: #60412d;
  stroke: #2d2e32;
  stroke-width: 2.8;
}

.cookie-crumb {
  fill: #ff9b45;
  stroke: #2d2e32;
  stroke-width: 2.9;
}

.events-hero {
  min-height: 48vh;
  display: flex;
  align-items: end;
  padding-top: calc(var(--header-height) + 48px);
  padding-bottom: clamp(44px, 7vw, 82px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.22)),
    url("resources/radfahrer.png") center / cover;
}

.events-hero h1,
.legal-content h1 {
  color: var(--orange);
  font-family: "Bebas Neue", "Poppins", sans-serif;
  font-size: calc(clamp(3.2rem, 9vw, 8rem) * var(--type-scale));
  font-weight: 400;
  letter-spacing: 0.09em;
  line-height: 0.86;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.event-card {
  min-height: 320px;
  padding: 32px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(247, 245, 241, 0.92)),
    var(--white);
  border: 1px solid rgba(5, 5, 5, 0.07);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--easing-out);
}

.event-card:hover {
  border-color: rgba(220, 95, 0, 0.24);
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.12),
    0 0 34px rgba(220, 95, 0, 0.12);
  transform: translateY(-5px);
}

.event-card h2 {
  color: var(--orange);
  font-family: "Bebas Neue", "Poppins", sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
}

.legal-page {
  padding-top: calc(var(--header-height) + 96px);
  overflow: visible;
}

.legal-content {
  display: grid;
  gap: 18px;
  width: min(100%, 780px);
  max-width: 780px;
  margin: 0 auto;
  overflow: visible;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.2rem;
  line-height: 1.6;
}

.legal-content li {
  overflow-wrap: anywhere;
}

.legal-content h1 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
  word-break: normal;
}

.legal-content h2 {
  color: var(--orange);
  font-family: "Bebas Neue", "Poppins", sans-serif;
  font-size: clamp(1.85rem, 2.6vw, 2.8rem);
  font-weight: 400;
  line-height: 1;
  overflow-wrap: anywhere;
}

@media (max-width: 1040px) {
  :root {
    --type-scale: 0.78;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 14px;
    bottom: auto;
    left: 14px;
    display: grid;
    align-content: start;
    gap: 8px;
    max-height: calc(100vh - var(--header-height) - 20px);
    padding: 12px 0 0;
    overflow-y: auto;
    overflow-x: hidden;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav a {
    min-height: 42px;
    width: 100%;
    padding: 0 14px;
    border-radius: 6px;
    background: rgba(5, 5, 5, 0.9);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    font-size: 0.8rem;
    pointer-events: auto;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    transform: none;
  }

  .site-nav a::after {
    bottom: 7px;
  }

  .package-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-featured {
    transform: none;
  }

  .diagnostics-layout,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .video-frame {
    order: -1;
  }
}

@media (max-width: 1280px) {
  .split-section .section-head {
    grid-template-columns: 1fr;
  }

  .split-section .section-head h2 {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
    --type-scale: 0.62;
  }

  .site-header {
    padding: 0 14px;
  }

  .site-header::after {
    right: 14px;
    left: 14px;
  }

  .brand img {
    width: 42px;
  }

  .header-left {
    gap: 8px;
  }

  .lang-button {
    min-width: 58px;
    height: 30px;
    font-size: 0.6rem;
  }

  .flag {
    width: 16px;
    height: 11px;
  }

  .hero-content {
    top: 56%;
    right: clamp(14px, 5vw, 34px);
    width: min(58vw, 300px);
    min-width: 0;
    transform: translateY(-50%);
  }

  .hero-button {
    min-height: 40px;
    padding: 0 20px;
    font-size: 0.78rem;
  }

  .reveal-ready .section-inner,
  .reveal-ready .section::before {
    opacity: 1;
    transform: none;
  }

  .section-inner {
    transform: none !important;
  }

  .events-hero {
    min-height: 42vh;
    background-position: center top;
  }

  .section-head,
  .section-kicker {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 24px;
  }

  .section-kicker-right > div,
  .align-right > div,
  .align-right > h2 {
    grid-column: auto;
    grid-row: auto;
    text-align: right;
  }

  .section-kicker-right,
  .section-head.align-right {
    justify-items: end;
    text-align: right;
  }

  .section-head h1,
  .section-kicker h1 {
    font-size: calc(clamp(3.1rem, 14vw, 4.6rem) * var(--type-scale));
    line-height: 0.9;
  }

  .split-section .section-head h1 {
    font-size: clamp(2.25rem, 8.6vw, 3rem);
    letter-spacing: 0.055em;
    overflow-wrap: normal;
    word-break: normal;
  }

  .section-head h2,
  .coaching-intro h2,
  .about-copy h2,
  .squad-copy h2 {
    font-size: clamp(1.35rem, 6vw, 2rem);
  }

  .values-grid,
  .check-row,
  .two-column-list,
  .sponsor-placeholder {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .package-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 34px;
  }

  .team-photo img {
    aspect-ratio: 4 / 3;
  }

  .values-grid {
    gap: 6px;
    margin-bottom: 26px;
  }

  .contact-form,
  .contact-direct,
  .event-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-strip {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cookie-consent {
    bottom: 12px;
    grid-template-columns: 1fr;
    gap: 16px;
    width: calc(100% - 24px);
    max-height: calc(100vh - 24px);
    padding: 18px;
    overflow-y: auto;
  }

  .cookie-consent__actions {
    grid-template-columns: 1fr;
  }

  .cookie-settings-button {
    bottom: 12px;
    left: 12px;
    width: 40px;
    height: 40px;
  }

  .package-card {
    min-height: 0;
    padding: 20px;
  }

  .team-card,
  .team-card img {
    min-height: 0;
  }

  .team-card {
    aspect-ratio: 4 / 5;
  }

  .team-card img {
    height: 100%;
  }

  .value-card p,
  .coaching-intro p,
  .diagnostics-copy p,
  .squad-copy p,
  .about-copy p,
  .sponsor-placeholder p {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .coaching-intro {
    margin-bottom: 22px;
  }

  .coaching-intro p:not(.overline),
  .package-card p,
  .package-card li,
  .check-row span {
    font-size: 0.84rem;
    line-height: 1.52;
  }

  .package-card h3 {
    margin-bottom: 12px;
    font-size: 2.05rem;
  }

  .package-price {
    padding-top: 14px;
    font-size: 1.65rem !important;
  }

  .student-badge {
    top: 16px;
    right: 16px;
    width: 62px;
    height: 62px;
    font-size: 0.55rem;
  }

  .diagnostics-copy {
    gap: 18px;
  }

  .info-list ul,
  .two-column-list ul,
  .package-card ul {
    gap: 9px;
    margin-top: 12px;
  }

  .contact-form input {
    min-height: 46px;
  }

  .contact-form textarea {
    min-height: 150px;
  }

  .team-card div {
    padding: 12px;
    opacity: 1;
    transform: none;
  }

  .team-card h3 {
    font-size: 1.45rem;
  }

  .team-card p {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .team-card:hover div,
  .team-card:focus-within div {
    opacity: 1;
    transform: translateY(0);
  }

  .coach-portrait {
    min-height: 420px;
  }

  .coach-portrait img {
    max-height: 420px;
  }

  .sponsor-placeholder {
    align-items: start;
  }
}

@media (max-width: 460px) {
  :root {
    --type-scale: 0.56;
  }

  .section {
    padding: 32px 12px;
  }

  .legal-page {
    padding-top: calc(var(--header-height) + 28px);
  }

  .hero-content {
    right: 16px;
    width: min(60vw, 250px);
    gap: 18px;
  }

  .value-card {
    gap: 6px;
    padding: 8px 6px;
  }

  .value-card img {
    width: 52px;
    height: 52px;
  }

  .value-card h2 {
    font-size: 1.42rem;
  }

  .values-grid {
    gap: 2px;
  }

  .hero-logo {
    animation-duration: 3.4s;
  }

  .section-head h1,
  .section-kicker h1 {
    letter-spacing: 0.07em;
  }

  .section-head h2,
  .coaching-intro h2,
  .about-copy h2,
  .squad-copy h2 {
    line-height: 1;
  }

  .legal-content h1 {
    font-size: 1.72rem;
    letter-spacing: 0.015em;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .legal-content h2 {
    font-size: 1.45rem;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .package-card {
    padding: 18px;
  }

  .package-card h3 {
    font-size: 1.9rem;
  }

  .team-grid {
    gap: 8px;
  }

  .team-photo {
    margin-top: 22px;
    margin-bottom: 18px;
  }

  .team-photo img {
    aspect-ratio: 1 / 1;
  }

  .site-footer .social-links .social-link {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .section-inner,
  .section::before {
    opacity: 1;
    transform: none;
  }

}
