/* ===========================================================
   AMBITUS / BOMBACLAN LAUF — Design System
   Modern athletic. Dark base, sunrise gradient, electric lime.
   =========================================================== */

:root {
  /* Color */
  --bg:        #0A0C0D;
  --bg-2:      #101314;
  --surface:   #15191B;
  --surface-2: #1C2123;
  --line:      rgba(255,255,255,0.08);
  --line-2:    rgba(255,255,255,0.14);

  --text:      #F4F2EC;
  --muted:     #9BA1A0;
  --muted-2:   #6E7574;

  --lime:      #C6F24E;
  --lime-dim:  #a9d63a;
  --coral:     #FF5E3A;
  --amber:     #FFB23E;

  --grad-sun:  linear-gradient(100deg, #FF5E3A 0%, #FFB23E 55%, #C6F24E 110%);
  --grad-sun-soft: linear-gradient(100deg, rgba(255,94,58,.18), rgba(198,242,78,.14));

  /* Type */
  --f-display: "Anton", "Arial Narrow", sans-serif;
  --f-head:    "Space Grotesk", system-ui, sans-serif;
  --f-body:    "Inter", system-ui, sans-serif;

  /* Space */
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 18px;
  --radius-sm: 12px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

::selection { background: var(--lime); color: #0a0c0d; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(4rem, 9vw, 8rem); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

/* ---------- Type scale ---------- */
.eyebrow {
  font-family: var(--f-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--lime);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--lime);
  display: inline-block;
}
h1, h2, h3 { font-family: var(--f-head); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
.display {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
.h-xl { font-size: clamp(2.6rem, 7vw, 6rem); }
.h-lg { font-size: clamp(2rem, 5vw, 3.4rem); }
.h-md { font-size: clamp(1.4rem, 3vw, 2rem); }
.lead { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--muted); max-width: 56ch; }
.text-grad {
  background: var(--grad-sun);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.6rem;
  border-radius: 100px;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--lime); color: #0a0c0d; }
.btn--primary:hover { background: #d4ff66; }
.btn--ghost { border-color: var(--line-2); color: var(--text); }
.btn--ghost:hover { border-color: var(--lime); color: var(--lime); }
.btn--lg { padding: 1.1rem 2rem; font-size: 1.05rem; }
.btn .arr { transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* ===========================================================
   HEADER / NAV
   =========================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10,12,13,.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex; align-items: center; gap: .65rem;
  font-family: var(--f-display);
  font-size: 1.5rem; text-transform: uppercase; letter-spacing: .02em;
}
.brand .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--grad-sun); }
.brand img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links a {
  font-family: var(--f-head); font-weight: 500; font-size: .98rem;
  color: var(--muted); transition: color .2s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 2px; background: var(--lime);
}
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); }
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 860px) {
  .nav-links {
    position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; gap: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line);
    padding: 1rem var(--gutter) 2rem;
    transform: translateY(-120%); transition: transform .35s var(--ease);
    height: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 1rem 0; width: 100%; border-bottom: 1px solid var(--line); font-size: 1.1rem; }
  .nav-toggle { display: block; }
  .nav-cta .btn { display: none; }
}

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding-block: 120px 4rem;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,12,13,.55) 0%, rgba(10,12,13,.2) 35%, rgba(10,12,13,.95) 100%),
    radial-gradient(120% 80% at 80% 0%, rgba(255,94,58,.18), transparent 60%);
}
/* placeholder gradient when no photo */
.hero__media--placeholder {
  background:
    radial-gradient(80% 60% at 75% 15%, rgba(255,94,58,.35), transparent 55%),
    radial-gradient(70% 70% at 10% 90%, rgba(198,242,78,.18), transparent 55%),
    var(--bg);
}
.hero__inner { width: 100%; }
.hero__tag {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--f-head); font-weight: 600; font-size: .85rem;
  letter-spacing: .18em; text-transform: uppercase;
  background: rgba(255,255,255,.06); border: 1px solid var(--line-2);
  padding: .55rem 1.1rem; border-radius: 100px; margin-bottom: 1.6rem;
  backdrop-filter: blur(8px);
}
.hero__tag .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 0 rgba(255,94,58,.7); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(255,94,58,.6)} 70%{box-shadow:0 0 0 10px rgba(255,94,58,0)} 100%{box-shadow:0 0 0 0 rgba(255,94,58,0)} }
.hero h1 { font-size: clamp(3.2rem, 13vw, 11rem); margin-bottom: 1.4rem; }
.hero__sub { display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; align-items: center; margin-bottom: 2.2rem; }
.hero__meta { display: flex; align-items: center; gap: .6rem; font-family: var(--f-head); font-weight: 500; }
.hero__meta b { font-weight: 700; }
.hero__meta .ic { color: var(--lime); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* scroll cue */
.scrollcue {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  font-family: var(--f-head); font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--muted-2); display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.scrollcue .bar { width: 1px; height: 36px; background: linear-gradient(var(--muted-2), transparent); animation: drop 1.8s var(--ease) infinite; }
@keyframes drop { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ===========================================================
   MARQUEE
   =========================================================== */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden; padding-block: 1.1rem;
}
.marquee__track { display: flex; gap: 3rem; width: max-content; animation: scroll 28s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee span {
  font-family: var(--f-display); text-transform: uppercase; font-size: 1.7rem;
  color: var(--muted-2); display: inline-flex; align-items: center; gap: 3rem;
}
.marquee span::after { content: "●"; color: var(--coral); font-size: .8rem; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ===========================================================
   STATS
   =========================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.stat { background: var(--surface); padding: clamp(1.6rem, 3vw, 2.6rem); }
.stat__num { font-family: var(--f-display); font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: 1; }
.stat__label { font-family: var(--f-head); color: var(--muted); margin-top: .5rem; font-size: .95rem; }
@media (max-width: 760px){ .stats { grid-template-columns: repeat(2,1fr);} }

/* ===========================================================
   SECTION HEAD
   =========================================================== */
.shead { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: clamp(2rem,4vw,3.5rem); flex-wrap: wrap; }
.shead p { color: var(--muted); max-width: 46ch; margin-top: 1rem; }

/* ===========================================================
   ABOUT / SPLIT
   =========================================================== */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 880px){ .split { grid-template-columns: 1fr; } }
.split__media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; }
.split__media img { width:100%; height:100%; object-fit: cover; }
.media-ph { background: var(--grad-sun-soft); display: grid; place-items: center; color: var(--muted-2); font-family: var(--f-head); border: 1px dashed var(--line-2); }
.split p + p { margin-top: 1.1rem; }
.split .lead { margin-bottom: 1.5rem; }

/* feature chips */
.chips { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.8rem; }
.chip { font-family: var(--f-head); font-size: .9rem; padding: .5rem 1rem; border: 1px solid var(--line-2); border-radius: 100px; color: var(--muted); }
.chip b { color: var(--lime); }

/* ===========================================================
   COMMUNITY / WHATSAPP
   =========================================================== */
.community__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
@media (max-width: 880px){ .community__grid { grid-template-columns: 1fr; } }
.community__media {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line-2); aspect-ratio: 4/3;
  box-shadow: 0 30px 70px -25px rgba(0,0,0,.65);
}
.community__media img { width: 100%; height: 100%; object-fit: cover; }
.community__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(10,12,13,.5) 100%);
}
.wa-meta { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.6rem 0 2rem; }

