/* ============================================================
   DPM VIDS – Public Stylesheet
   Design: warmes Dunkel, Sunburst-Orange, mechanische Typo
   ============================================================ */

:root {
  /* Farben */
  --ink:        #16130f;   /* Hintergrund, warm near-black */
  --ink-2:      #1d1811;   /* Sektionen alt */
  --card:       #221c14;
  --card-2:     #2a2318;
  --line:       #392f22;
  --cream:      #f5efe3;   /* Haupttext */
  --cream-dim:  #d8cebb;   /* gedämpfter Text */
  --muted:      #a89b85;
  --orange:     #f5920b;
  --amber:      #fdb827;
  --orange-ink: #1a1204;

  /* Typo */
  --display: "Space Grotesk", system-ui, sans-serif;
  --body:    "IBM Plex Sans", system-ui, sans-serif;
  --mono:    "IBM Plex Mono", ui-monospace, monospace;

  /* Maße */
  --wrap: 1200px;
  --wrap-narrow: 760px;
  --radius: 16px;
  --radius-sm: 10px;
}

/* ---------- Saisonale Themes (serverseitig bestimmt, siehe lib/theme.js) ---------- */
body.theme-winter {
  --ink:        #0b1420;
  --ink-2:      #101c2c;
  --card:       #142236;
  --card-2:     #1a2b42;
  --line:       #24374f;
  --cream:      #eef6ff;
  --cream-dim:  #c9dcef;
  --muted:      #7f9ab3;
  --orange:     #4fa8e0;
  --amber:      #8fd6ff;
  --orange-ink: #04141f;
}
body.theme-halloween {
  --ink:        #120a1a;
  --ink-2:      #180f22;
  --card:       #221530;
  --card-2:     #2b1a3d;
  --line:       #3d2452;
  --cream:      #f3e9ff;
  --cream-dim:  #d9c4f0;
  --muted:      #a389c2;
  --orange:     #ff7518;
  --amber:      #b357f5;
  --orange-ink: #1f0a00;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--ink);
  color: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.5rem); }
.wrap-narrow { max-width: var(--wrap-narrow); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--orange); color: var(--orange-ink); padding: .6rem 1rem; border-radius: 0 0 8px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; border-radius: 4px; }

/* ---------- Typo-Bausteine ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}
.section-title, .page-title, .article-title {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--cream);
}
.section-title { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
.page-title    { font-size: clamp(2rem, 5vw, 3.4rem); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--ink) 82%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand-logo { border-radius: 50%; box-shadow: 0 0 0 2px var(--line); }
.brand-name { font-family: var(--display); font-weight: 700; font-size: 1.25rem; letter-spacing: .01em; }

.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2rem); }
.site-nav a { font-weight: 500; color: var(--cream-dim); font-size: .98rem; transition: color .15s; }
.site-nav a:hover { color: var(--cream); }
.site-nav a.is-active { color: var(--orange); }
.nav-cta {
  background: var(--orange); color: var(--orange-ink) !important;
  padding: .5rem 1rem; border-radius: 999px; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--amber); }
.nav-lang {
  font-family: var(--mono); font-size: .78rem; font-weight: 700; letter-spacing: .04em;
  border: 1px solid var(--line); border-radius: 999px; padding: .3rem .65rem; color: var(--cream-dim) !important;
}
.nav-lang:hover { border-color: var(--orange); color: var(--orange) !important; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .5rem; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--cream); margin: 5px 0; border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(4rem, 12vh, 8rem) 0 clamp(3rem, 8vh, 5rem); }
.hero-inner { position: relative; z-index: 2; max-width: 820px; }
.hero-title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.6rem, 8vw, 5.4rem);
  line-height: 1.02; letter-spacing: -.03em; margin: 1rem 0 1.3rem;
}
.hero-accent { color: var(--orange); }
.hero-lead { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--cream-dim); max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }

/* Sunburst-Signature */
.hero-sunburst {
  position: absolute; z-index: 0; top: 50%; right: -8%;
  width: min(760px, 90vw); aspect-ratio: 1; transform: translateY(-50%);
  pointer-events: none;
}
.sunburst-rays {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    color-mix(in oklab, var(--orange) 22%, transparent) 0deg 9deg,
    transparent 9deg 18deg
  );
  -webkit-mask: radial-gradient(circle, #000 30%, transparent 72%);
          mask: radial-gradient(circle, #000 30%, transparent 72%);
  opacity: .5;
  animation: spin 12s linear infinite;
}
.hero-sunburst::after {
  content: ""; position: absolute; inset: 30%;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklab, var(--amber) 40%, transparent), transparent 70%);
  filter: blur(20px);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Radar-Blips: Disney-Park-Namen, synchron zum rotierenden Strahl */
