@import url('https://fonts.googleapis.com/css2?family=Anton&family=Archivo:wght@300;400;500;700&family=Space+Mono:wght@400;700&display=swap');

:root {
  --night:   #0C1014;
  --pine:    #131A18;
  --chalk:   #F4F0E6;
  --haze:    #B9C2BC;
  --trail:   #E21F25;
  --amber:   #E9A14E;
  --mono:    'Space Mono', monospace;
  --display: 'Anton', sans-serif;
  --sans:    'Archivo', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--night);
  color: var(--chalk);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
}

::selection { background: var(--trail); color: var(--chalk); }
img { display: block; }

/* ---------- Filmkorn ---------- */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  display: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-2%, 1.5%); }
  50%  { transform: translate(1.5%, -2%); }
  75%  { transform: translate(-1%, -1%); }
  100% { transform: translate(0, 0); }
}

/* ---------- Logo-Tick ---------- */
.tick {
  display: inline-block;
  width: 22px;
  height: 10px;
  margin-right: 0.95rem;
  vertical-align: middle;
  background: var(--trail);
  clip-path: polygon(0 100%, 35% 0, 100% 0, 65% 100%);
  flex: none;
}
.tick.r { margin: 0 0 0 0.95rem; }

/* ---------- Header ---------- */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(12,16,20,0.65) 0%, rgba(12,16,20,0.3) 60%, rgba(12,16,20,0) 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 2.2rem;
}
.logo img {
  height: 34px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 12px rgba(12,16,20,0.65));
}
.main-nav {
  display: flex;
  gap: 1.8rem;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.main-nav a {
  color: var(--chalk);
  text-decoration: none;
  opacity: 0.75;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  text-shadow: 0 1px 10px rgba(12,16,20,0.9);
  transition: opacity 0.3s, border-color 0.3s;
}
.main-nav a:hover { opacity: 1; }
.main-nav a.active { opacity: 1; border-color: var(--trail); }

/* ---------- Saison-Umschalter ---------- */
.season {
  display: flex;
  flex: none;
  align-items: center;
}
.season a {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--chalk);
  text-decoration: none;
  padding: 0.3rem 0.7rem;
  opacity: 0.55;
  text-shadow: 0 1px 10px rgba(12,16,20,0.9);
  transition: color 0.3s, opacity 0.3s;
}
.season a + a { border-left: 1px solid rgba(244,240,230,0.25); }
.season a:hover { opacity: 1; }
.season a.on { color: var(--trail); opacity: 1; }

/* ============================================================
   MEGA-SCRUB: die ganze Startseite ist eine gepinnte Sequenz
   ============================================================ */
#mega { position: relative; height: 1600vh; }
.mega-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--night);
}
.scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  will-change: opacity;
}
.scene-hero { opacity: 1; visibility: visible; }

/* ---------- Szene: Hero ---------- */
.shot {
  position: absolute;
  inset: 0;
  opacity: 0;
  will-change: opacity, transform;
}
.shot img,
.shot video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.shot video {
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
}
.shot video.ready { opacity: 1; }
.shot::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(12,16,20,0.40) 0%, rgba(12,16,20,0) 28%, rgba(12,16,20,0) 55%, rgba(12,16,20,0.62) 100%);
}
.rays {
  position: absolute;
  inset: -10%;
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: screen;
  background:
    linear-gradient(112deg, transparent 42%, rgba(233,161,78,0.16) 51%, transparent 58%),
    linear-gradient(118deg, transparent 55%, rgba(233,161,78,0.10) 63%, transparent 70%);
  animation: raysPulse 9s ease-in-out infinite;
  will-change: opacity, transform;
}
@keyframes raysPulse {
  0%, 100% { opacity: 0.55; transform: translateX(0); }
  50%      { opacity: 1;    transform: translateX(1.5%); }
}