.btn--wa { background: #25D366; color: #05291a; }
.btn--wa:hover { background: #2bea73; }
.btn--wa svg { width: 20px; height: 20px; }

/* ===========================================================
   ROUTE
   =========================================================== */
.route { background: var(--bg-2); }
.route__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,3.5rem); align-items: center; }
@media (max-width: 880px){ .route__grid { grid-template-columns: 1fr; } }
.route__map {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: 0 30px 70px -25px rgba(0,0,0,.7);
  background: var(--bg);
}
.route__map img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* gradient glow ring */
.route__map::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
  background: var(--grad-sun); opacity: .55; pointer-events: none; z-index: 2;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
/* vignette so the bright map melts into the dark theme */
.route__map .map-grad {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,12,13,.35) 0%, transparent 22% 60%, rgba(10,12,13,.9) 100%),
    radial-gradient(130% 90% at 100% 0%, rgba(255,94,58,.16), transparent 55%);
}
.route__map .map-badge {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 3;
  display: flex; flex-direction: column;
  padding: .7rem 1.1rem; border-radius: 14px;
  background: rgba(10,12,13,.55); border: 1px solid var(--line-2);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
}
.route__map .map-badge .km { font-family: var(--f-display); font-size: 1.9rem; line-height: 1; }
.route__map .map-badge .sub { font-family: var(--f-head); font-size: .8rem; color: var(--muted); margin-top: .25rem; }
.route__map .map-pin {
  position: absolute; top: 1rem; right: 1rem; z-index: 3;
  font-family: var(--f-head); font-weight: 600; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: #0a0c0d; background: var(--lime); padding: .4rem .8rem; border-radius: 100px;
}
.route__list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.route__item { background: var(--surface); padding: 1.3rem 1.5rem; display: flex; gap: 1.2rem; align-items: flex-start; }
.route__item .n { font-family: var(--f-display); font-size: 1.5rem; color: var(--lime); line-height: 1; min-width: 2ch; }
.route__item h4 { font-family: var(--f-head); font-size: 1.05rem; margin-bottom: .2rem; }
.route__item p { color: var(--muted); font-size: .95rem; }