.park-blip {
  position: absolute; transform: translate(-50%, -50%);
  font-family: var(--mono); font-size: .72rem; font-weight: 700; letter-spacing: .02em;
  color: var(--amber); white-space: nowrap; pointer-events: none;
  text-shadow: 0 0 10px color-mix(in oklab, var(--orange) 65%, transparent);
  opacity: 0; animation: parkBlip 12s linear infinite;
}
@keyframes parkBlip {
  0%, 90%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(.7); }
  4% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  12% { opacity: 0; transform: translate(-50%, -50%) scale(.7); }
}

/* Sternschnuppen – Disney-artiges Funkeln, global auf jeder Seite */
.star-field {
  position: fixed; inset: 0; z-index: 2; pointer-events: none; overflow: hidden;
}
.shooting-star {
  position: absolute;
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 0 8px 2px var(--amber), 0 0 16px 4px color-mix(in oklab, var(--orange) 50%, transparent);
  opacity: 0;
  animation-name: shootingStar;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
  animation-duration: var(--dur, 9s);
  animation-delay: var(--delay, 0s);
}
.shooting-star::before {
  content: ""; position: absolute; top: 50%; right: 0; width: 90px; height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, color-mix(in oklab, var(--amber) 70%, transparent) 55%, var(--cream));
  border-radius: 999px;
}

@keyframes shootingStar {
  0%   { transform: translate(0, 0) rotate(var(--angle, 28deg)); opacity: 0; }
  2%   { opacity: 1; }
  20%  { transform: translate(var(--dx, 70vw), var(--dy, 30vh)) rotate(var(--angle, 28deg)); opacity: 0; }
  100% { transform: translate(var(--dx, 70vw), var(--dy, 30vh)) rotate(var(--angle, 28deg)); opacity: 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--body); font-weight: 600; font-size: 1rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .12s ease, background .15s, border-color .15s, color .15s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--orange); color: var(--orange-ink); }
.btn-primary:hover { background: var(--amber); }
.btn-ghost { border-color: var(--line); color: var(--cream); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-secondary { background: var(--card-2); color: var(--cream); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--orange); }
.btn-block { width: 100%; }