.phase {
  position: absolute;
  left: 7vw;
  right: 7vw;
  bottom: 13vh;
  opacity: 0;
  will-change: opacity, transform;
  pointer-events: none;
  z-index: 5;
  text-align: center;
}
.phase .eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--chalk);
  opacity: 0.9;
  margin-bottom: 1.3rem;
}
.phase h1 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 10vw, 8.6rem);
  line-height: 0.94;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  text-shadow: 0 2px 50px rgba(12,16,20,0.6);
}
.phase h1 em { font-style: normal; color: var(--trail); }
.phase h1 .gold { color: var(--trail); }
.phase p.lead {
  max-width: 38ch;
  margin: 1.5rem auto 0;
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 400;
  line-height: 1.55;
  text-shadow: 0 1px 18px rgba(12,16,20,0.8);
}
.phase h1 .ln { display: block; overflow: hidden; }
.phase h1 .ln-i { display: inline-block; will-change: transform, opacity; }

#introVeil {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: rgba(12,16,20,0.38);
  pointer-events: none;
  will-change: opacity;
}
#introLogo {
  position: absolute;
  z-index: 7;
  pointer-events: none;
  will-change: left, top, width;
}
#introLogo img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 36px rgba(12,16,20,0.65));
}
.intro-tag {
  position: absolute;
  z-index: 7;
  left: 0; right: 0;
  top: 60%;
  text-align: center;
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(0.78rem, 0.95vw, 0.98rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--chalk);
  text-shadow: 0 1px 3px rgba(12,16,20,0.95), 0 2px 18px rgba(12,16,20,0.9), 0 0 40px rgba(12,16,20,0.7);
  pointer-events: none;
  will-change: opacity;
}
.time-hud {
  position: absolute;
  bottom: 2.2rem;
  left: 2.2rem;
  z-index: 6;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  color: var(--chalk);
  opacity: 0.85;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 10px rgba(12,16,20,0.9);
}
.progress-dots {
  position: absolute;
  right: 2.2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.progress-dots i {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--chalk);
  opacity: 0.35;
  transition: opacity 0.3s, transform 0.3s;
}
.progress-dots i.on { opacity: 1; transform: scale(1.5); background: var(--trail); }
.scroll-hint {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--chalk);
  animation: hint 2.4s ease-in-out infinite;
  text-shadow: 0 1px 10px rgba(12,16,20,0.9);
  transition: opacity 0.4s;
}
@keyframes hint {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 9px); }
}

/* ---------- Szenen: Testcenter + Sortiment ---------- */
.scene-content {
  display: flex;
  align-items: center;
  padding: 0 7vw;
  background: var(--night);
}
.scene-content .gear-inner { width: 100%; position: relative; }
.topo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  pointer-events: none;
}
.section-head {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--haze);
  opacity: 0;
  will-change: opacity, transform;
}
.scene-content h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin: 0 auto 2.4rem;
  max-width: 20ch;
  text-align: center;
  opacity: 0;
  will-change: opacity, transform;
}
.scene-content h2 em { font-style: normal; color: var(--trail); }

.gear-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(185,194,188,0.18);
  border: 1px solid rgba(185,194,188,0.18);
}
.gear-grid.steps { grid-template-columns: repeat(3, 1fr); }
.gear-card {
  background: var(--night);
  padding: 2.6rem 2rem 2.2rem;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: background 0.35s ease;
}
.gear-card:hover { background: var(--pine); }
.gear-card.with-img { padding-top: 0; }
.card-img {
  display: block;
  width: calc(100% + 4rem);
  margin: 0 -2rem 1.8rem;
  height: clamp(120px, 17vh, 185px);
  object-fit: cover;
  filter: saturate(0.88);
  transition: filter 0.4s ease;
}
.gear-card:hover .card-img { filter: saturate(1.08); }
.gear-card .num {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--trail);
  display: block;
  margin-bottom: 1.6rem;
}
.gear-card h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.9rem;
}
.gear-card .spec {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  line-height: 2;
  color: var(--haze);
}
.gear-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--trail);
  transition: width 0.45s cubic-bezier(0.2,0.7,0.2,1);
}
.gear-card:hover::after { width: 100%; }
.grid-cta { text-align: center; margin-top: 3rem; opacity: 0; will-change: opacity, transform; }
.grid-cta .cta { border-color: var(--trail); color: var(--trail); background: transparent; }
.grid-cta .cta:hover { background: var(--trail); color: var(--chalk); }

