:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-2: #0c0c0a;
  --surface: rgba(255,255,255,.075);
  --surface-strong: rgba(255,255,255,.12);
  --text: #fffceb;
  --muted: rgba(255,252,235,.72);
  --muted-2: rgba(255,252,235,.52);
  --brand: #fff600;
  --brand-2: #d6ce00;
  --ink: #050505;
  --line: rgba(255,246,0,.20);
  --line-strong: rgba(255,246,0,.42);
  --shadow: 0 24px 80px rgba(0,0,0,.42);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1200px;
  --header-h: 84px;
}
html.theme-light {
  color-scheme: light;
  --bg: #fffbe4;
  --bg-2: #f6f0c4;
  --surface: rgba(5,5,5,.06);
  --surface-strong: rgba(5,5,5,.095);
  --text: #0a0a06;
  --muted: rgba(10,10,6,.72);
  --muted-2: rgba(10,10,6,.55);
  --brand: #fff000;
  --brand-2: #111;
  --line: rgba(10,10,6,.14);
  --line-strong: rgba(255,199,0,.48);
  --shadow: 0 24px 80px rgba(70,60,0,.18);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(255,246,0,.18), transparent 32rem),
    radial-gradient(circle at 95% 0%, rgba(255,246,0,.10), transparent 28rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  top: 0 !important;
  position: static !important;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: 10000;
  background: linear-gradient(90deg, var(--brand), #fff, var(--brand));
  box-shadow: 0 0 25px rgba(255,246,0,.8);
}
.site-header {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%); z-index: 9999;
  width: min(calc(100% - 28px), 1360px); height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 10px 14px 10px 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  background: rgba(5,5,5,.58);
  backdrop-filter: blur(24px) saturate(1.3);
  box-shadow: 0 18px 60px rgba(0,0,0,.36);
  transition: .35s ease;
}
html.theme-light .site-header { background: rgba(255,252,220,.82); border-color: rgba(5,5,5,.08); }
.site-header.scrolled { top: 8px; height: 72px; border-radius: 22px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 240px; }
.brand-logo { width: 60px; height: 60px; object-fit: contain; filter: drop-shadow(0 10px 18px rgba(255,246,0,.18)) drop-shadow(0 10px 16px rgba(0,0,0,.35)); transition: .35s ease; }
.site-header.scrolled .brand-logo { width: 48px; height: 48px; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: 1.05rem; letter-spacing: .01em; }
.brand-copy em { font-size: .72rem; color: var(--muted); font-style: normal; margin-top: 4px; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 2px; }
.main-nav a {
  padding: 10px 12px; border-radius: 999px; color: var(--muted); font-size: .88rem; font-weight: 650;
  transition: .22s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--text); background: rgba(255,246,0,.12); box-shadow: inset 0 0 0 1px rgba(255,246,0,.20); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.theme-toggle, .menu-toggle, .language-btn {
  border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.08); color: var(--text); cursor: pointer;
  transition: .25s ease; backdrop-filter: blur(18px);
}
.theme-toggle { width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; }
.theme-toggle:hover, .language-btn:hover { border-color: rgba(255,246,0,.42); background: rgba(255,246,0,.13); transform: translateY(-1px); }
.menu-toggle { display: none; width: 44px; height: 42px; border-radius: 14px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.menu-toggle span { width: 19px; height: 2px; background: currentColor; border-radius: 99px; transition: .25s ease; }
.language-selector { position: relative; }
.language-btn { height: 42px; border-radius: 15px; padding: 0 12px; display: flex; align-items: center; gap: 8px; font-weight: 750; }
.language-btn img, .language-menu img { width: 24px; height: 17px; object-fit: cover; border-radius: 3px; box-shadow: 0 2px 8px rgba(0,0,0,.22); }
.chevron { opacity: .72; transition: .25s ease; }
.language-selector.open .chevron { transform: rotate(180deg); }
.language-menu {
  position: absolute; top: calc(100% + 12px); right: 0; width: 220px; padding: 8px;
  border: 1px solid rgba(255,246,0,.24); border-radius: 18px; background: rgba(10,10,8,.94);
  box-shadow: 0 24px 60px rgba(0,0,0,.46); backdrop-filter: blur(20px); display: none; overflow: hidden;
}
html.theme-light .language-menu { background: rgba(255,252,224,.96); border-color: rgba(5,5,5,.12); }
.language-selector.open .language-menu { display: block; animation: menuPop .18s ease both; }
@keyframes menuPop { from { opacity: 0; transform: translateY(-8px) scale(.98); } to { opacity: 1; transform: none; } }
.language-menu button { width: 100%; display: flex; align-items: center; gap: 10px; padding: 10px 11px; border: 0; border-radius: 12px; background: transparent; color: var(--text); cursor: pointer; font-weight: 700; text-align: left; }
.language-menu button:hover, .language-menu button.active { background: rgba(255,246,0,.14); }
.language-menu button.active::after { content: "✓"; margin-left: auto; color: var(--brand); }
.google-translate-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; left: -99999px; top: -99999px; }
.goog-logo-link, .gskiptranslate, .goog-te-gadget span, .goog-te-banner-frame, #goog-gt-tt, .goog-te-balloon-frame, div#goog-gt-, iframe.skiptranslate, .VIpgJd-ZVi9od-aZ2wEe-wOHMyf, .VIpgJd-ZVi9od-ORHb-OEVmcd { display: none !important; visibility: hidden !important; }
.goog-te-gadget { color: transparent !important; font-size: 0 !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }
body > .skiptranslate { display: none !important; }
.hero { min-height: 100svh; padding: calc(var(--header-h) + 48px) clamp(22px, 5vw, 72px) 42px; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(360px, .88fr); align-items: center; gap: clamp(26px, 5vw, 72px); position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 65% 45%, rgba(255,246,0,.22), transparent 24rem), radial-gradient(circle at 0% 80%, rgba(255,246,0,.10), transparent 26rem); }
.hero::after { content: ""; position: absolute; inset: auto -20% -20% -20%; height: 32vh; background: linear-gradient(180deg, transparent, rgba(255,246,0,.08)); filter: blur(35px); pointer-events: none; }
.hero-content, .hero-visual { position: relative; z-index: 1; }
.eyebrow, .kicker { color: var(--brand); text-transform: uppercase; letter-spacing: .16em; font-weight: 900; font-size: .78rem; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.eyebrow span { width: 38px; height: 2px; border-radius: 99px; background: var(--brand); box-shadow: 0 0 18px rgba(255,246,0,.9); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(3rem, 7vw, 6.35rem); line-height: .91; letter-spacing: -.075em; max-width: 900px; margin-bottom: 22px; }
h2 { font-size: clamp(2.1rem, 4.3vw, 4.4rem); line-height: .98; letter-spacing: -.055em; margin-bottom: 18px; }
h3 { font-size: 1.28rem; letter-spacing: -.02em; margin-bottom: 12px; }
p { color: var(--muted); line-height: 1.75; }
.hero-lead { font-size: clamp(1.04rem, 1.5vw, 1.36rem); max-width: 720px; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 0 20px; border-radius: 999px; font-weight: 850; border: 1px solid transparent; transition: .28s cubic-bezier(.2,.8,.2,1); }
.btn-primary { background: var(--brand); color: #050505; box-shadow: 0 14px 40px rgba(255,246,0,.26); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 55px rgba(255,246,0,.38); }
.btn-ghost { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); color: var(--text); }
.btn-ghost:hover { background: rgba(255,246,0,.12); border-color: rgba(255,246,0,.35); transform: translateY(-3px); }
.hero-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; max-width: 680px; }
.hero-metrics article { padding: 18px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.06); backdrop-filter: blur(18px); position: relative; overflow: hidden; }
.hero-metrics article::before { content: ""; position: absolute; inset: -80% auto auto -60%; width: 120%; height: 220%; background: linear-gradient(90deg, transparent, rgba(255,246,0,.24), transparent); transform: rotate(26deg); transition: .8s ease; }
.hero-metrics article:hover::before { left: 120%; }
.hero-metrics strong { display: block; font-size: 1.36rem; color: var(--brand); }
.hero-metrics span { display: block; color: var(--muted); font-size: .86rem; }
.orbital-card { position: relative; min-height: 560px; display: grid; place-items: center; }
.orbital-card::before { content: ""; position: absolute; width: 96%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(255,246,0,.20), transparent 65%); filter: blur(30px); animation: pulseGlow 4s ease-in-out infinite; }
@keyframes pulseGlow { 50% { transform: scale(1.08); opacity: .7; } }
.orbital-card img { width: min(420px, 80vw); position: relative; z-index: 2; filter: drop-shadow(0 30px 60px rgba(0,0,0,.58)); animation: float 5.5s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(-14px) rotate(-1deg); } }
.orbit { position: absolute; border: 1px solid rgba(255,246,0,.35); border-radius: 50%; animation: spin 22s linear infinite; }
.orbit-one { width: 520px; height: 520px; }
.orbit-two { width: 400px; height: 400px; animation-direction: reverse; transform: rotate(28deg); }
@keyframes spin { to { rotate: 360deg; } }
.floating-tag { position: absolute; z-index: 3; padding: 10px 16px; border-radius: 999px; background: rgba(5,5,5,.72); border: 1px solid rgba(255,246,0,.34); color: var(--brand); font-weight: 950; box-shadow: 0 18px 45px rgba(0,0,0,.35); backdrop-filter: blur(14px); }
html.theme-light .floating-tag { background: rgba(255,255,245,.85); color: #151500; }
.tag-top { top: 78px; right: 54px; }
.tag-mid { left: 32px; top: 255px; }
.tag-bottom { right: 100px; bottom: 72px; }
.sector-strip { width: min(calc(100% - 42px), var(--max)); margin: -14px auto 0; display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; position: relative; z-index: 2; }
.sector-pill { min-height: 78px; border-radius: 22px; border: 1px solid var(--line); background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,246,0,.07)); display: flex; align-items: center; justify-content: center; gap: 9px; font-weight: 900; color: var(--text); box-shadow: var(--shadow); overflow: hidden; position: relative; transition: .28s ease; }
.sector-pill::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,246,0,.35), transparent 34%); opacity: 0; transition: .25s ease; }
.sector-pill:hover { transform: translateY(-6px); border-color: rgba(255,246,0,.55); }
.sector-pill:hover::before { opacity: 1; }
.sector-pill span { font-size: 1.25rem; position: relative; }
.section { padding: clamp(76px, 9vw, 132px) clamp(22px, 5vw, 72px); }
.section-head { width: min(860px, 100%); margin: 0 auto 42px; text-align: center; }
.section-head p:not(.kicker) { font-size: 1.05rem; }
.content-grid { width: min(var(--max), 100%); margin-inline: auto; display: grid; gap: 18px; }
.two-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.premium-card, .glass-panel, .activity-card, .timeline-item, .news-card, .article-card, .donation-card, .impressum-card, .partner-card { border: 1px solid var(--line); background: linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.035)); backdrop-filter: blur(22px); box-shadow: var(--shadow); }
.premium-card, .glass-panel { border-radius: var(--radius-xl); padding: clamp(24px, 3.2vw, 42px); min-height: 100%; }
.accent-card { background: linear-gradient(145deg, rgba(255,246,0,.17), rgba(255,255,255,.04)); }
.address-card, .schedule-card { margin-top: 20px; padding: 20px; border-radius: 22px; background: rgba(0,0,0,.22); border: 1px solid rgba(255,246,0,.26); }
html.theme-light .address-card, html.theme-light .schedule-card { background: rgba(255,255,255,.45); }
.address-card span, .schedule-card span, .schedule-card em { display: block; color: var(--muted); font-size: .88rem; }
.address-card strong, .schedule-card strong { display: block; margin: 6px 0; color: var(--text); font-size: 1.18rem; }
.premium-slider { width: min(1180px, 100%); margin-inline: auto; border-radius: 38px; border: 1px solid var(--line-strong); overflow: hidden; position: relative; box-shadow: var(--shadow); background: #050505; }
.slider-track { position: relative; height: min(62vw, 620px); min-height: 440px; }
.slide { position: absolute; inset: 0; margin: 0; opacity: 0; transform: scale(1.04); transition: 900ms cubic-bezier(.2,.8,.2,1); }
.slide.active { opacity: 1; transform: scale(1); }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.72), transparent 70%), linear-gradient(0deg, rgba(0,0,0,.62), transparent 48%); }
.slide figcaption { position: absolute; left: clamp(24px, 5vw, 62px); bottom: clamp(24px, 5vw, 58px); z-index: 2; max-width: 560px; }
.slide figcaption strong { display: block; color: var(--brand); font-size: clamp(2rem, 4vw, 4rem); line-height: 1; letter-spacing: -.05em; }
.slide figcaption span { display: block; margin-top: 12px; color: rgba(255,255,255,.78); font-size: 1.05rem; line-height: 1.6; }
.slider-controls { position: absolute; right: 26px; bottom: 24px; z-index: 5; display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: 999px; background: rgba(0,0,0,.52); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(18px); }
.slider-controls button { width: 42px; height: 42px; border-radius: 50%; border: 0; background: rgba(255,246,0,.95); color: #060606; font-size: 1.8rem; line-height: 1; cursor: pointer; transition: .2s ease; }
.slider-controls button:hover { transform: scale(1.08); }
.slider-dots { display: flex; gap: 7px; }
.slider-dots button { width: 9px; height: 9px; padding: 0; background: rgba(255,255,255,.35); }
.slider-dots button.active { width: 26px; border-radius: 999px; background: var(--brand); }
.activity-grid { width: min(var(--max), 100%); margin: 0 auto; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.activity-card { border-radius: 28px; padding: 26px; min-height: 270px; position: relative; overflow: hidden; transition: .28s ease; }
.activity-card::before { content: ""; position: absolute; inset: auto -20% -45% -20%; height: 70%; background: radial-gradient(circle, rgba(255,246,0,.18), transparent 62%); transition: .35s ease; }
.activity-card:hover { transform: translateY(-8px); border-color: rgba(255,246,0,.48); }
.activity-card:hover::before { transform: translateY(-20%); }
.activity-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 18px; background: rgba(255,246,0,.14); font-size: 1.8rem; margin-bottom: 20px; }
.deep-section { margin-top: 22px; }
.tmt-panel { position: relative; overflow: hidden; }
.tmt-panel::after { content: "TMT"; position: absolute; right: 22px; bottom: -24px; font-size: 8rem; line-height: 1; font-weight: 950; color: rgba(255,246,0,.08); letter-spacing: -.08em; }
.timeline { width: min(var(--max),100%); margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.timeline-item { border-radius: 30px; padding: 30px; position: relative; overflow: hidden; }
.timeline-item span { display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 18px; background: var(--brand); color: #050505; font-weight: 950; margin-bottom: 24px; }
.timeline-item::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,246,0,.14), transparent 45%); opacity: .75; pointer-events: none; }
.timeline-item > * { position: relative; }
.media-grid { width: min(var(--max),100%); margin: auto; display: grid; grid-template-columns: 1.4fr .8fr; gap: 18px; }
.video-card { grid-row: span 2; border-radius: 34px; overflow: hidden; border: 1px solid var(--line); background: rgba(255,255,255,.06); box-shadow: var(--shadow); }
.video-frame { aspect-ratio: 16 / 9; background: #000; }
.video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-copy { padding: 28px; }
.news-card, .article-card { border-radius: 30px; overflow: hidden; }
.news-card img { width: 100%; height: 250px; object-fit: cover; }
.news-card div, .article-card { padding: 24px; }
.news-label { display: inline-flex; padding: 6px 11px; border-radius: 999px; background: var(--brand); color: #050505; font-weight: 950; margin-bottom: 12px; }
.link-arrow { color: var(--brand); font-weight: 900; }
.link-arrow::after { content: " →"; transition: .2s ease; }
.link-arrow:hover::after { margin-left: 4px; }
.partner-grid { width: min(var(--max), 100%); margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.partner-card { border-radius: 28px; padding: 20px; display: grid; gap: 14px; transition: .28s ease; }
.partner-card:hover { transform: translateY(-7px); border-color: rgba(255,246,0,.52); }
.partner-card img { aspect-ratio: 2 / 1; object-fit: contain; width: 100%; border-radius: 22px; background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(255,246,0,.92)); padding: 14px; box-shadow: inset 0 0 0 1px rgba(0,0,0,.08), 0 18px 42px rgba(0,0,0,.22); }
.partner-card h3 { margin: 0; }
.donation-section { position: relative; overflow: hidden; }
.donation-section::before { content: ""; position: absolute; left: 50%; top: 20%; width: 80vw; height: 80vw; transform: translateX(-50%); background: radial-gradient(circle, rgba(255,246,0,.12), transparent 60%); pointer-events: none; }
.donation-grid { width: min(920px, 100%); margin: auto; display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; position: relative; }
.donation-card { border-radius: 34px; padding: 28px; text-align: center; }
.donation-type { display: inline-flex; padding: 6px 12px; border-radius: 999px; background: rgba(255,246,0,.13); color: var(--brand); font-weight: 950; margin-bottom: 16px; }
.donation-card img { width: 168px; height: 168px; margin: 18px auto; border-radius: 22px; padding: 10px; background: #fff; box-shadow: 0 18px 50px rgba(0,0,0,.25); }
.manifesto { width: min(1050px, 100%); margin: auto; border-radius: 42px; padding: clamp(38px, 7vw, 78px); background: linear-gradient(135deg, rgba(255,246,0,.25), rgba(255,255,255,.05)); border: 1px solid rgba(255,246,0,.34); box-shadow: var(--shadow); text-align: center; position: relative; overflow: hidden; }
.manifesto::before { content: ""; position: absolute; inset: -2px; background: linear-gradient(120deg, transparent, rgba(255,255,255,.18), transparent); transform: translateX(-100%); animation: shine 4.2s ease-in-out infinite; }
@keyframes shine { 50% { transform: translateX(100%); } 100% { transform: translateX(100%); } }
.manifesto span { color: var(--brand); font-weight: 950; text-transform: uppercase; letter-spacing: .16em; }
.manifesto h2 { margin: 16px 0; }
.impressum-card { width: min(var(--max), 100%); margin: auto; border-radius: 34px; padding: 32px; display: grid; grid-template-columns: .7fr 1fr; gap: 28px; }
.impressum-card a { color: var(--brand); font-weight: 900; }
.site-footer { padding: 34px clamp(22px,5vw,72px); border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 58px; height: 58px; object-fit: contain; }
.footer-brand div { display: grid; }
.footer-brand span, .footer-copy { color: var(--muted); }
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); font-weight: 750; }
.footer-links a:hover { color: var(--brand); }
.back-to-top { position: fixed; right: 22px; bottom: 24px; width: 48px; height: 48px; border: 0; border-radius: 18px; background: var(--brand); color: #050505; font-size: 1.4rem; font-weight: 950; cursor: pointer; box-shadow: 0 16px 42px rgba(255,246,0,.22); opacity: 0; transform: translateY(20px); pointer-events: none; transition: .25s ease; z-index: 1000; }
.back-to-top.visible { opacity: 1; transform: none; pointer-events: auto; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .85s ease, transform .85s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .32s; }
@media (max-width: 1120px) {
  .main-nav { position: fixed; left: 14px; right: 14px; top: calc(var(--header-h) + 26px); display: none; flex-direction: column; align-items: stretch; gap: 6px; padding: 12px; border-radius: 22px; border: 1px solid var(--line); background: rgba(5,5,5,.92); box-shadow: var(--shadow); backdrop-filter: blur(22px); }
  html.theme-light .main-nav { background: rgba(255,252,220,.96); }
  .main-nav.open { display: flex; animation: menuPop .18s ease both; }
  .main-nav a { padding: 13px 16px; }
  .menu-toggle { display: flex; }
  .brand { min-width: auto; }
  .brand-copy em { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 116px; }
  .orbital-card { min-height: 460px; }
  .sector-strip { grid-template-columns: repeat(3, 1fr); }
  .activity-grid, .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .media-grid { grid-template-columns: 1fr; }
  .video-card { grid-row: auto; }
}
@media (max-width: 760px) {
  :root { --header-h: 72px; }
  .site-header { top: 8px; width: min(calc(100% - 16px), 1360px); border-radius: 21px; }
  .brand-logo { width: 48px; height: 48px; }
  .brand-copy strong { font-size: .94rem; }
  #currentLangText { display: none; }
  .language-btn { width: 44px; justify-content: center; padding: 0; }
  .language-btn .chevron { display: none; }
  h1 { font-size: clamp(2.55rem, 14vw, 4rem); }
  .hero { padding: 104px 18px 34px; gap: 10px; }
  .hero-actions { margin: 24px 0; }
  .hero-metrics { grid-template-columns: 1fr; }
  .orbital-card { min-height: 330px; }
  .orbital-card img { width: 270px; }
  .orbit-one { width: 330px; height: 330px; }
  .orbit-two { width: 260px; height: 260px; }
  .floating-tag { font-size: .78rem; padding: 8px 10px; }
  .tag-top { top: 28px; right: 10px; }
  .tag-mid { left: 6px; top: 150px; }
  .tag-bottom { right: 40px; bottom: 22px; }
  .sector-strip, .two-cols, .activity-grid, .timeline, .partner-grid, .donation-grid, .impressum-card { grid-template-columns: 1fr; }
  .sector-strip { margin-top: 12px; }
  .sector-pill { min-height: 64px; }
  .section { padding: 76px 18px; }
  .slider-track { min-height: 360px; }
  .slider-controls { right: 12px; bottom: 12px; }
  .slider-controls button { width: 36px; height: 36px; }
  .slide figcaption { left: 22px; bottom: 82px; right: 22px; }
  .slide figcaption strong { font-size: 2.2rem; }
  .site-footer { align-items: flex-start; flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