/* ---------- Sektionen ---------- */
.section { padding: clamp(3rem, 8vh, 5.5rem) 0; }
.section-alt { background: var(--ink-2); border-block: 1px solid var(--line); }
.section-head { margin-bottom: 2.2rem; }
.section-head.row { display: flex; align-items: end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.section-head .eyebrow { margin-bottom: .5rem; }
.link-more { font-family: var(--mono); font-size: .85rem; color: var(--orange); font-weight: 600; white-space: nowrap; }
.link-more:hover { color: var(--amber); }

/* ---------- Featured Video ---------- */
.video-embed {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: #000;
  box-shadow: 0 24px 60px -30px rgba(0,0,0,.9);
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.featured-desc { margin-top: 1.2rem; color: var(--cream-dim); max-width: 70ch; }

/* ---------- Video-Grid ---------- */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.video-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .18s, border-color .18s; }
.video-card:hover { transform: translateY(-4px); border-color: color-mix(in oklab, var(--orange) 50%, var(--line)); }
.video-thumb { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; background: #000; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.video-card:hover .video-thumb img { transform: scale(1.05); }
.play-badge {
  position: absolute; inset: 0; margin: auto; width: 58px; height: 58px;
  display: grid; place-items: center; border-radius: 50%;
  background: color-mix(in oklab, var(--orange) 92%, transparent); color: var(--orange-ink);
  font-size: 1.1rem; padding-left: 3px;
  box-shadow: 0 8px 24px -6px rgba(0,0,0,.7); transition: transform .18s;
}
.video-card:hover .play-badge { transform: scale(1.12); }
.video-meta { padding: 1.1rem 1.2rem 1.3rem; }
.video-meta h2, .video-meta h3 { font-family: var(--display); font-weight: 600; font-size: 1.12rem; line-height: 1.25; margin-top: .5rem; }
.video-meta a:hover { color: var(--orange); }

/* ---------- Tags & Meta ---------- */
.tag {
  display: inline-block; font-family: var(--mono); font-size: .68rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--amber);
  background: color-mix(in oklab, var(--amber) 12%, transparent);
  border: 1px solid color-mix(in oklab, var(--amber) 30%, transparent);
  padding: .2rem .55rem; border-radius: 999px; font-weight: 600;
}
.post-meta { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; color: var(--muted); font-size: .85rem; font-family: var(--mono); }
.post-meta time { font-size: .82rem; }

/* ---------- Post-Grid ---------- */
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.6rem; }
.post-grid-full { gap: 2rem; }
.post-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .18s, border-color .18s; }
.post-card:hover { transform: translateY(-4px); border-color: color-mix(in oklab, var(--orange) 45%, var(--line)); }
.post-cover { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--card-2); }
.post-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.post-card:hover .post-cover img { transform: scale(1.04); }
.post-cover-placeholder {
  width: 100%; height: 100%; display: grid; place-items: center;
  background: radial-gradient(120% 140% at 30% 20%, color-mix(in oklab, var(--orange) 14%, transparent), transparent 65%), var(--card-2);
}
.post-cover-placeholder img { width: 48px; height: 48px; border-radius: 50%; opacity: .55; }
.post-card-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.post-card-body h2, .post-card-body h3 { font-family: var(--display); font-weight: 600; font-size: 1.3rem; line-height: 1.2; }
.post-card-body h3 { font-size: 1.15rem; }
.post-card-body a:hover { color: var(--orange); }
.post-excerpt { color: var(--cream-dim); font-size: .95rem; }
.read-more { margin-top: auto; color: var(--orange); font-weight: 600; font-size: .9rem; }
.read-more:hover { color: var(--amber); }

/* ---------- Page-Head ---------- */
.page-head { padding: clamp(3rem, 9vh, 5.5rem) 0 1rem; border-bottom: 1px solid var(--line); position: relative; }
.page-head .eyebrow { margin-bottom: .8rem; }
.page-head.center { text-align: center; border-bottom: 0; }

/* ---------- Article / Prose ---------- */
.article-head { padding: clamp(2.5rem, 7vh, 4rem) 0 1.5rem; }
.article-title { font-size: clamp(2rem, 5.5vw, 3.6rem); margin: 1rem 0; }
.article-lead { font-size: 1.2rem; color: var(--cream-dim); max-width: 60ch; }
.back-link { color: var(--orange) !important; }
.article-cover { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin: 1rem 0 2rem; }
.article-cover img { width: 100%; }