/* ---------- Heroized-Szenen (Events / Sortiment als Vollbild) ---------- */
.scene-content.heroized .scene-bg { opacity: 1; will-change: transform; }
.scene-content.heroized .gear-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.scene-content.heroized .gear-inner h2 { font-size: clamp(2.4rem, 5.5vw, 4.8rem); line-height: 0.95; max-width: 18ch; }
.scene-content.heroized .grid-cta { margin-top: 2.4rem; }
.hero-evlist { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--chalk); }
.hero-evlist span::before { content: ""; display: inline-block; width: 14px; height: 2px; background: var(--trail); margin-right: 0.8rem; vertical-align: middle; }
@media (max-width: 899px) { .hero-evlist { font-size: 0.62rem; letter-spacing: 0.12em; } }

/* ---------- Szene: Höhenprofil ---------- */
.scene-profile { background: linear-gradient(180deg, #F4F0E6 0%, #EAE4D4 100%); }
#profileBg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  will-change: opacity, transform;
}
.scene-profile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(244,240,230,0.9) 0%, rgba(244,240,230,0.55) 55%, rgba(244,240,230,0.88) 100%);
  pointer-events: none;
}
#profileSvg {
  position: absolute;
  left: 0; right: 0;
  bottom: 4%;
  width: 100%;
  height: 56%;
  z-index: 3;
}
.profile-head {
  position: absolute;
  top: 9%;
  left: 7vw;
  right: 7vw;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.profile-head h2 {
  color: var(--night);
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.2vw, 2.9rem);
  text-transform: uppercase;
  line-height: 0.98;
}
.profile-head h2 em { font-style: normal; color: var(--trail); }
.profile-head .eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #57605A;
  margin-bottom: 1.1rem;
}
.profile-note {
  margin-top: 1.3rem;
  max-width: 34ch;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.55;
  color: #57605A;
}
.counters { display: flex; gap: 3rem; text-align: center; justify-content: center; margin-top: 1.4rem; }
.counter .val {
  color: var(--night);
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.counter .unit {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--trail);
  margin-top: 0.55rem;
}
.cp-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  fill: var(--night);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.cp-label tspan.alt { fill: #57605A; }
.cp-dot {
  fill: var(--chalk);
  stroke: var(--trail);
  stroke-width: 2;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.cp-label.on, .cp-dot.on { opacity: 1; }

/* ---------- Szene: Finale ---------- */
.scene-finale { display: flex; align-items: flex-end; }
.scene-finale img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
.scene-finale::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,16,20,0.45) 0%, rgba(12,16,20,0.05) 40%, rgba(12,16,20,0.7) 100%);
}
.scene-finale .inner {
  position: relative;
  z-index: 2;
  padding: 0 7vw 11vh;
  width: 100%;
  text-align: center;
}
.scene-finale .eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  opacity: 0;
  will-change: opacity, transform;
}
.scene-finale h2 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 8vw, 7rem);
  text-transform: uppercase;
  line-height: 0.95;
  max-width: 14ch;
  margin: 0 auto;
  text-shadow: 0 2px 50px rgba(12,16,20,0.7);
}
.scene-finale h2 em { font-style: normal; color: var(--trail); }
.fline { display: block; opacity: 0; will-change: opacity, transform; }
.cta {
  display: inline-block;
  margin-top: 2.6rem;
  padding: 1.05rem 2.6rem;
  border: 1px solid var(--chalk);
  color: var(--chalk);
  background: rgba(12,16,20,0.25);
  backdrop-filter: blur(4px);
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.cta:hover { background: var(--trail); border-color: var(--trail); color: var(--chalk); }
.scene-finale .cta { opacity: 0; will-change: opacity, transform; }

/* ---------- Footer ---------- */
footer {
  position: relative;
  z-index: 2;
  background: #EAE4D4;
  padding: 4vh 7vw 3.5vh;
  text-align: center;
}
footer a { color: var(--night); text-decoration: none; border-bottom: 1px solid rgba(12,16,20,0.25); transition: color 0.3s, border-color 0.3s; }
footer a:hover { color: var(--trail); border-color: var(--trail); }
.footer-logo {
  filter: brightness(0);
  opacity: 0.88;
  height: 36px;
  width: auto;
  margin: 0 auto 1.8rem;
  display: block;
}
footer .meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3.5rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  line-height: 2.1;
  color: #43484E;
}
footer .legal {
  margin-top: 1.8rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: rgba(12,16,20,0.5);
}