/* ===========================================================
   BLOG CARDS
   =========================================================== */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 980px){ .posts { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 640px){ .posts { grid-template-columns: 1fr;} }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.card__media { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.card__media img { width:100%; height:100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__media .media-ph { width:100%; height:100%; border:0; }
.card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card__cats { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .9rem; }
.tag { font-family: var(--f-head); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--lime); background: rgba(198,242,78,.1); padding: .25rem .6rem; border-radius: 6px; }
.card__title { font-family: var(--f-head); font-size: 1.25rem; font-weight: 700; line-height: 1.25; margin-bottom: .6rem; }
.card__excerpt { color: var(--muted); font-size: .95rem; flex: 1; }
.card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 1.3rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.card__date { font-family: var(--f-head); font-size: .85rem; color: var(--muted-2); }
.card__more { font-family: var(--f-head); font-weight: 600; font-size: .9rem; color: var(--lime); display: inline-flex; gap: .4rem; }
.card:hover .card__more .arr { transform: translateX(4px); }
.card__more .arr { transition: transform .25s var(--ease); }

/* featured card (full width) */
.card--feat { grid-column: 1 / -1; flex-direction: row; }
.card--feat .card__media { aspect-ratio: auto; flex: 1.1; min-height: 340px; }
.card--feat .card__body { flex: 1; justify-content: center; padding: clamp(1.8rem,4vw,3rem); }
.card--feat .card__title { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.card--feat .card__excerpt { font-size: 1.05rem; }
.card--feat .pin { font-family: var(--f-head); font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; color: var(--coral); margin-bottom: 1rem; display: inline-flex; align-items: center; gap: .5rem; }
@media (max-width: 820px){ .card--feat { flex-direction: column; } .card--feat .card__media { min-height: 240px; width: 100%; } }

/* ===========================================================
   TEAM
   =========================================================== */
.team-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1rem; }
@media (max-width: 1024px){ .team-grid { grid-template-columns: repeat(3,1fr);} }
@media (max-width: 720px){ .team-grid { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 440px){ .team-grid { grid-template-columns: 1fr;} }
.member { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .3s, transform .3s var(--ease); }
.member:hover { border-color: var(--line-2); transform: translateY(-4px); }
.member__media { aspect-ratio: 1; overflow: hidden; }
.member__media img { width:100%;height:100%;object-fit:cover; }
.member__media .media-ph { width:100%;height:100%;border:0; font-size: 2.4rem; }
.member__body { padding: 1.3rem; }
.member__name { font-family: var(--f-head); font-size: 1.2rem; font-weight: 700; }
.member__role { color: var(--lime); font-family: var(--f-head); font-size: .9rem; margin-top: .15rem; }
.member__links { display: flex; gap: .8rem; margin-top: 1rem; }
.member__links a { color: var(--muted); transition: color .2s; }
.member__links a:hover { color: var(--lime); }
.member__links svg { width: 19px; height: 19px; }

/* ===========================================================
   CTA BANNER
   =========================================================== */
.cta {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
  padding: clamp(2.5rem, 6vw, 5rem);
  text-align: center;
}
.cta::before {
  content:""; position: absolute; inset: -2px;
  background: radial-gradient(80% 120% at 50% -10%, rgba(255,94,58,.22), transparent 60%),
              radial-gradient(70% 120% at 90% 120%, rgba(198,242,78,.16), transparent 55%);
  z-index: 0;
}
.cta > * { position: relative; z-index: 1; }
.cta h2 { margin-bottom: 1.2rem; }
.cta .lead { margin-inline: auto; margin-bottom: 2rem; }
.cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta__note { display: flex; align-items: flex-start; gap: .6rem; max-width: 540px; margin: 1.6rem auto 0; color: var(--muted); font-size: .95rem; line-height: 1.5; text-align: left; }
.cta__note b { color: var(--text); font-weight: 600; }
.cta__note .dot-lime { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); flex: none; margin-top: .42rem; }

/* ===========================================================
   BREVO ANMELDEFORMULAR (Ambitus-Style-Override)
   =========================================================== */
.signup-embed { max-width: 560px; margin-inline: auto; }
.signup-embed .sib-form { padding: 0 !important; background: transparent !important; text-align: left; }
.signup-embed #sib-form-container { width: 100%; }
.signup-embed #sib-container {
  background: var(--surface) !important;
  border: 1px solid var(--line-2) !important;
  border-radius: var(--radius) !important;
  padding: clamp(1.6rem, 4vw, 2.6rem) !important;
  max-width: none !important;
}
/* Intro-Text + Fakten */
.signup-embed .sib-intro p { color: var(--muted) !important; font-family: var(--f-body) !important; font-size: 1rem; line-height: 1.6; margin: 0 0 1rem; }
.signup-embed .sib-facts { list-style: none; padding: 0; margin: 0 0 1.6rem; display: grid; gap: .5rem; }
.signup-embed .sib-facts li { color: var(--text); font-family: var(--f-head); font-size: .98rem; }
/* Labels */
.signup-embed .entry__label { display: block; margin-bottom: .5rem; color: var(--text) !important; font-family: var(--f-head) !important; font-weight: 600 !important; font-size: .95rem !important; text-align: left !important; }
.signup-embed .entry__specification { color: var(--muted-2) !important; font-size: .82rem !important; margin-top: .4rem; text-align: left !important; }
.signup-embed .form__entry { margin-bottom: 1.1rem; }
/* Inputs */
.signup-embed .input {
  width: 100%;
  background: var(--bg-2) !important;
  border: 1px solid var(--line-2) !important;
  color: var(--text) !important;
  border-radius: 10px !important;
  padding: .85rem 1rem !important;
  font-family: var(--f-body) !important;
  font-size: 1rem !important;
  transition: border-color .2s, box-shadow .2s;
}
.signup-embed .input::placeholder { color: var(--muted-2) !important; }
.signup-embed .input:focus { outline: none !important; border-color: var(--lime) !important; box-shadow: 0 0 0 3px rgba(198,242,78,.15) !important; }
/* Button */
.signup-embed .sib-form-block__button {
  width: 100%;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--lime) !important;
  color: #0a0c0d !important;
  font-family: var(--f-head) !important;
  font-weight: 700 !important;
  font-size: 1.02rem !important;
  border: 0 !important;
  border-radius: 100px !important;
  padding: .95rem 1.8rem !important;
  margin-top: .4rem;
  cursor: pointer;
  transition: transform .2s, filter .2s;
}
.signup-embed .sib-form-block__button:hover { filter: brightness(1.04); transform: translateY(-1px); }
.signup-embed .sib-form-block__button svg { fill: #0a0c0d; }
/* Fehler-Text unter Feldern */
.signup-embed .entry__error { font-family: var(--f-body) !important; font-size: .85rem !important; border-radius: 6px !important; }

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-2); padding-block: clamp(3rem,5vw,4.5rem) 2rem; }
.foot-grid { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 3rem; }
.foot-brand { max-width: 30ch; }
.foot-brand .brand { margin-bottom: 1rem; }
.foot-brand p { color: var(--muted); font-size: .95rem; }
.foot-cols { display: flex; gap: clamp(2rem,6vw,5rem); flex-wrap: wrap; }
.foot-col h5 { font-family: var(--f-head); font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 1.1rem; }
.foot-col a { display: block; color: var(--muted); padding: .35rem 0; transition: color .2s; }
.foot-col a:hover { color: var(--lime); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding-top: 2rem; border-top: 1px solid var(--line); color: var(--muted-2); font-size: .88rem; }
.foot-social { display: flex; gap: 1rem; }
.foot-social a { color: var(--muted); transition: color .2s, transform .2s; }
.foot-social a:hover { color: var(--lime); transform: translateY(-2px); }
.foot-social svg { width: 22px; height: 22px; }
.foot-legal { display: flex; gap: 1.4rem; }
.foot-legal a { color: var(--muted-2); transition: color .2s; }
.foot-legal a:hover { color: var(--lime); }

