/* ============================================================
   Parkour Stäfa — Static site components
   Builds on css/styles.css (the design system). These classes
   replace the inline styles the React prototype used so the
   static markup stays clean.
   ============================================================ */

/* ---- Trainer portrait photos (fill the circular .avatar) ---- */
.avatar--photo { overflow: hidden; }
.avatar--photo::after { display: none; }
.avatar--photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- Accessibility ---- */
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 300;
  background: var(--accent); color: #fff; padding: 10px 16px;
  border-radius: 6px; font-weight: 700; transition: top .2s;
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ---- Utilities ---- */
.text-red { color: var(--red); }
.section--alt { background: var(--bg-2); }
.wrap--narrow { max-width: 920px; }
.lead--lg { font-size: 19px; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

.grad-blue { background: linear-gradient(135deg, var(--blue), var(--dark)); }
.grad-red  { background: linear-gradient(135deg, var(--red), #a01318); }
.grad-dark { background: linear-gradient(135deg, var(--dark), #031f2e); }
.bg-blue { background: var(--blue); }
.bg-red  { background: var(--red); }

.section-head { margin: 0 0 48px; max-width: 760px; }
.section-head .eyebrow { margin-bottom: 12px; }
.section-head h2 { margin: 0 0 16px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lead { margin-inline: auto; }

.section-head-row {
  display: flex; justify-content: space-between; align-items: end;
  gap: 20px; flex-wrap: wrap; margin-bottom: 40px;
}
.section-head-row .eyebrow { margin-bottom: 12px; }
.section-head-row h2 { margin: 0; }

/* ---- Nav: distribute links across the full content width ---- */
.nav__inner { justify-content: space-between; }
/* The "Gruppen" group must fill the nav height so its link sits on the
   same baseline as the others (otherwise it floats to the top). */
.nav__group { display: flex; align-items: stretch; }
.nav__group > .nav__link { display: flex; align-items: center; }
@media (max-width: 900px) {
  /* When links would overflow, fall back to natural packing + scroll. */
  .nav__inner { justify-content: flex-start; }
}

/* ---- Brand logo (top-left) ----
   The logo is a transparent PNG with the red wordmark + blue swoosh, so it
   reads on both the light and dark navbar with no recolouring. We only add a
   tiny shadow so the thin blue strokes stay visible against a dark background. */
.logo-ps { gap: 0; }
.logo-ps__img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}
[data-theme="dark"] .logo-ps__img {
  /* keep faint light/blue strokes from blending into the near-black bar */
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.25));
}
@media (max-width: 600px) { .logo-ps__img { height: 36px; } }

/* ---- Header extras ---- */
.site-header__actions { display: flex; align-items: center; gap: 12px; }
.theme-toggle {
  width: 38px; height: 38px; border-radius: 100px;
  border: 1px solid var(--line); background: var(--bg);
  display: grid; place-items: center; cursor: pointer; color: var(--ink);
  transition: border-color .15s, background .15s;
}
.theme-toggle:hover { border-color: var(--ink); }
.theme-toggle__icon::before { content: '☾'; font-size: 16px; line-height: 1; }
[data-theme="dark"] .theme-toggle__icon::before { content: '☀'; }
.logo-tv__ext { color: var(--muted); margin-left: 4px; }
@media (max-width: 520px) { .logo-tv span:not(.logo-tv__dot):not(.logo-tv__ext) { display: none; } }

/* ---- Footer extras ---- */
/* Drop the design-system's 80px top margin — it exposed a strip of page
   background (a white bar in light mode) between content and the dark footer.
   Sections already carry their own bottom padding. */
.footer { margin-top: 0; }
.footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer__brand-name { color: #fff; font-weight: 800; font-size: 18px; letter-spacing: -0.02em; }
.footer__about { font-size: 14px; line-height: 1.6; max-width: 36ch; margin: 0; }
.footer__muted { color: rgba(255,255,255,.5); }

/* ---- Play button ---- */
.play-btn {
  border-radius: 50%; background: rgba(255,255,255,.95); color: var(--red);
  display: grid; place-items: center; box-shadow: 0 10px 40px rgba(0,0,0,.5);
}
.play-btn svg { width: 38%; height: 38%; }
.play-btn--s { width: 64px; height: 64px; }
.play-btn--m { width: 72px; height: 72px; }
.play-btn--l { width: 96px; height: 96px; }

/* ---- Hero (home) ---- */
.hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.hero__dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; }
.hero__title { margin: 0 0 24px; }
.hero__lead { font-size: 20px; margin-bottom: 32px; }
.hero__media { position: relative; }
.video-card {
  display: block; aspect-ratio: 16/9; border-radius: 12px; overflow: hidden;
  background: #000; box-shadow: var(--shadow-lg); position: relative;
}
.video-card__bg { position: absolute; inset: 0; background: linear-gradient(135deg, #064a6c 0%, #0a1420 60%, #1c1c1c 100%); }
.video-card__center { position: absolute; inset: 0; display: grid; place-items: center; }
.video-card__label { position: absolute; left: 20px; bottom: 20px; color: #fff; }
.video-card__kicker { font-size: 11px; letter-spacing: .15em; opacity: .7; text-transform: uppercase; }
.video-card__title { font-weight: 700; margin-top: 4px; }
.hero__badge {
  position: absolute; top: -20px; right: -20px; background: var(--red); color: #fff;
  padding: 10px 18px; border-radius: 100px; font-size: 13px; font-weight: 700;
  letter-spacing: .04em; transform: rotate(6deg); box-shadow: var(--shadow-md);
}

/* ---- Jubiläum video embed ---- */
.video-embed {
  aspect-ratio: 16/9; background: #000; border-radius: 12px; overflow: hidden;
  position: relative; box-shadow: var(--shadow-lg);
}
.video-embed__bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(237,28,36,.35), transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(28,99,183,.35), transparent 50%), #0a1420;
}
.video-embed__center { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; color: #fff; }
.video-embed__center .play-btn { margin: 0 auto 20px; }
.video-embed__hint { font-size: 12px; letter-spacing: .2em; opacity: .6; text-transform: uppercase; margin-bottom: 8px; }
.video-embed__title { font-size: 36px; }

/* ---- Intro ---- */
.intro { border-top: 1px solid var(--line); }
.intro__title { margin: 12px 0 0; }
.intro__lead { margin-top: 0; }
.intro p + p { margin-top: 16px; }
.intro__cta { font-weight: 600; color: var(--ink); }

/* ---- Stats strip ---- */
.stats-strip { padding: 64px 0; background: var(--dark); color: #fff; position: relative; overflow: hidden; }
.stats-strip__diamond {
  position: absolute; right: -5%; top: -30%; width: 40%; aspect-ratio: 1;
  background: var(--red); opacity: .15; clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.stats-strip .wrap { position: relative; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat__num { font-family: var(--ff-display); font-weight: 800; letter-spacing: -0.04em; font-size: clamp(60px, 7vw, 100px); line-height: .9; }
.stat__num--red { color: var(--red); }
.stat__label { font-size: 13px; letter-spacing: .2em; text-transform: uppercase; opacity: .7; }

/* ---- Group card ---- */
.group-card { display: flex; flex-direction: column; }
.group-card__head {
  position: relative; padding: 28px 28px 20px; color: #fff; min-height: 180px;
  display: flex; flex-direction: column; justify-content: space-between; overflow: hidden;
}
.group-card__ghost { position: absolute; right: -30px; top: -30px; font-size: 200px; font-weight: 900; opacity: .12; letter-spacing: -0.08em; line-height: .8; }
.group-card__top { position: relative; z-index: 2; }
.group-card__kicker { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; opacity: .75; font-weight: 600; }
.group-card__name { font-size: 36px; margin: 6px 0 0; }
.group-card__age { position: relative; z-index: 2; font-size: 14px; opacity: .9; font-weight: 500; }
.group-card__body { padding: 24px 28px; flex: 1; display: flex; flex-direction: column; gap: 18px; }
.gc__sched { display: flex; flex-direction: column; gap: 8px; }
.gc__sched-row { display: flex; gap: 10px; align-items: baseline; }
.gc__day { font-size: 11px; font-weight: 700; color: var(--accent); min-width: 24px; }
.gc__time { font-size: 14px; color: var(--ink-2); }
.gc__loc { font-size: 13px; color: var(--muted); }
.gc__leader { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 14px; }
.gc__leader-name { font-weight: 700; font-size: 14px; }
.gc__leader-role { font-size: 12px; color: var(--muted); }
.gc__arrow { margin-left: auto; color: var(--accent); font-size: 14px; font-weight: 600; }

/* ---- CTA band ---- */
.cta-band__inner { text-align: center; }
.cta-band__inner h3 { margin: 0 0 16px; }
.cta-band__inner .lead { margin: 0 auto 28px; }

/* ---- Page header (interior pages) ---- */
.page-header {
  padding: clamp(56px, 8vw, 96px) 0 clamp(32px, 5vw, 48px);
  background: var(--bg-2); border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.page-header__ghost {
  position: absolute; right: -4%; top: -20%; font-size: clamp(200px, 28vw, 420px);
  font-weight: 900; color: var(--accent); opacity: .06; letter-spacing: -0.08em;
  line-height: .8; pointer-events: none;
}
.page-header__inner { position: relative; }
.page-header .eyebrow { margin-bottom: 16px; }
.page-header__title { margin: 0 0 20px; max-width: 16ch; }

/* ---- Timeline ---- */
.timeline { position: relative; max-width: 1080px; margin: 0 auto; }
.tl-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--line); transform: translateX(-1px); }
.tl-entry { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; position: relative; margin-bottom: 64px; }
.tl-dot {
  position: absolute; left: 50%; top: 24px; transform: translate(-50%, 0); z-index: 2;
  width: 16px; height: 16px; border-radius: 50%; background: var(--bg);
  border: 3px solid var(--red); box-shadow: 0 0 0 4px var(--bg-2);
}
.tl-entry--left .tl-card { grid-column: 1; text-align: right; padding-right: 32px; }
.tl-entry--right .tl-card { grid-column: 2; text-align: left; padding-left: 32px; }
.tl-year { display: inline-block; padding: 4px 10px; background: var(--red); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .08em; border-radius: 4px; margin-bottom: 12px; }
.tl-title { font-size: 32px; margin: 0 0 12px; line-height: 1; }
.tl-body { color: var(--ink-2); font-size: 15px; line-height: 1.6; margin: 0; }
.tl-portraits { margin-top: 20px; display: flex; gap: 16px; flex-wrap: wrap; }
.tl-entry--left .tl-portraits { justify-content: flex-end; }
.tl-entry--right .tl-portraits { justify-content: flex-start; }
.tl-portrait { display: flex; flex-direction: column; align-items: center; text-align: center; width: 96px; }
.tl-portrait .avatar { margin: 0 auto; }
.tl-portrait__name { font-size: 12px; font-weight: 700; margin-top: 8px; }
.tl-portrait__role { font-size: 11px; color: var(--muted); }
.tl-images { margin-top: 20px; display: grid; gap: 12px; }
.tl-images--1 { grid-template-columns: 1fr; }
.tl-images--2 { grid-template-columns: 1fr 1fr; }
.tl-ig { margin-top: 20px; }
/* Instagram embed: cap width and let embed.js size the iframe. The .instagram-media
   blockquote ships with its own min-width that we relax for narrow timeline cards. */
.tl-ig--embed { display: flex; }
.tl-entry--left .tl-ig--embed { justify-content: flex-end; }
.tl-ig--embed .instagram-media { min-width: 0 !important; width: 100% !important; max-width: 360px !important; margin: 0 !important; }
@media (max-width: 800px) { .tl-entry--left .tl-ig--embed { justify-content: flex-start; } }
@media (max-width: 800px) {
  .tl-card { text-align: left !important; padding-left: 40px !important; padding-right: 0 !important; }
  .tl-portraits { justify-content: flex-start !important; }
}

/* ---- Group detail ---- */
.group-hero { color: #fff; position: relative; padding: clamp(60px, 9vw, 120px) 0 clamp(48px, 7vw, 96px); overflow: hidden; }
.group-hero__ghost { position: absolute; right: -8%; top: -30%; font-size: clamp(300px, 42vw, 640px); font-weight: 900; line-height: .8; letter-spacing: -0.08em; color: rgba(255,255,255,.06); pointer-events: none; }
.group-hero__inner { position: relative; }
.group-hero__back { display: inline-block; color: rgba(255,255,255,.7); font-size: 13px; margin-bottom: 32px; font-weight: 500; }
.group-hero__back:hover { color: #fff; }
.group-hero__kicker { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; opacity: .7; margin-bottom: 16px; }
.group-hero h1 { margin: 0; }
.group-hero__desc { color: rgba(255,255,255,.85); margin-top: 24px; max-width: 56ch; font-size: 18px; }
.group-info { background: rgba(255,255,255,.08); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.15); border-radius: 12px; padding: 24px; color: #fff; }
.group-info__title { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; opacity: .7; margin-bottom: 16px; font-weight: 600; }
.group-info__rows { display: flex; flex-direction: column; gap: 14px; }
.info-row { display: flex; gap: 12px; }
.info-row__label { min-width: 70px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; opacity: .6; padding-top: 3px; }
.info-row__value { font-weight: 600; font-size: 15px; }
.group-info__btn { display: block; text-align: center; margin-top: 24px; background: #fff; color: var(--dark); border-radius: 6px; padding: 14px 18px; font-weight: 700; font-size: 15px; transition: transform .15s; }
.group-info__btn:hover { transform: translateY(-1px); }
.group-hero.grad-red .group-info__btn { color: var(--red); }
.leader-block { margin-bottom: 40px; }
.leader-block:last-child { margin-bottom: 0; }
.leader-block .eyebrow { margin-bottom: 20px; }
.leader-main { display: flex; gap: 20px; align-items: center; background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 24px; max-width: 480px; }
.leader-main__name { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.leader-main__role { color: var(--muted); margin-top: 4px; }
.leader-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.leader-chip { display: flex; gap: 14px; align-items: center; background: var(--bg); border: 1px solid var(--line); border-radius: 8px; padding: 14px; }
.leader-chip span { font-size: 14px; font-weight: 600; }

/* ---- Erfolge: medals + events ---- */
.medals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.medal-card { border: 1px solid var(--line); border-radius: 12px; padding: 40px 32px; position: relative; overflow: hidden; }
.medal-card--gold { background: linear-gradient(135deg, #fef6d8, #f5deaf); }
.medal-card--silver { background: linear-gradient(135deg, #f3f5f8, #d9dde3); }
.medal-card--bronze { background: linear-gradient(135deg, #f7e3cd, #e4b084); }
.medal-card__ghost { position: absolute; right: -20px; top: -20px; opacity: .15; }
.medal-card__body { position: relative; z-index: 2; }
.medal-card__num { font-size: clamp(72px, 9vw, 128px); margin: 16px 0 8px; color: #0a1420; line-height: .85; }
.medal-card__label { font-size: 14px; font-weight: 700; color: #0a1420; letter-spacing: .06em; text-transform: uppercase; }
.medals-note { text-align: center; margin-top: 20px; font-size: 13px; color: var(--muted); }

.events { display: flex; flex-direction: column; gap: 28px; }
.event { background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 24px 28px; }
.event__title { margin: 0 0 16px; font-size: 17px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.event__rows { display: flex; flex-direction: column; gap: 10px; padding-left: 4px; }
.event-row { display: grid; grid-template-columns: 32px 1fr auto; gap: 14px; align-items: center; padding-bottom: 10px; border-bottom: 1px solid var(--bg-3); }
.event-row:last-child { border-bottom: none; padding-bottom: 0; }
.event-row__icon { display: grid; place-items: center; }
.event-row__num { min-width: 22px; text-align: center; font-weight: 800; color: var(--muted); font-size: 14px; }
.event-row__cat { font-size: 14px; color: var(--ink-2); }
.event-row__rank { font-weight: 700; color: var(--ink); }
.event-row__athlete { font-weight: 700; font-size: 14px; }
.event__ig { margin-top: 20px; padding-top: 20px; border-top: 1px dashed var(--line); display: grid; gap: 12px; }
.event__ig--1 { grid-template-columns: 1fr; }
.event__ig--2 { grid-template-columns: 1fr 1fr; }
.event__ig--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 640px) { .event__ig--2, .event__ig--3 { grid-template-columns: 1fr; } }

/* ---- Instagram card ---- */
.ig-card { display: block; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: var(--bg); transition: transform .2s, box-shadow .2s; }
.ig-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.ig-card__head { padding: 10px 14px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 600; }
.ig-card__src { margin-left: auto; color: var(--muted); font-weight: 400; font-size: 12px; }
.ig-card__thumb { aspect-ratio: 1; background: linear-gradient(135deg, var(--blue), var(--dark)); position: relative; display: grid; place-items: center; color: rgba(255,255,255,.9); }
.ig-card__thumb svg { width: 48px; height: 48px; opacity: .85; }
.ig-card__thumb::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.15), transparent 60%); }
.ig-card__cap { padding: 12px 14px; font-size: 13px; color: var(--ink-2); }

/* ---- Auftritte ---- */
.perf-list { border-top: 1px solid var(--line); }
.perf-row { display: grid; grid-template-columns: 1fr auto auto; gap: 24px; align-items: center; padding: 24px 4px; border-bottom: 1px solid var(--line); color: inherit; transition: padding .2s, background .15s; }
.perf-row:hover { padding-left: 16px; background: linear-gradient(to right, color-mix(in oklab, var(--red) 6%, transparent), transparent 40%); }
.perf-row__name { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.perf-row__date { font-size: 14px; color: var(--muted); font-weight: 500; }
.perf-row__arrow { color: var(--accent); font-size: 18px; }

/* ---- Workshops ---- */
.workshop-grid { gap: 32px; }
.workshop-col { background: var(--bg); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; }
.workshop-col__head { padding: 28px 28px 20px; color: #fff; position: relative; overflow: hidden; }
.workshop-col__ghost { position: absolute; right: -10px; top: -30px; font-size: 140px; font-weight: 900; opacity: .12; letter-spacing: -0.06em; }
.workshop-col__num { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; opacity: .75; font-weight: 600; position: relative; }
.workshop-col__title { font-size: 32px; margin: 6px 0 0; position: relative; }
.workshop-list { list-style: none; padding: 0; margin: 0; }
.workshop-item { padding: 18px 28px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 16px; transition: background .15s, padding .2s; }
.workshop-item:last-child { border-bottom: none; }
.workshop-item:hover { background: var(--bg-2); padding-left: 36px; }
.workshop-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.workshop-dot--blue { background: var(--blue); }
.workshop-dot--red { background: var(--red); }
.workshop-item span:last-child { font-size: 15px; font-weight: 500; }

/* ---- Parkour Day accordion ---- */
.accordion { display: flex; flex-direction: column; gap: 16px; }
.acc-item { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: var(--bg); transition: border-color .2s; }
.acc-item.is-open { border-color: var(--accent); }
.acc-btn { width: 100%; display: flex; align-items: center; gap: 20px; padding: 24px 28px; background: transparent; border: none; cursor: pointer; text-align: left; color: inherit; }
.acc-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--bg-2); color: var(--ink); display: grid; place-items: center; font-size: 22px; line-height: 1; flex-shrink: 0; transition: all .2s; }
.acc-icon::before { content: '+'; }
.acc-item.is-open .acc-icon { background: var(--red); color: #fff; }
.acc-item.is-open .acc-icon::before { content: '−'; }
.acc-head { flex: 1; display: flex; align-items: center; gap: 12px; }
.acc-title { font-size: 28px; margin: 0; }
.acc-badge { padding: 3px 10px; background: var(--red); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .08em; border-radius: 100px; }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.2,.7,.2,1); }
.acc-item.is-open .acc-body { max-height: 900px; }
.acc-body__inner { padding: 0 28px 28px 84px; }
@media (max-width: 900px) { .acc-body__inner { padding-left: 28px; padding-right: 16px; } }
.pd-current { margin: 0; }
.pd-link { color: var(--red); font-weight: 700; border-bottom: 2px solid currentColor; }
.pd-btn { margin-top: 20px; }
.pd-video { display: block; aspect-ratio: 16/9; background: #000; border-radius: 8px; position: relative; overflow: hidden; margin-bottom: 20px; color: #fff; }
.pd-video__facade { display: block; width: 100%; height: 100%; border: 0; padding: 0; margin: 0; background: none; color: #fff; cursor: pointer; position: relative; transition: transform .2s, box-shadow .2s; }
.pd-video__facade:hover { transform: scale(1.01); }
.pd-video__facade:hover .play-btn { transform: scale(1.06); }
.pd-video__bg { position: absolute; inset: 0; background: linear-gradient(135deg, #064a6c, #0a1420); }
.pd-video__center { position: absolute; inset: 0; display: grid; place-items: center; align-content: center; gap: 8px; text-align: center; color: #fff; }
.pd-video__center .play-btn { margin: 0 auto 12px; transition: transform .2s; }
.pd-video__label { font-size: 13px; font-weight: 600; }
.pd-video__player { position: absolute; inset: 0; width: 100%; height: 100%; background: #000; display: block; }
.pd-video__fallback { padding: 16px; font-size: 13px; }
.pd-video__open { display: inline-block; margin-top: 8px; color: var(--volt, #c4ff00); font-weight: 600; border-bottom: 2px solid currentColor; }
[data-theme] .pd-video__open { color: #fff; }
.pd-dl { display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 6px; font-weight: 600; font-size: 14px; }
.pd-dl:hover { border-color: var(--ink); }

/* ---- Kontakt ---- */
.contact-aside .eyebrow { margin-bottom: 16px; }
.contact-item { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); color: inherit; }
.contact-item__label { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.contact-item__value { font-weight: 700; font-size: 16px; }
a.contact-item:hover .contact-item__value { color: var(--accent); }
.contact-note { margin-top: 32px; padding: 20px; background: var(--bg-2); border-radius: 10px; border: 1px solid var(--line); }
.contact-note__title { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 8px; }
.contact-note__text { font-size: 14px; color: var(--ink-2); }

.form { background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 32px; box-shadow: var(--shadow-sm); }
.form__title { font-size: 28px; margin: 0 0 24px; }
.field { display: block; margin-bottom: 16px; }
.field__label { display: block; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 6px;
  font-size: 15px; font-family: inherit; background: var(--bg); color: var(--ink);
  outline: none; transition: border-color .15s;
}
.field select { cursor: pointer; }
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.form__turnstile { margin: 4px 0 4px; min-height: 65px; }
.form__status { margin: 4px 0 0; font-size: 14px; font-weight: 600; min-height: 1.2em; }
.form__status--ok { color: #1a9d5a; }
.form__status--err { color: var(--red); }
.form__submit { width: 100%; justify-content: center; margin-top: 12px; }
.form__submit:disabled { opacity: .7; cursor: progress; }
.form__note { font-size: 12px; color: var(--muted); margin-top: 12px; text-align: center; }

/* ---- Media ---- */
.media-card { display: flex; flex-direction: column; color: inherit; }
.media-card__visual { aspect-ratio: 4/5; position: relative; overflow: hidden; color: #fff; display: flex; flex-direction: column; justify-content: space-between; padding: 24px; }
.media-card__glow { position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.15), transparent 60%); pointer-events: none; }
.media-card__top { display: flex; justify-content: space-between; position: relative; }
.media-card__tag { padding: 4px 10px; background: rgba(255,255,255,.15); border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.media-card__head { position: relative; }
.media-card__title { font-size: 28px; margin: 0 0 6px; line-height: 1; }
.media-card__sub { font-size: 14px; opacity: .8; }
.media-card__foot { padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; }
.media-card__foot > span:first-child { font-size: 13px; color: var(--muted); }
.media-card__arrow { color: var(--accent); font-weight: 600; }
.media-card__arrow.is-muted { color: var(--muted); }

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .marquee__track { animation: none; }
}
