/* Santek GmbH – Website-Stylesheet
   Farbwelt: Anthrazit, Schwarz, Weiß/Hellgrau und exakt das Rot aus dem Firmenlogo (#E30016).
   Die Akzentfarbe (--accent) kommt aus /theme.css (Adminbereich), Standard = Logo-Rot.
   Jede Sektion hat Oberflächen-Tokens (--bg, --surface, --fg …); dunkle Sektionen
   überschreiben nur diese Tokens, alle Komponenten nutzen sie. */

:root {
  --accent: #E30016;           /* exakter Rotwert aus Logo_Santek.svg */
  --accent-ink: #fff;
  --black: #0c0d0f;
  --anth-900: #15171a;
  --anth-800: #1d2024;
  --anth-700: #262a2f;
  --anth-600: #33383e;
  --grey-50: #fafafa;
  --grey-100: #f2f3f4;
  --grey-200: #e5e7e9;
  --white: #ffffff;
  --err: #b42318;
  --ok: #1f7a3d;

  /* Oberflächen (hell = Standard) */
  --bg: var(--grey-100);
  --surface: var(--white);
  --surface-2: var(--grey-50);
  --fg: #141619;
  --fg-2: #3a3f45;
  --muted: #5f666d;
  --line: #dde0e3;
  --line-strong: #c3c8cd;
  --field: var(--white);

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", "URW Palladio L", Georgia, serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --r-sm: 10px;
  --r: 14px;
  --r-lg: 20px;
  --shadow: 0 1px 2px rgba(12,13,15,.06), 0 14px 34px -16px rgba(12,13,15,.28);
  --shadow-lg: 0 2px 4px rgba(12,13,15,.08), 0 28px 60px -24px rgba(12,13,15,.45);
  --ease: cubic-bezier(.2,.7,.2,1);
  --gutter: clamp(16px, 4vw, 40px);
  --header-h: 80px;
}

/* Dunkle Sektionen: drei Abstufungen für räumliche Tiefe */
.is-dark, .hero, .page-hero, .section-tint, .strengths, .contact-teaser {
  --bg: var(--anth-900); --surface: var(--anth-800); --surface-2: var(--anth-700);
  --fg: #f5f6f7; --fg-2: #d2d6da; --muted: #a0a7ae; --line: #30353b; --line-strong: #4a5057; --field: var(--anth-800);
  --shadow: 0 1px 2px rgba(0,0,0,.3), 0 18px 40px -18px rgba(0,0,0,.7);
  color-scheme: dark;
}
.section-tint, .strengths { --bg: var(--anth-800); --surface: var(--anth-700); --surface-2: var(--anth-600); }
.about, .cta-band, .site-footer {
  --bg: var(--black); --surface: var(--anth-900); --surface-2: var(--anth-800);
  --fg: #f5f6f7; --fg-2: #d2d6da; --muted: #9ba2a9; --line: #272b30; --line-strong: #3d4248;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; background: var(--grey-100); color: var(--fg);
  font: 400 1.0625rem/1.65 var(--sans);
  text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased;
}
section, .site-footer { background: var(--bg); color: var(--fg); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; text-decoration-color: var(--accent); transition: color .2s; }
a:hover { color: var(--accent); }
.is-dark a:hover, .hero a:hover, .page-hero a:hover, .section-tint a:hover, .about a:hover, .cta-band a:hover, .site-footer a:hover, .strengths a:hover, .contact-teaser a:hover { color: #fff; text-decoration-color: var(--accent); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
main:focus { outline: none; }
.sr, .hp { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--black); color: #fff; padding: 10px 16px; border-radius: 8px; }
.skip:focus { top: 12px; color: #fff; }
::selection { background: var(--accent); color: #fff; }

.wrap { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); }
.narrow { max-width: 820px; }
.muted { color: var(--muted); }
.small { font-size: .875rem; }

/* ---------- Typografie */
h1, h2, h3, h4 { overflow-wrap: break-word; hyphens: auto; -webkit-hyphens: auto; margin: 0 0 .5em; line-height: 1.12; font-weight: 600; letter-spacing: -.015em; text-wrap: balance; color: var(--fg); }
.display { font-family: var(--sans); font-weight: 700; font-size: clamp(2.4rem, 5.6vw, 4.4rem); line-height: 1.02; letter-spacing: -.035em; margin-bottom: .4em; }
.display-sm { font-family: var(--sans); font-weight: 700; font-size: clamp(2rem, 4.2vw, 3rem); line-height: 1.06; letter-spacing: -.03em; }
.h2 { font-family: var(--sans); font-weight: 700; font-size: clamp(1.85rem, 3.4vw, 2.7rem); letter-spacing: -.028em; }
.h3 { font-family: var(--sans); font-weight: 650; font-size: clamp(1.35rem, 2.1vw, 1.65rem); letter-spacing: -.02em; }
.h4 { font-size: 1.15rem; font-weight: 650; letter-spacing: -.01em; }
.display em, .h2 em { font-style: normal; color: var(--accent); }
.lead { font-size: clamp(1.1rem, 1.5vw, 1.25rem); line-height: 1.6; color: var(--fg-2); max-width: 38em; }
.lead-sm { font-size: 1.12rem; line-height: 1.65; color: var(--fg-2); }
.kicker, .eyebrow { font-size: .78rem; font-weight: 650; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin: 0 0 1.1rem; display: flex; align-items: center; gap: .75em; }
.kicker::before, .eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--accent); flex-shrink: 0; }
.kicker:has(.dot)::before, .kicker:has(a)::before { display: none; }
.kicker a { text-decoration: none; letter-spacing: .08em; }
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; background: var(--accent); box-shadow: 0 0 0 4px rgba(227,0,22,.18); }
.dot-bau { background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.14); }
mark.review { background: #fff1b8; color: #5b4300; padding: .05em .35em; border-radius: 4px; font-size: .92em; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.review-box { margin-top: 2rem; padding: 1rem 1.2rem; border: 1px dashed #d9b84a; border-radius: var(--r); background: #fffaf0; color: #3d3320; font-size: .95rem; }

/* ---------- Buttons */
.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .55em; min-height: 50px; padding: .8em 1.45em;
  border-radius: var(--r-sm); border: 1.5px solid transparent; font: 650 1rem/1.2 var(--sans); letter-spacing: .005em; text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s, color .25s, border-color .25s; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); transition-duration: .08s; }
