:root {
  --royal: #17458F;     /* Rotary Royal Blue */
  --royal-dark: #0C2D61;
  --azure: #0067C8;     /* Rotary Azure */
  --sky: #019FCB;       /* Rotary Sky Blue */
  --gold: #F7A81B;      /* Rotary Gold */
  --gold-dark: #D98E0C;
  --ink: #1E2A38;
  --muted: #5E6A71;
  --line: #E1E6EC;
  --bg: #FFFFFF;
  --bg-alt: #F3F6FA;
  --up: #1B8A4A;
  --down: #C0392B;
  --radius: 6px;
  --shadow: 0 2px 10px rgba(12, 45, 97, .08);
  --font: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  --font-num: "Roboto", "Helvetica Neue", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font); color: var(--ink); background: var(--bg); line-height: 1.6; font-size: 16px; }
a { color: var(--azure); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }
h1, h2, h3, h4 { font-family: var(--font-num); font-weight: 500; line-height: 1.2; margin: 0 0 .5em; color: var(--royal); }
h1 { font-size: 2.2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.2rem; }
small { color: var(--muted); }
code { background: var(--bg-alt); padding: .1em .35em; border-radius: 3px; font-size: .9em; }
.container { width: min(1180px, 100% - 2.5rem); margin: 0 auto; }
.narrow { max-width: 480px; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 1rem; top: 1rem; background: #fff; padding: .5rem; z-index: 100; }
.mono { font-family: "Roboto Mono", Consolas, monospace; font-size: .9em; }
.up { color: var(--up); }
.down { color: var(--down); }
.note { color: var(--muted); font-size: .85rem; }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 700; color: var(--gold); margin: 0 0 .5rem; display: block; }