.prose { font-size: 1.08rem; color: var(--cream-dim); }
.prose > * + * { margin-top: 1.15rem; }
.prose h1, .prose h2, .prose h3 { font-family: var(--display); color: var(--cream); line-height: 1.2; letter-spacing: -.01em; margin-top: 2.2rem; }
.prose h1 { font-size: 1.9rem; }
.prose h2 { font-size: 1.55rem; }
.prose h3 { font-size: 1.25rem; }
.prose a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose a:hover { color: var(--amber); }
.prose strong { color: var(--cream); }
.prose ul, .prose ol { padding-left: 1.4rem; }
.prose li + li { margin-top: .4rem; }
.prose img { border-radius: var(--radius-sm); border: 1px solid var(--line); margin-block: 1.5rem; }
.prose img.img-left { float: left; margin: .3rem 1.4rem 1rem 0; max-width: 45%; }
.prose img.img-right { float: right; margin: .3rem 0 1rem 1.4rem; max-width: 45%; }
.prose img.img-center { display: block; margin-inline: auto; }
.prose .prose-video {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius-sm);
  overflow: hidden; margin-block: 1.5rem; border: 1px solid var(--line); background: #000;
}
.prose .prose-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.prose span[style*="font-size"] { line-height: 1.4; }
.prose blockquote {
  border-left: 3px solid var(--orange); padding: .3rem 0 .3rem 1.3rem;
  color: var(--cream); font-style: italic;
}
.prose code {
  font-family: var(--mono); font-size: .9em;
  background: var(--card-2); padding: .15em .4em; border-radius: 5px; border: 1px solid var(--line);
}
.prose pre { background: var(--card-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1rem 1.2rem; overflow-x: auto; }
.prose pre code { background: none; border: 0; padding: 0; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }
.prose table { width: 100%; border-collapse: collapse; }
.prose th, .prose td { border: 1px solid var(--line); padding: .6rem .8rem; text-align: left; }
.prose th { background: var(--card-2); color: var(--cream); }

/* ---------- Quellen ---------- */
.sources-box { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.sources-label { font-family: var(--mono); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: .5rem; }
.sources-list { list-style: none; display: grid; gap: .3rem; font-size: .9rem; color: var(--muted); }
.sources-list a { color: var(--orange); text-decoration: underline; text-underline-offset: 2px; }
.sources-list a:hover { color: var(--amber); }

/* ---------- Beitragsnavigation (Vorheriger/Nächster) ---------- */
.post-pagination { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.post-pagination-link {
  display: grid; gap: .4rem; padding: 1.1rem 1.3rem; border-radius: var(--radius-sm);
  background: var(--card); border: 1px solid var(--line); transition: border-color .15s;
}
.post-pagination-link:hover { border-color: color-mix(in oklab, var(--orange) 45%, var(--line)); }
.post-pagination-next { text-align: right; }
.post-pagination-dir { font-family: var(--mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--orange); }
.post-pagination-title { font-family: var(--display); font-weight: 600; color: var(--cream); }

/* ---------- Related / CTA ---------- */
.related-list { list-style: none; display: grid; gap: .7rem; margin-top: 1rem; }
.related-list a { font-family: var(--display); font-weight: 600; font-size: 1.15rem; color: var(--cream); }
.related-list a:hover { color: var(--orange); }
.cta-box {
  margin-top: 3rem; padding: 2rem; border-radius: var(--radius);
  background: linear-gradient(135deg, color-mix(in oklab, var(--orange) 16%, var(--card)), var(--card));
  border: 1px solid color-mix(in oklab, var(--orange) 30%, var(--line));
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.cta-box p { font-family: var(--display); font-weight: 600; font-size: 1.3rem; }

.empty { color: var(--muted); font-size: 1.1rem; padding: 2rem 0; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--ink-2); margin-top: 2rem; }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; padding-block: 3rem 2rem; align-items: start; justify-items: start; }
.footer-brand { display: flex; gap: .9rem; align-items: center; }
.footer-brand img { border-radius: 50%; }
.footer-title { font-family: var(--display); font-weight: 700; font-size: 1.15rem; }
.footer-tag { color: var(--muted); font-size: .9rem; max-width: 32ch; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; align-items: flex-start; width: 100%; }
.footer-links a { color: var(--cream-dim); font-size: .95rem; }
.footer-links a:hover { color: var(--orange); }
.footer-social { display: flex; flex-direction: row; flex-wrap: wrap; gap: .6rem; align-items: center; }
.social-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--card-2); border: 1px solid var(--line); color: var(--cream-dim);
  transition: color .15s, border-color .15s, background .15s;
}
.social-icon:hover { color: var(--orange); border-color: var(--orange); background: var(--card); }
.footer-legal { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-block: 1.3rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .85rem; font-family: var(--mono); flex-wrap: wrap; }
.footer-legal-links { display: flex; align-items: center; gap: 1.3rem; }
.footer-admin { color: var(--muted); }
.footer-admin:hover { color: var(--orange); }
.footer-cookie-btn { background: none; border: 0; padding: 0; font: inherit; cursor: pointer; }