@media (min-width: 900px) and (max-width: 1280px) {
  .gear-card { padding: 2rem 1.2rem 1.8rem; }
  .gear-card.with-img { padding-top: 0; }
  .card-img { width: calc(100% + 2.4rem); margin: 0 -1.2rem 1.4rem; }
  .gear-card h3 { font-size: 1.25rem; }
  .gear-card .spec { font-size: 0.58rem; }
}

/* ============================================================
   Mobile: normales Scrollen statt Mega-Scrub
   ============================================================ */
@media (max-width: 899px) {
  #mega { height: auto; }
  .mega-pin { position: static; height: auto; overflow: visible; }
  .scene { position: relative; opacity: 1 !important; visibility: visible !important; }
  .scene-hero { height: 430svh; overflow: visible; }
  .m-pin { position: sticky; top: 0; height: 100svh; min-height: 540px; overflow: hidden; }
  .m-pin .phase { bottom: 12vh; }
  .m-pin .phase h1 { font-size: clamp(2.2rem, 11vw, 3.4rem); overflow-wrap: break-word; }
  .scene-profile { min-height: 640px; }
  .scene-finale { min-height: 560px; }
  #introLogo, #introVeil, .intro-tag, .progress-dots, .time-hud { display: none; }
  .scene-content { height: auto; padding: 12vh 7vw; display: block; }
  .gear-grid, .gear-grid.steps { grid-template-columns: 1fr; }
  .card-img { height: 185px; }
  .section-head, .scene-content h2, .grid-cta { opacity: 1; }
  .gear-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.8s cubic-bezier(0.2,0.7,0.2,1), transform 0.8s cubic-bezier(0.2,0.7,0.2,1), background 0.35s ease; }
  .scene-profile { height: 100svh; }
  .scene-finale { height: 100svh; }
  .scene-finale .eyebrow, .fline, .scene-finale .cta { opacity: 1; }
  header { padding: 1rem 1.3rem; }
  .logo img { height: 26px; }
  .main-nav { gap: 0.55rem; font-size: 0.52rem; letter-spacing: 0.1em; }
  .season a { padding: 0.4rem 0.55rem; font-size: 0.52rem; letter-spacing: 0.1em; }
  .counters { gap: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .grain, .scroll-hint, .rays { animation: none; }
}

/* ============ Unterseiten ============ */
.page-hero {
  position: relative;
  height: 56vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,16,20,0.55) 0%, rgba(12,16,20,0.2) 45%, rgba(12,16,20,0.8) 100%);
}
.page-hero .inner {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 0 7vw 6vh;
}
.page-hero .eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  text-transform: uppercase;
  line-height: 0.95;
}
.page-hero h1 em { font-style: normal; color: var(--trail); }

.page-section {
  padding: 10vh 7vw;
  max-width: 1240px;
  margin: 0 auto;
}
.page-section .intro {
  max-width: 60ch;
  margin: 0 auto 5rem;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--haze);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: rgba(185,194,188,0.18);
  border: 1px solid rgba(185,194,188,0.18);
}
.member {
  background: var(--night);
  padding: 2.6rem 1.8rem 2.2rem;
  transition: background 0.35s ease;
}
.member:hover { background: var(--pine); }
.member .photo {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--pine);
  border: 2px solid rgba(185,194,188,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1.7rem;
  color: var(--haze);
  margin: 0 auto 1.5rem;
  overflow: hidden;
}
.member .photo img { width: 100%; height: 100%; object-fit: cover; }
.member h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.02em;
}
.member .role {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--trail);
  text-align: center;
  margin-top: 0.55rem;
}
.member p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--haze);
  text-align: center;
  margin-top: 1.1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
}
@media (max-width: 850px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}
.contact-card h2 em { font-style: normal; color: var(--trail); }
.contact-block {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  line-height: 2.3;
  color: var(--haze);
  margin-bottom: 2.2rem;
}
.contact-block strong { color: var(--chalk); font-weight: 700; }
.contact-block a { color: var(--chalk); text-decoration: none; border-bottom: 1px solid rgba(185,194,188,0.35); }
.contact-block a:hover { border-color: var(--trail); color: var(--trail); }
.map-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(185,194,188,0.25);
  display: block;
  filter: grayscale(0.15) contrast(1.03);
}