/* Header */
.site-header { background: #fff; border-bottom: 4px solid var(--gold); position: sticky; top: 0; z-index: 50; box-shadow: var(--shadow); }
.topbar { background: var(--royal); color: #fff; font-size: .8rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; min-height: 30px; }
.topbar a { color: #fff; font-weight: 600; }
.topbar-links a { margin-left: 1rem; opacity: .9; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 84px; }
.brand { display: flex; align-items: center; gap: 1rem; color: var(--royal); }
.brand:hover { text-decoration: none; }
.brand img { width: auto; height: 62px; }
.brand-text { display: flex; align-items: center; line-height: 1; border-left: 2px solid var(--gold); padding-left: 1rem; height: 44px; }
.brand-main { font-family: var(--font-num); font-size: 1.7rem; font-weight: 500; color: var(--royal); letter-spacing: .01em; }
.nav { display: flex; gap: .25rem; }
.nav a { padding: .6rem .9rem; color: var(--royal); font-weight: 600; border-bottom: 3px solid transparent; }
.nav a:hover, .nav a.active { border-bottom-color: var(--gold); text-decoration: none; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: var(--radius); font-size: 1.4rem; padding: .2rem .6rem; color: var(--royal); cursor: pointer; }
@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: #fff; flex-direction: column; border-top: 1px solid var(--line); box-shadow: var(--shadow); padding: .5rem 0; }
  .nav.open { display: flex; }
  .nav a { padding: .8rem 1.5rem; border-bottom: none; border-left: 3px solid transparent; }
  .nav a.active { border-left-color: var(--gold); }
  .brand img { height: 46px; }
  .brand-text { height: 34px; padding-left: .75rem; }
  .brand-main { font-size: 1.25rem; }
  .topbar-inner > span:first-child { font-size: .72rem; }
}

/* Hero */
.hero { background: linear-gradient(135deg, var(--royal-dark) 0%, var(--royal) 55%, var(--azure) 100%); color: #fff; padding: 4.5rem 0 3.5rem; position: relative; overflow: hidden; }
.hero::after { content: ""; position: absolute; right: -10%; top: -40%; width: 60%; height: 180%; background: radial-gradient(circle, rgba(247,168,27,.18) 0%, rgba(247,168,27,0) 60%); pointer-events: none; }
.hero-inner { max-width: 760px; position: relative; }
.hero h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 300; margin-bottom: 1rem; }
.hero .eyebrow { color: var(--gold); }
.lead { font-size: 1.1rem; opacity: .92; max-width: 640px; }
.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* Buttons */
.btn { display: inline-block; padding: .65rem 1.3rem; border-radius: var(--radius); font-weight: 600; border: 2px solid transparent; cursor: pointer; font-family: var(--font); font-size: .95rem; line-height: 1.3; }
.btn:hover { text-decoration: none; filter: brightness(1.05); }
.btn-gold { background: var(--gold); color: var(--royal-dark); }
.btn-blue { background: var(--royal); color: #fff; }
.btn-outline { border-color: rgba(255,255,255,.7); color: #fff; }
.btn-outline-dark { border-color: var(--royal); color: var(--royal); background: #fff; }
.btn-danger { background: var(--down); color: #fff; }
.btn-small { padding: .4rem .85rem; font-size: .85rem; }

/* Ticker (Echtzeit-Vermögen) */
.ticker { background: var(--royal-dark); color: #fff; padding: 3rem 0 2.5rem; text-align: center; border-top: 1px solid rgba(255,255,255,.08); }
.home .ticker { margin-top: -1px; }
.ticker-label { margin: 0 0 .5rem; text-transform: uppercase; letter-spacing: .15em; font-size: .8rem; opacity: .8; }
.ticker-value { font-family: var(--font-num); font-weight: 300; font-size: clamp(2.6rem, 8vw, 6rem); line-height: 1.05; font-variant-numeric: tabular-nums; letter-spacing: -.01em; }
.ticker-currency { font-size: .5em; vertical-align: .5em; margin-left: .15em; color: var(--gold); font-weight: 400; }
.ticker-number.flash-up { color: #7BE3A8; transition: color .15s; }
.ticker-number.flash-down { color: #FF9C8C; transition: color .15s; }
.ticker-number { transition: color 1.2s; }
.ticker-meta { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 1rem; font-size: .95rem; }
.ticker-change.up { color: #7BE3A8; }
.ticker-change.down { color: #FF9C8C; }
.ticker-status { opacity: .8; display: inline-flex; align-items: center; gap: .5rem; }
.ticker-status .warn { color: var(--gold); }
.dot { width: 9px; height: 9px; border-radius: 50%; background: #8FA1B8; display: inline-block; }
.dot.live { background: #4ADE80; box-shadow: 0 0 0 0 rgba(74,222,128,.7); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(74,222,128,.6); } 70% { box-shadow: 0 0 0 8px rgba(74,222,128,0); } 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); } }
.alloc-bar { display: flex; height: 10px; border-radius: 5px; overflow: hidden; margin: 2rem auto 0; max-width: 900px; background: rgba(255,255,255,.1); }
.alloc-bar span { display: block; height: 100%; transition: width .6s; }
.alloc-legend { list-style: none; padding: 0; margin: 1rem auto 0; display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1.5rem; font-size: .85rem; opacity: .95; }
.alloc-legend a { color: #fff; }
.alloc-legend b { font-weight: 600; margin-left: .25rem; }
.swatch { display: inline-block; width: 11px; height: 11px; border-radius: 2px; margin-right: .5rem; vertical-align: -1px; }
.ticker-compact { padding: 1.75rem 0; }
.ticker-compact .ticker-value { font-size: clamp(2rem, 5vw, 3.2rem); }

/* Sections */
.section { padding: 3.5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-title { position: relative; padding-bottom: .6rem; margin-bottom: 1.25rem; }
.section-title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 48px; height: 3px; background: var(--gold); }
.section-intro { max-width: 760px; font-size: 1.05rem; margin-bottom: 2rem; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
@media (max-width: 760px) { .two-col { grid-template-columns: 1fr; } }
.page-head { background: var(--bg-alt); border-bottom: 1px solid var(--line); padding: 2.5rem 0 2rem; border-top: 6px solid var(--accent, var(--royal)); }
.page-head p { max-width: 760px; margin: 0; color: var(--muted); font-size: 1.05rem; }
.page-head .back { display: inline-block; margin-bottom: 1rem; font-size: .9rem; }
.prose { max-width: 760px; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.card { background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--accent, var(--royal)); border-radius: var(--radius); padding: 1.4rem; color: var(--ink); display: flex; flex-direction: column; box-shadow: var(--shadow); transition: transform .15s, box-shadow .15s; }
.card:hover { text-decoration: none; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(12,45,97,.14); }
.card-cat { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; }
.card h3 { margin: .35rem 0 .5rem; }
.card p { font-size: .92rem; margin: 0 0 1rem; color: var(--muted); flex: 1; }
.card-foot { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid var(--line); padding-top: .75rem; }
.card-value { font-family: var(--font-num); font-size: 1.25rem; font-weight: 500; color: var(--royal); }
.card-change { font-weight: 600; font-size: .9rem; }
.admin-cards .card { border-top-color: var(--sky); }

/* Tables */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
table.holdings { width: 100%; border-collapse: collapse; font-size: .95rem; }
.holdings th, .holdings td { padding: .8rem .9rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: middle; }
.holdings th { background: var(--bg-alt); font-weight: 600; color: var(--royal); font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; }
.holdings td small { display: block; font-size: .78rem; }
.holdings .num { text-align: right; font-family: var(--font-num); font-variant-numeric: tabular-nums; white-space: nowrap; }
.holdings .strong { font-weight: 500; }
.holdings tfoot td { font-weight: 600; background: var(--bg-alt); border-bottom: none; font-size: 1.05rem; }
.holdings tr.cash td { color: var(--muted); }
.holdings tr.cash td.strong { color: var(--ink); }
.input-num { width: 150px; text-align: right; font-family: var(--font-num); }

/* Strategy */
.strategy { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1rem; }
.strategy-item { border-left: 4px solid var(--accent); padding: .25rem 0 .25rem 1rem; }
.strategy-item h3 { margin-bottom: .25rem; font-size: 1.05rem; }
.strategy-item p { margin: 0; font-size: .92rem; color: var(--muted); }

/* Fund detail */
.fund-grid { display: grid; grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr); gap: 3rem; }
@media (max-width: 860px) { .fund-grid { grid-template-columns: 1fr; } }
.kpis { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 1rem; margin-bottom: 2.5rem; }
.kpi { background: var(--bg-alt); border-radius: var(--radius); padding: 1rem 1.1rem; }
.kpi span { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 700; }
.kpi b { display: block; font-family: var(--font-num); font-size: 1.5rem; font-weight: 500; color: var(--royal); margin: .2rem 0; font-variant-numeric: tabular-nums; }
.kpi b.up { color: var(--up); } .kpi b.down { color: var(--down); }
.kpi small { display: block; font-size: .8rem; }
.chart { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: .5rem; margin-bottom: .5rem; }
.chart svg { width: 100%; height: 300px; display: block; }
.chart-tip { position: absolute; top: .75rem; left: .75rem; background: var(--royal-dark); color: #fff; font-size: .8rem; padding: .3rem .6rem; border-radius: 4px; pointer-events: none; font-family: var(--font-num); }
.callout { background: var(--bg-alt); border-left: 4px solid var(--accent); padding: 1rem 1.25rem; border-radius: 0 var(--radius) var(--radius) 0; margin-top: 1.5rem; }
.fund-side h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: .06em; margin-top: 2rem; }
.fund-side h3:first-child { margin-top: 0; }
.facts { margin: 0; font-size: .9rem; }
.facts dt { font-weight: 700; color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; margin-top: .75rem; }
.facts dd { margin: 0; }
.side-list { list-style: none; padding: 0; margin: 0; }
.side-list li { padding: .5rem 0; border-bottom: 1px solid var(--line); }

/* Documents */
.doc-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.doc-list li { border-bottom: 1px solid var(--line); }
.doc-list a { display: flex; align-items: center; gap: 1rem; padding: .8rem .25rem; color: var(--ink); }
.doc-list a:hover { background: var(--bg-alt); text-decoration: none; }
.doc-list b { display: block; color: var(--royal); }
.doc-list small { display: block; }
.doc-icon { flex: none; width: 42px; height: 48px; border: 2px solid var(--down); border-radius: 4px; color: var(--down); font-size: .7rem; font-weight: 700; display: grid; place-items: center; }

/* Forms / Admin */
.admin-bar { background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.admin-bar-inner { display: flex; justify-content: space-between; align-items: center; min-height: 52px; }
.admin-bar nav a { display: inline-block; padding: .9rem 1rem .8rem; font-weight: 600; color: var(--royal); border-bottom: 3px solid transparent; }
.admin-bar nav a.active { border-bottom-color: var(--gold); }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.5rem; box-shadow: var(--shadow); }
.form label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 1rem; }
.form input[type="text"], .form input[type="password"], .form input[type="email"], .form input[type="date"], .form input[type="file"], .form select, .form textarea, .input-num { display: block; width: 100%; margin-top: .3rem; padding: .55rem .7rem; border: 1px solid #C5CDD6; border-radius: 4px; font: inherit; font-weight: 400; background: #fff; }
.form textarea { resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--sky); outline-offset: 1px; border-color: var(--sky); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.25rem; }
.form-grid .span2 { grid-column: span 2; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } .form-grid .span2 { grid-column: auto; } }
.check { display: flex !important; align-items: center; gap: .5rem; }
.check input { width: auto !important; margin: 0 !important; }
.flash { padding: .8rem 1rem; border-radius: var(--radius); margin: 1.25rem 0; border: 1px solid; }
.flash.ok { background: #EAF7EF; border-color: #A9DEBB; color: #145C31; }
.flash.error { background: #FCEDEA; border-color: #F1B6AE; color: #7E1F14; }
.doc-row { display: flex; gap: 1rem; align-items: flex-start; }
.doc-row form:first-child { flex: 1; }
.doc-actions { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.doc-actions small { font-size: .78rem; }

/* Footer */
.site-footer { background: var(--royal-dark); color: rgba(255,255,255,.85); margin-top: 2rem; font-size: .9rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; padding: 3rem 0 2rem; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand { font-family: var(--font-num); font-size: 1.2rem; color: #fff; margin-bottom: .5rem; }
.site-footer a.footer-logo { background: #fff; border-radius: var(--radius); padding: .5rem .75rem; display: inline-block; margin-bottom: 1rem; }
.footer-logo img { height: 48px; width: auto; display: block; }
.site-footer h4 { color: var(--gold); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .75rem; }
.site-footer a { display: block; color: rgba(255,255,255,.85); padding: .15rem 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 1rem 0 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; font-size: .8rem; opacity: .75; }

/* Stiftungsseite */
.kpis-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.mt { margin-top: 1.75rem; }
.dist-list { margin-bottom: .5rem; }
.dist-row { display: grid; grid-template-columns: 3.5rem 1fr 6.5rem; align-items: center; gap: .75rem; margin-top: .75rem; }
.dist-year { font-family: var(--font-num); font-weight: 500; color: var(--royal); }
.dist-bar { height: 14px; background: var(--bg-alt); border-radius: 7px; overflow: hidden; }
.dist-bar span { display: block; height: 100%; background: var(--gold); border-radius: 7px; }
.dist-amount { text-align: right; font-family: var(--font-num); font-weight: 500; font-variant-numeric: tabular-nums; }
.dist-note { display: block; padding-left: 4.25rem; font-size: .8rem; }
.dist-table td { font-size: .95rem; }
.dist-table th:first-child, .dist-table td:first-child { width: 4.5rem; }
.facts-inline dt { margin-top: .5rem; }
.cap-chart { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; height: 300px; align-items: end; padding-top: 1.5rem; }
.cap-col { display: flex; flex-direction: column; align-items: center; height: 100%; justify-content: flex-end; }
.cap-value { font-family: var(--font-num); font-weight: 500; color: var(--royal); margin-bottom: .4rem; font-size: .95rem; white-space: nowrap; }
.cap-bar { width: 70%; max-width: 120px; background: var(--royal); border-radius: 4px 4px 0 0; transition: height .6s; }
.cap-bar.live { background: linear-gradient(180deg, var(--gold), var(--gold-dark)); }
.cap-label { margin-top: .5rem; font-size: .85rem; color: var(--muted); text-align: center; }
@media (max-width: 640px) { .cap-chart { height: 220px; gap: .5rem; } .cap-value { font-size: .75rem; } }
.dev-bar { display: inline-block; width: 120px; height: 10px; background: var(--bg-alt); border-radius: 5px; position: relative; vertical-align: middle; margin-right: .5rem; }
.dev-bar span { position: absolute; top: 0; height: 100%; border-radius: 5px; }
.dev-bar .pos { left: 50%; background: var(--up); }
.dev-bar .neg { right: 50%; background: var(--down); }
.dev-bar::before { content: ""; position: absolute; left: 50%; top: -3px; width: 1px; height: 16px; background: var(--muted); }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding: .35rem 0 .35rem 1.75rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: .3rem; color: var(--gold-dark); font-weight: 700; }
.tag-list { list-style: none; padding: 0; margin: 0 0 1rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.tag-list li { background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--sky); border-radius: 4px; padding: .3rem .7rem; font-size: .9rem; }
.people { list-style: none; padding: 0; margin: 0; }
.people li { display: flex; flex-direction: column; padding: .55rem 0; border-bottom: 1px solid var(--line); }
.people li span { font-size: .85rem; color: var(--muted); }
.section-cta { background: linear-gradient(135deg, var(--royal-dark), var(--royal)); color: #fff; text-align: center; }
.section-cta h2 { color: #fff; }
.section-cta p { max-width: 720px; margin: 0 auto 1.5rem; opacity: .92; }
.section-cta .btn { margin: 0 .35rem; }

/* Projekte */
.flow-strip { display: flex; align-items: stretch; gap: .5rem; margin-bottom: 3rem; flex-wrap: wrap; }
.flow-step { flex: 1 1 160px; background: var(--bg-alt); border-radius: var(--radius); padding: .9rem 1rem; text-align: center; }
.flow-step span { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 700; }
.flow-step b { display: block; font-family: var(--font-num); font-size: 1.15rem; color: var(--royal); font-weight: 500; margin: .2rem 0; }
.flow-step small { font-size: .8rem; }
.flow-arrow { align-self: center; color: var(--gold); font-size: 1.6rem; font-weight: 700; }
@media (max-width: 760px) { .flow-arrow { display: none; } }
.project { display: grid; grid-template-columns: minmax(220px, 1fr) 2fr; gap: 2rem; padding: 2rem 0; border-top: 1px solid var(--line); }
.project:last-of-type { border-bottom: 1px solid var(--line); }
@media (max-width: 760px) { .project { grid-template-columns: 1fr; gap: 1rem; } }
.project-head { border-left: 4px solid var(--accent); padding-left: 1.25rem; }
.project-head h2 { margin-bottom: .25rem; }
.project-sub { margin: 0; color: var(--muted); }
.project-summary { font-size: 1.05rem; margin-top: 0; }
.project details { margin-bottom: 1rem; }
.project summary { cursor: pointer; color: var(--azure); font-weight: 600; list-style: none; }
.project summary::before { content: "+ "; }
.project details[open] summary::before { content: "– "; }
.project summary::-webkit-details-marker { display: none; }
.project details p { color: var(--ink); }
.project-links { display: flex; gap: .5rem; flex-wrap: wrap; }

/* Zustiften */
.example-box { background: var(--bg-alt); border-left: 4px solid var(--gold); padding: 1rem 1.25rem; border-radius: 0 var(--radius) var(--radius) 0; }
.example-box p { margin: .4rem 0 0; }
.option { border-left: 4px solid var(--accent); background: var(--bg-alt); border-radius: 0 var(--radius) var(--radius) 0; padding: .9rem 1.25rem; margin-bottom: 1rem; }
.option h3 { margin: 0 0 .4rem; font-size: 1.1rem; }
.option ul { margin: 0; padding-left: 1.2rem; }
.option li { margin: .25rem 0; font-size: .95rem; }
.option li::marker { color: var(--accent); }
.bank { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; margin-bottom: 1.5rem; }
.bank-head { background: var(--royal); color: #fff; padding: 1rem 1.75rem; display: flex; flex-direction: column; gap: .15rem; }
.bank-head-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; opacity: .8; font-weight: 700; }
.bank-head-name { font-family: var(--font-num); font-size: 1.25rem; font-weight: 500; }
.bank-body { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; }
.bank-field { padding: 1.1rem 1.75rem; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: .25rem; }
.bank-field:last-child { border-right: none; }
.bank-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 700; }
.bank-value { font-size: 1.05rem; }
.bank-iban { font-family: var(--font-num); font-size: 1.6rem; font-weight: 500; color: var(--royal); display: flex; flex-wrap: wrap; gap: .1em .45em; font-variant-numeric: tabular-nums; }
.bank-field-iban .copy { align-self: flex-start; margin: .35rem 0 0; }
@media (max-width: 900px) { .bank-body { grid-template-columns: 1fr 1fr; } .bank-field-iban { grid-column: span 2; border-bottom: 1px solid var(--line); } .bank-field:nth-child(2) { border-right: 1px solid var(--line); } .bank-field:nth-child(3) { border-right: none; } .bank-field:nth-child(4) { grid-column: span 2; border-top: 1px solid var(--line); } }
@media (max-width: 480px) { .bank-iban { font-size: 1.25rem; } }
.purpose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 800px) { .purpose-grid { grid-template-columns: 1fr; } }
.purpose { background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--accent); border-radius: var(--radius); padding: 1.25rem 1.5rem; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.purpose-top { display: flex; justify-content: space-between; gap: 1rem; flex: 1; }
.purpose h3 { margin: .1rem 0 .4rem; font-size: 1.35rem; }
.purpose p { margin: 0; color: var(--muted); font-size: .92rem; }
.qr { flex: none; width: 84px; text-align: center; }
.qr svg { width: 84px; height: 84px; display: block; border: 1px solid var(--line); border-radius: 4px; }
.qr small { display: block; font-size: .65rem; margin-top: .3rem; line-height: 1.2; }
.purpose-text { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.purpose-text code { font-size: .95rem; background: var(--bg-alt); padding: .4rem .7rem; border-radius: 4px; flex: 1; }
.copy { font: inherit; font-size: .8rem; font-family: var(--font); font-weight: 600; letter-spacing: 0; padding: .3rem .75rem; border: 1px solid var(--royal); background: #fff; border-radius: 4px; cursor: pointer; vertical-align: middle; color: var(--royal); }
.copy:hover { background: var(--bg-alt); }
.copy.done { background: #EAF7EF; border-color: #A9DEBB; }

mark.todo { background: #FFF3C4; color: #7A5A00; padding: 0 .25em; border-radius: 3px; }
.prose h2 { margin-top: 2rem; font-size: 1.3rem; }
.prose h3 { margin-top: 1.5rem; font-size: 1.05rem; }
.hp { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }
.flash-list { margin: 0; padding-left: 1.2rem; }
.contact-grid { grid-template-columns: 3fr 2fr; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form .check { font-weight: 400; align-items: flex-start; }
.contact-form .check input { margin-top: .3rem !important; }

/* Clubseite */
.four-way { counter-reset: q; list-style: none; padding: 0; margin: 0; }
.four-way li { counter-increment: q; position: relative; padding: .5rem 0 .5rem 2.6rem; font-size: 1.05rem; font-weight: 600; color: var(--royal); border-bottom: 1px solid var(--line); }
.four-way li::before { content: counter(q); position: absolute; left: 0; top: .45rem; width: 1.9rem; height: 1.9rem; border-radius: 50%; background: var(--gold); color: var(--royal-dark); font-family: var(--font-num); font-weight: 500; display: grid; place-items: center; font-size: .95rem; }
.link-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: .75rem; }
.link-card { display: flex; flex-direction: column; padding: .9rem 1.1rem; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: var(--radius); color: var(--royal); font-weight: 600; box-shadow: var(--shadow); }
.link-card:hover { text-decoration: none; background: var(--bg-alt); }
.link-card small { font-weight: 400; font-size: .78rem; }