/* ---------- Werbeplätze (AdSense) ---------- */
.ad-slot-left, .ad-slot-right { display: none; }
@media (min-width: 1600px) {
  .ad-slot-left, .ad-slot-right { display: block; position: fixed; top: 50%; transform: translateY(-50%); width: 160px; z-index: 20; }
  .ad-slot-left { left: 24px; }
  .ad-slot-right { right: 24px; }
}
.ad-slot-footer { max-width: 728px; margin: 2.5rem auto 0; text-align: center; }
.ad-slot-label { display: block; font-family: var(--mono); font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .4rem; }

/* ---------- Cookie-Consent-Banner ---------- */
.consent-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--ink-2); border-top: 1px solid var(--line);
  padding: 1.2rem clamp(1.1rem, 4vw, 2.5rem); box-shadow: 0 -6px 24px rgba(0,0,0,.35);
}
.consent-inner { max-width: var(--wrap); margin-inline: auto; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.consent-text { flex: 1; min-width: 240px; color: var(--cream-dim); font-size: .9rem; }
.consent-text a { color: var(--orange); text-decoration: underline; }
.consent-actions { display: flex; gap: .7rem; flex-wrap: wrap; }
.consent-panel { max-width: var(--wrap); margin: .8rem auto 0; display: grid; gap: .7rem; }
.consent-panel[hidden] { display: none; }
.consent-option { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .6rem .9rem; background: var(--card); border: 1px solid var(--line); border-radius: 10px; font-size: .88rem; }
.consent-option strong { color: var(--cream); }
.consent-option small { display: block; color: var(--muted); font-weight: 400; }

/* ---------- Formulare (Kontakt) ---------- */
.field { display: grid; gap: .45rem; margin-bottom: 1.1rem; }
.field-label { font-size: .85rem; font-weight: 600; color: var(--cream-dim); }
.contact-form input[type=text], .contact-form input[type=email], .contact-form input[type=number], .contact-form input[type=file], .contact-form textarea {
  width: 100%; font-family: var(--body); font-size: .98rem; color: var(--cream);
  background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: .8rem .95rem;
  transition: border-color .15s;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--orange); outline: none; }
.contact-form textarea { resize: vertical; }
.required-mark { color: var(--orange); font-weight: 700; }
.hint { color: var(--muted); font-size: .85rem; }
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.alert { padding: .9rem 1.1rem; border-radius: 10px; font-size: .92rem; font-weight: 500; margin-bottom: 1.4rem; }
.alert-error { background: color-mix(in oklab, #e5654b 16%, transparent); border: 1px solid color-mix(in oklab, #e5654b 40%, transparent); color: #ffd7cd; }
.alert-success { background: color-mix(in oklab, #5bbf7a 16%, transparent); border: 1px solid color-mix(in oklab, #5bbf7a 40%, transparent); color: #d4f5df; }

/* ---------- Clips ---------- */
.clip-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.6rem; }
.clip-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.clip-card video { width: 100%; aspect-ratio: 16/9; background: #000; display: block; }
.clip-card-body { padding: 1.2rem 1.3rem 1.4rem; }
.clip-card-body h2 { font-family: var(--display); font-weight: 600; font-size: 1.2rem; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink); border-bottom: 1px solid var(--line);
    padding: .5rem clamp(1.1rem, 4vw, 2.5rem) 1.3rem;
    transform: translateY(-120%); transition: transform .28s ease; z-index: 40;
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav a { padding: .85rem 0; border-bottom: 1px solid var(--line); }
  .nav-cta { margin-top: .8rem; text-align: center; }
  .section-head.row { align-items: start; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* ---------- Motion-Präferenz ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
}