/* ============ Rechtsseiten / Textseiten ============ */
.legal-page { max-width: 820px; }
.legal-page h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  text-transform: uppercase;
  margin: 3.2rem 0 1.1rem;
}
.legal-page h2:first-child { margin-top: 0; }
.legal-page h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.02rem;
  margin: 2rem 0 0.7rem;
  color: var(--chalk);
}
.legal-page p, .legal-page li {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--haze);
  margin-bottom: 0.9rem;
}
.legal-page ul { margin: 0 0 1rem 1.3rem; }
.legal-page a { color: var(--chalk); border-bottom: 1px solid rgba(185,194,188,0.35); text-decoration: none; }
.legal-page a:hover { color: var(--trail); border-color: var(--trail); }
.legal-page .stand {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--haze);
  margin-bottom: 2.5rem;
}
.placeholder-note {
  border: 1px solid var(--trail);
  padding: 1rem 1.3rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--chalk);
  margin-bottom: 2.5rem;
}

/* Service-Karten in zwei Spalten */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: rgba(185,194,188,0.18);
  border: 1px solid rgba(185,194,188,0.18);
}


/* ============ Events ============ */
.event-list { display: flex; flex-direction: column; gap: 1px; background: rgba(185,194,188,0.18); border: 1px solid rgba(185,194,188,0.18); }
.event {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2.2rem;
  background: var(--night);
  padding: 2.4rem 2.2rem;
  transition: background 0.35s ease;
}
.event:hover { background: var(--pine); }
@media (max-width: 640px) { .event { grid-template-columns: 1fr; gap: 1rem; } }
.event-date {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--trail);
  line-height: 1.7;
  text-transform: uppercase;
}
.event-body h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.event-meta {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--haze);
  margin: 0.6rem 0 0.9rem;
}
.event-body p { font-size: 0.92rem; font-weight: 400; line-height: 1.65; color: var(--haze); max-width: 62ch; }


/* ============ Testflotte ============ */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.5rem 0 2rem; justify-content: center; }
.filter {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--chalk);
  background: transparent;
  border: 1px solid rgba(185,194,188,0.35);
  padding: 0.55rem 1.1rem;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, opacity 0.25s;
  opacity: 0.75;
}
.filter:hover { opacity: 1; }
.filter.on { background: var(--trail); border-color: var(--trail); opacity: 1; }
.flotte { display: flex; flex-direction: column; gap: 1px; background: rgba(185,194,188,0.18); border: 1px solid rgba(185,194,188,0.18); }
.shoe {
  display: grid;
  grid-template-columns: 2.2fr 1fr 0.8fr 1.2fr 0.9fr;
  gap: 1rem;
  align-items: center;
  background: var(--night);
  padding: 1.1rem 1.6rem;
  transition: background 0.3s;
}
.shoe:hover { background: var(--pine); }
.shoe-name { font-size: 0.95rem; font-weight: 400; }
.shoe-name strong { font-weight: 700; }
.shoe-spec {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--haze);
}
.flotte-note {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--haze);
  margin-top: 1.4rem;
  text-align: center;
}
@media (max-width: 760px) {
  .shoe { grid-template-columns: 1fr 1fr; padding: 1rem 1.2rem; }
  .shoe-name { grid-column: 1 / -1; }
}