.btn-accent, .btn-bau { background: var(--accent); color: var(--accent-ink); box-shadow: 0 10px 24px -12px rgba(227,0,22,.75); }
.btn-accent:hover, .btn-bau:hover { color: #fff; box-shadow: 0 16px 32px -14px rgba(227,0,22,.9); }
.btn-accent::after, .btn-bau::after { content: "→"; display: inline-block; font-weight: 400; transition: transform .25s var(--ease); }
.btn-accent:hover::after, .btn-bau:hover::after { transform: translateX(3px); }
.btn-sm.btn-accent::after, .adm-main .btn-accent::after, .btn[data-submit]::after, .adm-login .btn-accent::after { content: none; }
.btn-ghost { background: transparent; border-color: var(--line-strong); color: var(--fg); }
.btn-ghost:hover { border-color: var(--fg); background: var(--fg); color: var(--bg); }
.btn-ghost-light { border-color: rgba(255,255,255,.35); color: #fff; }
.btn-ghost-light:hover { background: #fff; border-color: #fff; color: var(--black); }
.btn-sm { min-height: 42px; padding: .5em 1.05em; font-size: .92rem; }
.btn-lg { min-height: 56px; padding: .9em 1.8em; font-size: 1.05rem; }
.btn[disabled] { opacity: .65; cursor: progress; transform: none; }

/* ---------- Header (hell, damit das Original-Logo unverändert wirkt) */
.site-header { position: sticky; top: env(safe-area-inset-top, 0px); z-index: 50; background: rgba(255,255,255,.94); backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--grey-200); color: #141619; transition: box-shadow .3s; }
.site-header.is-scrolled { box-shadow: 0 8px 30px -18px rgba(0,0,0,.45); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: .35em; text-decoration: none; color: #141619; flex-shrink: 0; }
.brand:hover { color: #141619; }
.brand-word { font-family: var(--sans); font-size: 1.5rem; letter-spacing: .18em; font-weight: 800; }
.brand-sub { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: #5f666d; }
.brand-logo { height: 60px; width: auto; aspect-ratio: 204.4 / 126.8; }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav ul { list-style: none; display: flex; gap: 2px; margin: 0; padding: 0; }
.site-nav ul a { display: block; padding: 10px 13px; text-decoration: none; font-weight: 550; font-size: .98rem; border-radius: 8px; position: relative; color: #1d2024; white-space: nowrap; }
.site-nav ul a::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 2px; border-radius: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.site-nav ul a:hover { color: var(--accent); }
.site-nav ul a:hover::after, .site-nav ul a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav ul a[aria-current="page"] { color: var(--accent); }
.ext { font-size: .8em; opacity: .7; }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-phone { text-decoration: none; font-weight: 650; white-space: nowrap; font-size: .95rem; color: #1d2024; display: inline-flex; gap: .45em; align-items: center; }
.nav-phone span { color: var(--accent); }
.nav-toggle { display: none; width: 48px; height: 48px; border: 1px solid var(--grey-200); background: #fff; border-radius: 12px; cursor: pointer; position: relative; }
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after { position: absolute; left: 12px; width: 22px; height: 2px; background: #141619; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s, background-color .2s; content: ""; }
.nav-toggle-bars { top: 22px; }
.nav-toggle-bars::before { top: -7px; left: 0; }
.nav-toggle-bars::after { top: 7px; left: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { transform: translateY(7px) rotate(45deg); background: var(--accent); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { transform: translateY(-7px) rotate(-45deg); background: var(--accent); }

@media (max-width: 1320px) { .nav-phone { display: none; } }
@media (max-width: 1100px) and (min-width: 961px) { .site-nav ul a { padding-inline: 9px; } .site-nav { gap: 14px; } .brand-logo { height: 48px; } }
@media (max-width: 960px) {
  :root { --header-h: 68px; }
  .brand-logo { height: 50px; }
  .nav-toggle { display: block; }
  /* Mobiles Menü: dunkle Fläche unter dem hellen Header */
  .site-nav { position: fixed; inset: calc(var(--header-h) + env(safe-area-inset-top, 0px)) 0 0 0; background: var(--anth-900); flex-direction: column; align-items: stretch; justify-content: flex-start;
    padding: 20px var(--gutter) calc(40px + env(safe-area-inset-bottom, 0px)); gap: 28px; overflow-y: auto; visibility: hidden; opacity: 0; transform: translateY(-8px);
    transition: opacity .25s, transform .3s var(--ease), visibility 0s .3s; }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: none; transition: opacity .25s, transform .3s var(--ease); }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav ul a { font-size: 1.6rem; font-weight: 650; letter-spacing: -.02em; padding: 16px 0; border-bottom: 1px solid #2b2f35; border-radius: 0; color: #f5f6f7; }
  .site-nav ul a::after { left: 0; right: auto; width: 32px; bottom: -1px; }
  .site-nav ul a:hover, .site-nav ul a[aria-current="page"] { color: #fff; }
  .nav-cta { flex-direction: column; align-items: stretch; }
  .nav-phone { display: flex; font-size: 1.1rem; padding: 8px 0; color: #f5f6f7; }
  .nav-cta .btn { min-height: 54px; }
  body.nav-open { overflow: hidden; }
  body.nav-open .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: #fff; }
}

/* ---------- Bilder */
.pic { margin: 0; position: relative; overflow: hidden; border-radius: var(--r-lg); background: var(--surface-2); isolation: isolate; }
.pic img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease), filter .6s; }
.pic::after { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(180deg, rgba(12,13,15,0) 55%, rgba(12,13,15,.28) 100%); }
.is-dark .pic img, .hero .pic img, .page-hero .pic img, .section-tint .pic img { filter: brightness(.92) contrast(1.03); }
.ratio-16x10 { aspect-ratio: 16 / 10; }
.ratio-4x5 { aspect-ratio: 4 / 5; }
.ratio-4x3 { aspect-ratio: 4 / 3; }
.pic-tag { position: absolute; right: 12px; bottom: 12px; z-index: 2; font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; background: rgba(12,13,15,.62); color: #fff; padding: .35em .75em; border-radius: 999px; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }

/* ---------- Hero */
.hero { padding: clamp(40px, 6vw, 88px) 0 clamp(56px, 7vw, 104px); position: relative; overflow: hidden;
  background: radial-gradient(900px 480px at 88% 10%, rgba(255,255,255,.05), transparent 60%), var(--bg); }
.hero::after, .page-hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: linear-gradient(90deg, var(--accent) 0 120px, transparent 120px); }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: clamp(32px, 4vw, 64px); align-items: center; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1fr 1.12fr; } }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 2rem; }
.hero-media .pic, .page-hero .pic { box-shadow: var(--shadow-lg); outline: 1px solid rgba(255,255,255,.06); outline-offset: -1px; }

.page-hero { position: relative; padding: clamp(40px, 5vw, 80px) 0 clamp(48px, 6vw, 88px); background: radial-gradient(800px 420px at 90% 0%, rgba(255,255,255,.05), transparent 60%), var(--bg); }
.page-hero-grid { display: grid; gap: clamp(32px, 4vw, 64px); align-items: center; }
@media (min-width: 960px) { .page-hero-grid { grid-template-columns: 1fr 1fr; } }
.page-hero-plain { padding-bottom: clamp(40px, 5vw, 64px); }
.page-hero-tight { padding-bottom: clamp(36px, 4vw, 56px); }

/* ---------- Sektionen */
.section { padding: clamp(64px, 8vw, 120px) 0; }
.section-form { padding-top: clamp(40px, 5vw, 64px); }
.section-head { max-width: 760px; margin-bottom: clamp(32px, 4vw, 56px); }
.split { display: grid; gap: clamp(24px, 5vw, 72px); }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; align-items: start; } }

/* Einstiege */
.entry-grid { display: grid; gap: clamp(20px, 3vw, 32px); }
@media (min-width: 800px) { .entry-grid { grid-template-columns: 1fr 1fr; } }
.entry { display: flex; flex-direction: column; text-decoration: none; color: var(--fg); background: var(--surface); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--line); transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s; }
.entry:hover { color: var(--fg); transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.entry:hover .pic img { transform: scale(1.045); }
.entry .pic { border-radius: 0; }
.entry .pic::after { background: linear-gradient(180deg, rgba(12,13,15,0) 45%, rgba(12,13,15,.55) 100%); }
.entry-body { padding: clamp(24px, 3vw, 38px); position: relative; }
.entry-body::before { content: ""; position: absolute; left: clamp(24px, 3vw, 38px); top: 0; width: 48px; height: 3px; background: var(--accent); transition: width .5s var(--ease); }
.entry:hover .entry-body::before { width: 96px; }
.entry-num { font: 700 .78rem/1 var(--sans); letter-spacing: .16em; color: var(--muted); }
.entry-title { font-size: clamp(1.9rem, 3vw, 2.5rem); font-weight: 700; letter-spacing: -.03em; margin: .45em 0 .2em; }
.entry-claim { font-weight: 650; margin: 0 0 .9em; color: var(--fg); }
.entry p { color: var(--fg-2); }
.entry-link { display: inline-flex; gap: .45em; font-weight: 650; margin-top: .4em; color: var(--accent); }
.entry-link span { transition: transform .3s var(--ease); }
.entry:hover .entry-link span { transform: translateX(5px); }

/* Über uns */
.about .lead-sm { color: #eef0f2; font-size: clamp(1.15rem, 1.8vw, 1.4rem); line-height: 1.6; }
.about-grid { display: grid; gap: 24px; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 5fr 7fr; } }

/* Stärken */
.strength-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; counter-reset: s; }
@media (min-width: 720px) { .strength-list { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .strength-list { grid-template-columns: repeat(3, 1fr); } }
.strength-list li { padding: 30px 28px 28px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); counter-increment: s; transition: transform .4s var(--ease), border-color .4s; }
.strength-list li:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.strength-list li::before { content: counter(s, decimal-leading-zero); font: 700 .8rem/1 var(--sans); letter-spacing: .12em; color: var(--accent); display: block; margin-bottom: 18px; }
.strength-list h3 { font-size: 1.22rem; }
.strength-list p { margin: 0; color: var(--fg-2); }

/* Kacheln */
.tiles { padding-top: clamp(64px, 8vw, 120px); }
.tile-grid { display: grid; gap: 20px; }
@media (min-width: 800px) { .tile-grid { grid-template-columns: 1fr 1fr; } .tile-grid-single { grid-template-columns: 1fr; } }
.tile { position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(28px, 4vw, 48px); border-radius: var(--r-lg); text-decoration: none; min-height: 260px; overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tile p { margin: 0 0 .4em; }
.tile-dark { background: var(--anth-900); color: #f5f6f7; }
.tile-dark::before { content: ""; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; border-radius: 50%; border: 2px solid rgba(227,0,22,.5); transition: transform .6s var(--ease); }
.tile-dark:hover::before { transform: scale(1.12); }
.tile-dark:hover { color: #fff; }
.tile-dark .eyebrow { color: #a0a7ae; }
.tile-dark h2 { color: #fff; }
.tile-accent { background: var(--white); color: var(--fg); border: 1px solid var(--line); }
.tile-accent:hover { color: var(--fg); }
.tile-link { display: inline-flex; gap: .4em; font-weight: 650; margin-top: 14px; color: var(--accent); }
.tile-dark .tile-link { color: #fff; }
.tile-dark .tile-link span[aria-hidden] { color: var(--accent); }

/* Kontakt-Teaser */
.contact-grid { display: grid; gap: clamp(28px, 5vw, 72px); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.contact-card { margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow); display: grid; gap: 22px; }
.contact-card dt { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 650; margin-bottom: 4px; }
.contact-card dd { margin: 0; color: var(--fg-2); }
.big-link { font-size: clamp(1.25rem, 2.3vw, 1.6rem); font-weight: 650; letter-spacing: -.015em; color: var(--fg); text-decoration: none; word-break: break-word; }
.big-link:hover { text-decoration: underline; }

/* Kennzahlen */
.stats { margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.stats > div { background: var(--surface); padding: clamp(18px, 3vw, 28px); }
.stats dt { font-size: clamp(1.45rem, 2.4vw, 2rem); white-space: nowrap; font-weight: 750; letter-spacing: -.03em; color: var(--accent); line-height: 1.1; margin-bottom: 6px; font-variant-numeric: tabular-nums; }
.stats dd { margin: 0; color: var(--fg-2); font-size: .95rem; }
.note-card { margin-top: clamp(28px, 4vw, 48px); padding: clamp(22px, 3vw, 32px); border: 1px solid var(--line); border-left: 3px solid var(--accent); background: var(--surface); border-radius: var(--r); }
.note-card p { margin: 0; color: var(--fg-2); }

/* Leistungsblöcke */
.service-block { display: grid; gap: clamp(24px, 4vw, 64px); align-items: center; padding: clamp(28px, 4vw, 48px) 0; }
.service-block + .service-block { border-top: 1px solid var(--line); }
@media (min-width: 900px) { .service-block { grid-template-columns: 1fr 1fr; } .service-block-rev .service-text { order: 2; } }
.service-text p { color: var(--fg-2); }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 1.3rem 0 0; }
.chips li { background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: .42em .95em; font-size: .9rem; color: var(--fg-2); transition: border-color .25s, color .25s; }
.chips li:hover { border-color: var(--accent); color: var(--fg); }
.ticks { list-style: none; padding: 0; margin: 1rem 0; }
.ticks li { padding-left: 1.9em; position: relative; margin: .6em 0; color: var(--fg-2); }
.ticks li::before { content: ""; position: absolute; left: 0; top: .52em; width: .95em; height: .5em; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }

/* Ablauf */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
@media (min-width: 720px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.steps li { position: relative; background: var(--surface); border-radius: var(--r-lg); padding: 30px 28px; border: 1px solid var(--line); box-shadow: 0 1px 2px rgba(0,0,0,.04); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.steps li:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-n { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--anth-900); color: #fff; font-weight: 700; margin-bottom: 20px; box-shadow: inset 0 -3px 0 var(--accent); }
.steps h3 { font-size: 1.2rem; }
.steps p { margin: 0; color: var(--fg-2); }

/* Gewerke */
.trade-grid { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
@media (min-width: 640px) { .trade-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .trade-grid { grid-template-columns: repeat(3, 1fr); } }
.trade-grid li { padding: 28px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s; }
.trade-grid li:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.trade-ic { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; background: rgba(227,0,22,.08); color: var(--accent); margin-bottom: 16px; }
.trade-ic svg { width: 24px; height: 24px; }
.trade-grid h3 { font-size: 1.18rem; margin-bottom: .35em; }
.trade-grid p { margin: 0; color: var(--fg-2); }
.two-col { display: grid; gap: 20px; }
@media (min-width: 800px) { .two-col { grid-template-columns: 1fr 1fr; } }
.col-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px, 3.5vw, 42px); }
.col-card p { color: var(--fg-2); margin-bottom: 0; }

/* Vorher-Nachher */
.compare { margin: 0; }
.compare-stage { position: relative; overflow: hidden; -webkit-touch-callout: none; -webkit-tap-highlight-color: transparent; border-radius: var(--r-lg); aspect-ratio: 16 / 10; background: var(--anth-800); user-select: none; -webkit-user-select: none; touch-action: pan-y; cursor: ew-resize; box-shadow: var(--shadow-lg); --pos: 50%; }
.compare-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; -webkit-user-drag: none; }
.compare-before-wrap { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.compare-label { position: absolute; top: 16px; padding: .4em 1em; border-radius: 999px; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; pointer-events: none; }
.compare-label-before { left: 16px; background: rgba(12,13,15,.82); color: #fff; }
.compare-label-after { right: 16px; background: var(--accent); color: #fff; }
.compare-handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 48px; margin-left: -24px; display: grid; place-items: center; cursor: ew-resize; touch-action: none; }
.compare-handle::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; margin-left: -1.5px; background: #fff; box-shadow: 0 0 0 1px rgba(0,0,0,.15); }
.compare-knob { position: relative; width: 54px; height: 54px; border-radius: 50%; background: #fff; color: var(--accent); display: grid; place-items: center; box-shadow: 0 8px 22px rgba(0,0,0,.35), 0 0 0 4px rgba(227,0,22,.25); transition: transform .2s var(--ease); }
.compare-handle:focus-visible { outline: none; }
.compare-handle:focus-visible .compare-knob { outline: 2px solid var(--accent); outline-offset: 4px; }
.compare-stage.is-dragging .compare-knob { transform: scale(1.08); }
.compare-stage.is-dragging, .compare-stage.is-dragging * { user-select: none; -webkit-user-select: none; }
.compare-caption { margin-top: 14px; font-size: .88rem; color: var(--muted); display: flex; gap: .5em; align-items: center; }
.compare-caption::before { content: "i"; display: inline-grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; border: 1px solid currentColor; font: 700 .68rem/1 var(--sans); flex-shrink: 0; }

/* CTA-Band */
.cta-band { position: relative; padding: clamp(56px, 7vw, 96px) 0; overflow: hidden;
  background: radial-gradient(700px 300px at 100% 100%, rgba(227,0,22,.16), transparent 70%), var(--bg); border-top: 1px solid var(--line); }
.cta-inner { display: grid; gap: 28px; align-items: center; }
@media (min-width: 900px) { .cta-inner { grid-template-columns: 1.4fr 1fr; } }
.cta-band h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); font-weight: 700; letter-spacing: -.03em; }
.cta-band p { color: var(--fg-2); margin: 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (min-width: 900px) { .cta-actions { justify-content: flex-end; } }

/* Karriere */
.job-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.job-card { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 26px 30px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); text-decoration: none;
  transition: border-color .3s, transform .35s var(--ease), box-shadow .35s var(--ease); }
.job-card:hover { border-color: var(--accent); color: var(--fg); transform: translateX(4px); box-shadow: var(--shadow); }
.job-card p { margin: 0; color: var(--fg-2); }
.job-card h3 { margin-bottom: .2em; }
.job-meta { color: var(--muted) !important; font-size: .95rem; margin-bottom: .4em !important; }
.job-arrow { font-size: 1.4rem; color: var(--accent); transition: transform .3s var(--ease); }
.job-card:hover .job-arrow { transform: translateX(4px); }
.empty-state { padding: 28px; background: var(--surface); border-radius: var(--r-lg); border: 1px dashed var(--line-strong); }
.empty-state p:last-child { margin-bottom: 0; }
.initiative { margin-top: 32px; padding: clamp(26px, 4vw, 44px); border-radius: var(--r-lg); background: var(--anth-900); color: #f5f6f7; display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow); border-left: 4px solid var(--accent); }
.initiative h2, .initiative h3 { color: #fff; }
.initiative p { margin: 0; color: #d2d6da; }
.job-detail h2 { margin-top: 2.2rem; }

/* Formulare (helle Flächen für beste Lesbarkeit) */
.form { display: grid; grid-template-columns: minmax(0, 1fr); gap: 8px; }
fieldset { border: 0; margin: 0 0 28px; padding: 0; min-width: 0; }
legend { font-size: 1.35rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: 16px; padding: 0; color: var(--fg); }
.grid-2 { display: grid; gap: 0 20px; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.field { margin-bottom: 18px; }
.field > label, .label { display: block; font-weight: 600; margin-bottom: 7px; font-size: .96rem; color: var(--fg); }
legend.label { font-size: .96rem; font-weight: 600; letter-spacing: 0; margin-bottom: 8px; }
.opt { font-weight: 400; color: var(--muted); }
input[type="text"], input[type="email"], input[type="tel"], input[type="password"], input[type="url"], input[type="date"], input:not([type]), select, textarea {
  width: 100%; min-height: 52px; padding: 13px 15px; font: inherit; font-size: 1rem; color: var(--fg); background: var(--field);
  border: 1.5px solid var(--line-strong); border-radius: var(--r-sm); transition: border-color .2s, box-shadow .2s; }
textarea { min-height: 140px; resize: vertical; }
select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--fg) 50%), linear-gradient(135deg, var(--fg) 50%, transparent 50%);
  background-position: calc(100% - 20px) 23px, calc(100% - 14px) 23px; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 40px; }
input:hover, select:hover, textarea:hover { border-color: #9aa1a8; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(227,0,22,.14); }
.has-error input, .has-error select, .has-error textarea, .has-error .upload-drop { border-color: var(--err); }
.field-error { color: var(--err); font-size: .92rem; margin: 7px 0 0; font-weight: 550; display: flex; gap: .45em; align-items: baseline; }
.field-error::before { content: "!"; display: inline-grid; place-items: center; width: 16px; height: 16px; border-radius: 50%; background: var(--err); color: #fff; font-size: .7rem; font-weight: 800; flex-shrink: 0; transform: translateY(2px); }
.hint { font-size: .9rem; color: var(--muted); margin: 7px 0 0; }
.hint-warn { color: #6b4a00; background: #fff6df; padding: 9px 13px; border-radius: 8px; margin-bottom: 14px; }
.check { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start; }
.check input { width: 22px; height: 22px; margin: 2px 0 0; accent-color: var(--accent); }
.check label { font-weight: 400; margin: 0; color: var(--fg-2); }
.check .field-error { grid-column: 1 / -1; }
.privacy-box { background: var(--grey-100); border-radius: var(--r); padding: 16px 18px; font-size: .95rem; margin-bottom: 14px; color: var(--fg-2); border-left: 3px solid var(--anth-900); }
.privacy-box p { margin: 0; }
.form-alert { display: none; padding: 14px 16px; border-radius: var(--r-sm); background: #fdecea; color: #6e1a12; border: 1px solid #f3c0bb; font-weight: 550; }
.form-alert.is-visible { display: block; }
.seg { display: flex; flex-wrap: wrap; gap: 10px; }
.seg-opt { position: relative; }
.seg-opt input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.seg-opt span { display: inline-flex; align-items: center; min-height: 48px; padding: 0 20px; border: 1.5px solid var(--line-strong); border-radius: var(--r-sm); background: var(--field); font-weight: 550; transition: all .2s; }
.seg-opt:hover span { border-color: var(--fg); }
.seg-opt input:checked + span { background: var(--anth-900); color: #fff; border-color: var(--anth-900); box-shadow: inset 0 -3px 0 var(--accent); }
.seg-opt input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }
.submit-row { display: grid; gap: 16px; margin-top: 8px; }
.submit-row .btn, .contact-page .form > .btn { justify-self: start; }
.progress { display: grid; gap: 8px; }
.progress[hidden] { display: none; }
.progress-bar { height: 8px; background: var(--grey-200); border-radius: 999px; overflow: hidden; }
.progress-bar span { display: block; height: 100%; width: 0; background: var(--accent); transition: width .2s linear; }
.progress-text { margin: 0; font-size: .95rem; color: var(--fg-2); }
.section-form .narrow > .form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(22px, 4vw, 44px); box-shadow: var(--shadow); }

/* Upload */
.upload-drop { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 6px;
  min-height: 136px; padding: 22px; border: 1.5px dashed var(--line-strong); border-radius: var(--r); background: var(--grey-50); transition: border-color .2s, background-color .2s; }
.upload-drop:hover, .upload-drop.is-over { border-color: var(--accent); background: #fff5f5; }
.upload-drop:focus-within { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(227,0,22,.14); }
.upload-input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; font-size: 0; }
.upload-ic { color: var(--accent); }
.upload-cta strong { text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 3px; }
.upload-hint { font-size: .86rem; color: var(--muted); }
.dnd-only { display: none; }
@media (hover: hover) and (pointer: fine) { .dnd-only { display: inline; } }
.upload-list { list-style: none; margin: 10px 0 0; padding: 0; display: grid; gap: 8px; }
.upload-list:empty { display: none; }
.upload-item { display: grid; grid-template-columns: 38px 1fr auto; gap: 12px; align-items: center; padding: 10px 12px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-sm); }
.upload-item.is-invalid { border-color: var(--err); background: #fdf1ef; }
.file-ic { width: 38px; height: 38px; border-radius: 8px; display: grid; place-items: center; font: 700 .62rem/1 var(--sans); letter-spacing: .04em; background: var(--anth-900); color: #fff; }
.file-name { font-weight: 550; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-meta { font-size: .85rem; color: var(--muted); }
.upload-item.is-invalid .file-meta { color: var(--err); }
.file-remove { min-height: 40px; min-width: 40px; padding: 0 12px; border: 1px solid var(--line); border-radius: 8px; background: transparent; cursor: pointer; font: 550 .9rem var(--sans); color: var(--fg); transition: border-color .2s, color .2s; }
.file-remove:hover { border-color: var(--err); color: var(--err); }

/* Kontaktseite */
.contact-page { display: grid; gap: clamp(28px, 5vw, 64px); }
@media (min-width: 960px) { .contact-page { grid-template-columns: 5fr 7fr; align-items: start; } .contact-aside { position: sticky; top: calc(var(--header-h) + 24px); } }
.contact-aside .contact-card { background: var(--anth-900); border-color: var(--anth-900); --fg: #f5f6f7; --fg-2: #d2d6da; --muted: #a0a7ae; color: var(--fg); }
.contact-aside .contact-card a { color: #fff; }
.contact-page .form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(22px, 4vw, 44px); box-shadow: var(--shadow); }

/* Bestätigung */
.confirm { text-align: left; }
.confirm-ic { display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 1.8rem; margin-bottom: 24px; animation: pop .6s var(--ease); box-shadow: 0 0 0 8px rgba(227,0,22,.18); }
.ref { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; background: rgba(255,255,255,.1); padding: .1em .45em; border-radius: 6px; white-space: nowrap; color: #fff; }
@keyframes pop { from { transform: scale(.6); opacity: 0; } to { transform: none; opacity: 1; } }

/* Rechtstexte */
.legal { background: var(--white); }
.legal h2 { font-size: 1.3rem; margin-top: 2.4rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.legal h2:first-child { border-top: 0; padding-top: 0; margin-top: 0; }
.legal h3 { font-size: 1.05rem; margin-top: 1.4rem; }
.legal p, .legal li { color: var(--fg-2); overflow-wrap: anywhere; }

/* Footer */
.site-footer { padding: 72px 0 calc(28px + env(safe-area-inset-bottom, 0px)); font-size: .96rem; color: var(--fg-2); border-top: 3px solid var(--accent); }
.site-footer a { color: #eef0f2; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid { display: grid; gap: 32px; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.footer-logo { display: inline-block; margin-bottom: 18px; }
.footer-logo img { height: 64px; width: auto; aspect-ratio: 204.4 / 126.8; }
@media (max-width: 719px) { .footer-logo img { height: 58px; } }
.footer-brand { font-size: 1.15rem; font-weight: 700; color: #fff; margin-top: 0; }
.footer-h { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 650; margin-top: 0; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; font-size: .88rem; color: var(--muted); }
.footer-bottom p { margin: 0; }

/* Einblend-Animationen (nur mit JS aktiv, respektiert reduzierte Bewegung) */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ---------- News (neue Seite, nutzt die bestehenden Tokens und Kartenstile) */
.news-filter { display: grid; gap: 16px; margin-bottom: clamp(28px, 4vw, 44px); }
.news-tabs { display: inline-flex; flex-wrap: wrap; gap: 4px; padding: 4px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; justify-self: start; max-width: 100%; }
.news-tabs a { padding: 10px 16px; border-radius: 9px; text-decoration: none; font-weight: 600; font-size: .95rem; color: var(--fg-2); transition: background-color .2s, color .2s; }
.news-tabs a:hover { color: var(--fg); background: var(--grey-100); }
.news-tabs a[aria-current="page"] { background: var(--anth-900); color: #fff; box-shadow: inset 0 -3px 0 var(--accent); }
.news-cats { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; }
.news-cats a { display: inline-block; padding: .42em .95em; border: 1px solid var(--line); border-radius: 999px; background: var(--white); text-decoration: none; font-size: .9rem; color: var(--fg-2); transition: border-color .2s, color .2s; }
.news-cats a:hover, .news-cats a[aria-current="true"] { border-color: var(--accent); color: var(--fg); }
.news-cats a[aria-current="true"] { box-shadow: inset 0 0 0 1px var(--accent); }
.news-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
@media (min-width: 720px) { .news-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .news-grid { grid-template-columns: repeat(3, 1fr); } }
.news-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s; }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.news-card.is-own { border-top: 3px solid var(--accent); }
.news-card.is-expired { opacity: .72; }
@media (min-width: 1080px) { .news-card.is-lead { grid-column: span 2; } .news-card.is-lead .news-media { aspect-ratio: 21 / 9; } .news-card.is-lead .news-title { font-size: 1.6rem; } }
.news-media { display: block; aspect-ratio: 16 / 9; background: var(--anth-900); overflow: hidden; position: relative; }
.news-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.news-card:hover .news-media img { transform: scale(1.04); }
.news-placeholder { display: grid; place-items: center; width: 100%; height: 100%; background: radial-gradient(420px 220px at 90% 110%, rgba(227,0,22,.28), transparent 70%), var(--anth-900); }
.news-placeholder img { width: 40%; height: auto; max-width: 180px; object-fit: contain; }
.news-card:hover .news-placeholder img { transform: none; }
.news-source-band { height: 6px; background: var(--anth-900); }
.news-source-band span { display: none; }
.news-body { display: flex; flex-direction: column; gap: 10px; padding: 22px 24px 24px; flex: 1; }
.news-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0; font-size: .8rem; }
.news-badge { padding: .28em .7em; border-radius: 6px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: .7rem; }
.news-badge-own { background: var(--accent); color: #fff; }
.news-badge-feed { background: var(--anth-900); color: #fff; }
.page-hero .news-badge-feed { background: #fff; color: var(--anth-900); }
.news-cat { color: var(--muted); font-weight: 600; }
.news-flag { padding: .22em .6em; border-radius: 6px; font-weight: 700; font-size: .72rem; border: 1px solid var(--accent); color: var(--accent); background: rgba(227,0,22,.06); }
.page-hero .news-flag { color: #fff; }
.news-flag-muted { border-color: var(--line-strong); color: var(--muted); background: transparent; }
.news-title { font-size: 1.2rem; line-height: 1.3; margin: 0; letter-spacing: -.015em; }
.news-title a { text-decoration: none; }
.news-title a:hover { color: var(--accent); }
.news-summary { margin: 0; color: var(--fg-2); font-size: .97rem; }
.news-foot { margin: auto 0 0; padding-top: 10px; display: flex; flex-wrap: wrap; gap: 4px 10px; align-items: baseline; font-size: .86rem; color: var(--muted); border-top: 1px solid var(--line); }
.news-src { font-weight: 600; color: var(--fg-2); }
.news-more { margin-left: auto; font-weight: 650; color: var(--accent); text-decoration: none; white-space: nowrap; }
.news-more:hover { text-decoration: underline; }
.news-pager { display: flex; gap: 12px; justify-content: center; margin-top: 32px; }
.news-note { margin-top: 32px; max-width: 70ch; }
.news-dates { color: var(--muted); margin: 0; }
.news-hero-img { aspect-ratio: 16 / 9; margin-bottom: 32px; box-shadow: var(--shadow); }
.news-text { font-size: 1.1rem; line-height: 1.75; color: var(--fg-2); max-width: 68ch; }
.news-article .initiative { margin-top: 40px; }
.news-more-h { margin-top: 48px; }
.news-mini { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.news-mini a { display: grid; gap: 2px; padding: 16px 18px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); text-decoration: none; transition: border-color .2s; }
.news-mini a:hover { border-color: var(--accent); color: var(--fg); }
.news-mini time { font-size: .85rem; color: var(--muted); }
.job-contact { color: var(--fg-2); }
@media (max-width: 560px) { .news-tabs { display: grid; grid-template-columns: 1fr; width: 100%; } .news-tabs a { text-align: center; } }