/* ===========================================================
   BLOG POST (article page)
   =========================================================== */
.post-hero { padding-block: 140px 3rem; position: relative; }
.post-hero__media { position: absolute; inset: 0; z-index: -1; }
.post-hero__media img { width:100%; height:100%; object-fit: cover; }
.post-hero__media::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(10,12,13,.6), rgba(10,12,13,.95)); }
.post-hero__media--ph { background: var(--grad-sun-soft); }
.crumbs { font-family: var(--f-head); font-size: .85rem; color: var(--muted); margin-bottom: 1.5rem; }
.crumbs a:hover { color: var(--lime); }
.post-hero h1 { font-size: clamp(2.2rem, 6vw, 4.2rem); max-width: 18ch; margin-bottom: 1.3rem; }
.post-meta { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; color: var(--muted); font-family: var(--f-head); font-size: .95rem; }
.post-meta .dotsep { width: 4px; height: 4px; border-radius: 50%; background: var(--muted-2); }

.prose { max-width: 720px; margin-inline: auto; font-size: 1.12rem; line-height: 1.8; }
.prose > * + * { margin-top: 1.4rem; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 2.6rem; }
.prose h3 { font-size: 1.3rem; margin-top: 2rem; }
.prose p { color: #dcdad3; }
.prose strong { color: var(--text); }
.prose a { color: var(--lime); text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote {
  border-left: 3px solid var(--lime); padding: .4rem 0 .4rem 1.4rem;
  font-family: var(--f-head); font-size: 1.3rem; line-height: 1.5; color: var(--text); font-style: italic;
}
.prose ul { padding-left: 1.3rem; list-style: disc; color: #dcdad3; }
.prose ul li { margin-top: .5rem; }
.prose img { border-radius: var(--radius); margin-block: 2rem; }
.prose figure figcaption { color: var(--muted-2); font-size: .9rem; text-align: center; margin-top: .6rem; }

/* Wiederverwendbarer Video-Block (YouTube-Embed oder eigene MP4) */
.video-embed {
  position: relative; aspect-ratio: 16 / 9; margin-block: 2rem;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: #000;
}
.video-embed iframe, .video-embed video {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block;
}
.video-embed + figcaption { color: var(--muted-2); font-size: .9rem; text-align: center; margin-top: -1rem; }

.result-table { width: 100%; border-collapse: collapse; font-family: var(--f-head); margin-block: 1.5rem; }
.result-table th, .result-table td { text-align: left; padding: .8rem 1rem; border-bottom: 1px solid var(--line); }
.result-table th { color: var(--lime); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; }
.result-table td b { font-weight: 700; }

.post-foot { max-width: 720px; margin: 4rem auto 0; padding-top: 2rem; border-top: 1px solid var(--line); display:flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }

/* podium (top 3) */
.podium { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 2rem; margin-block: 1.8rem; }
@media (max-width: 620px){ .podium { grid-template-columns: 1fr; } }
.podium h3 { margin: 0 0 .4rem; font-size: 1.1rem; }
.podium .result-table { margin-block: 0; }
.result-table tbody tr:nth-child(even) td { background: rgba(255,255,255,.025); }
.result-table tbody tr:hover td { background: rgba(255,255,255,.05); }
.result-table tr.win td { background: rgba(198,242,78,.09); }
.result-table tr.win td b { color: var(--lime); }
.result-table tr.dnf td { color: var(--muted-2); font-style: italic; }
.result-table td:first-child { white-space: nowrap; width: 1%; }

/* ===========================================================
   PAGE HEADER (blog/team index)
   =========================================================== */
.pagehead { padding-block: 150px clamp(2rem,5vw,4rem); position: relative; }
.pagehead::after { content:""; position:absolute; inset:0; z-index:-1; background: radial-gradient(60% 120% at 80% 0%, rgba(255,94,58,.12), transparent 60%); }
.pagehead h1 { font-size: clamp(2.6rem, 8vw, 5.5rem); margin-block: 1rem; }
.pagehead p { color: var(--muted); max-width: 50ch; font-size: 1.1rem; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