/* ============ Testcenter: Finder, Vergleich, Portal ============ */
.tc-h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  text-transform: uppercase;
  line-height: 0.95;
  text-align: center;
  margin: 0 auto 2.5rem;
}
.tc-h2 em { font-style: normal; color: var(--trail); }
.finder { max-width: 760px; margin: 0 auto; }
.finder-q { margin-bottom: 2rem; }
.finder-label {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--haze);
  margin-bottom: 0.9rem;
  text-align: center;
}
.finder-opts { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }
.finder-opts button {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chalk);
  background: transparent;
  border: 1px solid rgba(185,194,188,0.35);
  padding: 0.7rem 1.3rem;
  cursor: pointer;
  opacity: 0.75;
  transition: background 0.25s, border-color 0.25s, opacity 0.25s;
}
.finder-opts button:hover { opacity: 1; }
.finder-opts button.on { background: var(--trail); border-color: var(--trail); opacity: 1; }
.finder-result {
  display: none;
  margin-top: 2.5rem;
  border: 1px solid var(--trail);
  padding: 2rem;
  text-align: center;
}
.finder-result.show { display: block; }
.finder-verdict {
  font-family: var(--display);
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.finder-verdict em { font-style: normal; color: var(--trail); }
.finder-result p { font-size: 0.92rem; font-weight: 400; color: var(--haze); margin-bottom: 0.9rem; }
.finder-result ul { list-style: none; margin-bottom: 0.5rem; }
.finder-result li { font-size: 0.95rem; font-weight: 400; line-height: 2; }
.shoe-check { display: flex; align-items: center; }
.shoe-check input { width: 16px; height: 16px; accent-color: var(--trail); cursor: pointer; }
.shoe { grid-template-columns: 28px 2.2fr 1fr 0.8fr 1.2fr 0.9fr; }
@media (max-width: 760px) {
  .shoe { grid-template-columns: 28px 1fr 1fr; }
  .shoe-name { grid-column: 2 / -1; }
}
.portal-card { text-decoration: none; color: var(--chalk); display: block; opacity: 1; transform: none; }
.compare-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 150;
  display: none;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  padding: 0.9rem 1.5rem;
  background: rgba(12,16,20,0.92);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(185,194,188,0.25);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}
.compare-bar.show { display: flex; }
.compare-bar button:disabled { opacity: 0.35; cursor: default; }
.compare-modal {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(7,9,12,0.88);
  padding: 2rem;
}
.compare-modal.show { display: flex; }
.compare-inner {
  position: relative;
  background: var(--night);
  border: 1px solid rgba(185,194,188,0.25);
  padding: 3rem;
  max-width: 860px;
  width: 100%;
  max-height: 88vh;
  overflow: auto;
}
.compare-close {
  position: absolute;
  top: 0.8rem; right: 1.1rem;
  background: none;
  border: none;
  color: var(--chalk);
  font-size: 1.8rem;
  cursor: pointer;
}
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td {
  border: 1px solid rgba(185,194,188,0.18);
  padding: 0.8rem 1rem;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 400;
}
.compare-table th {
  font-family: var(--display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.compare-table td:first-child {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--haze);
}
.compare-table td { color: var(--chalk); }

/* ============ Helles Theme für Unterseiten (body.light) ============ */
body.light { background: var(--chalk); color: var(--night); }
/* Header nur über dem dunklen Hero-Bild (nicht fixiert über hellem Inhalt) */
body.light header { position: absolute; }
body.light .page-hero { color: var(--chalk); }
/* Gedämpfte Texte */
body.light .page-section .intro,
body.light .section-head,
body.light .event-meta,
body.light .event-body p,
body.light .shoe-spec,
body.light .flotte-note,
body.light .member p,
body.light .gear-card .spec,
body.light .finder-result p,
body.light .finder-label,
body.light .legal-page p,
body.light .legal-page li,
body.light .legal-page .stand,
body.light .contact-block { color: #57605A; }
/* Listen, Raster, Karten */
body.light .event-list, body.light .flotte, body.light .team-grid, body.light .service-grid {
  background: rgba(12,16,20,0.14); border-color: rgba(12,16,20,0.14);
}
body.light .event, body.light .shoe, body.light .member, body.light .gear-card { background: #FFFFFF; }
body.light .event:hover, body.light .shoe:hover, body.light .member:hover, body.light .gear-card:hover { background: #F7F2E7; }
/* Links und starke Texte */
body.light .legal-page a, body.light .contact-block a { color: var(--night); border-color: rgba(12,16,20,0.3); }
body.light .contact-block strong { color: var(--night); }
body.light footer a:hover { color: var(--trail); }
/* Buttons und Filter */
body.light .filter, body.light .finder-opts button { color: var(--night); border-color: rgba(12,16,20,0.35); }
body.light .filter.on, body.light .finder-opts button.on { color: var(--chalk); }
body.light .page-section .cta { border-color: var(--night); color: var(--night); background: transparent; backdrop-filter: none; }
body.light .page-section .cta:hover { background: var(--trail); border-color: var(--trail); color: var(--chalk); }
body.light .portal-card { color: var(--night); }
body.light .gear-card { color: var(--night); }
body.light .gear-grid.steps .gear-card { opacity: 1; transform: none; }
body.light .gear-card .spec { color: #57605A; }
/* Vergleich */
body.light .compare-bar { background: rgba(244,240,230,0.96); border-top-color: rgba(12,16,20,0.2); color: var(--night); }
body.light .compare-bar .filter:not(.on) { color: var(--night); }
body.light .compare-inner { background: var(--chalk); border-color: rgba(12,16,20,0.2); color: var(--night); }
body.light .compare-close { color: var(--night); }
body.light .compare-table th, body.light .compare-table td { border-color: rgba(12,16,20,0.2); }
body.light .compare-table td { color: var(--night); }
body.light .compare-table td:first-child { color: #57605A; }
/* Hinweiskästen */
body.light .placeholder-note { color: var(--night); }
body.light .finder-result { background: #FFFFFF; }
body.light .compare-inner .cta { border-color: var(--night); color: var(--night); background: transparent; backdrop-filter: none; }
body.light .compare-inner .cta:hover { background: var(--trail); border-color: var(--trail); color: var(--chalk); }

/* ============ Marken-Zeile ============ */
.brands-strip { padding: 8vh 7vw; text-align: center; }
.brands-strip .bs-head {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--haze); margin-bottom: 2.2rem;
}
.brands-strip .bs-list {
  display: flex; flex-wrap: wrap; justify-content: center;
  column-gap: 2.6rem; row-gap: 1rem;
}
.brands-strip .bs-list span {
  font-family: var(--display); font-size: clamp(1.2rem, 2.6vw, 1.9rem);
  text-transform: uppercase; letter-spacing: 0.04em; opacity: 0.85;
}
.brands-strip .bs-note { margin-top: 1.6rem; font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.18em; color: var(--haze); text-transform: uppercase; }
body.light .brands-strip .bs-head, body.light .brands-strip .bs-note { color: #57605A; }

/* Breitbild-Schirme (Ultrawide): Bildausschnitt der ersten Hero-Szene nach unten
   verschieben, damit die Läuferin sichtbar bleibt (3:2-Bild in 21:9-Viewport) */
@media (min-aspect-ratio: 9/5) {
  #shot0 img, #shot0 video { object-position: center 72%; }
}

/* ============ Bild-Hintergründe für Inhalts-Szenen ============ */
.scene-content .scene-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.42; pointer-events: none;
}
.scene-content::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(12,16,20,0.55) 0%, rgba(12,16,20,0.25) 45%, rgba(12,16,20,0.6) 100%);
}
.scene-content .gear-inner { position: relative; z-index: 2; }
/* ============ Footer kompakt + Bergsilhouette ============ */
.footer-ridge { display: block; width: 100%; height: 72px; margin-bottom: -2px; }
@media (max-width: 899px) { .footer-ridge { height: 40px; } }

/* Gratlinie der Footer-Silhouette: nur auf dunklen Seiten sichtbar */
.footer-ridge .fr-line { stroke: var(--trail); stroke-width: 2; vector-effect: non-scaling-stroke; }
body.light .footer-ridge .fr-line { stroke: var(--trail); stroke-width: 2; vector-effect: non-scaling-stroke; }
.footer-ridge { background: #F4F0E6; }

/* Auf dunklen Seiten: Sektion vor dem Footer leicht aufhellen, damit die Bergsilhouette sichtbar wird */
body:not(.light) .brands-strip { background: #F4F0E6; color: var(--night); }
body:not(.light) .brands-strip .bs-head, body:not(.light) .brands-strip .bs-note { color: #57605A; }
