/* Lokal gehostete Schriften (keine Verbindung zu Google) */
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400 600; font-display: swap; src: url("assets/fonts/inter.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 600 800; font-display: swap; src: url("assets/fonts/montserrat.woff2") format("woff2"); }

:root {
  --bg: #0b0b0c;
  --bg-alt: #141416;
  --surface: #18181b;
  --line: #2a2a2e;
  --text: #ececec;
  --muted: #a3a3a8;
  --gold: #c9a24a;
  --gold-2: #e2c27a;
  --gold-deep: #9c7a2c;
  --gold-grad: linear-gradient(135deg, #e8cf8e 0%, #c9a24a 45%, #9c7a2c 100%);
  --ivory: #f4efe4;
  --ink: #151515;
  --ink-muted: #4a463e;
  --gold-ink: #7a5c15;
  --radius: 14px;
  --max: 1180px;
  --font: "Inter", system-ui, sans-serif;
  --display: "Montserrat", var(--font);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
html, body { overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.2; margin: 0 0 .6em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; }
.container { width: min(var(--max), 100% - 32px); margin-inline: auto; }
.muted { color: var(--muted); font-size: .92rem; }
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 600;
  margin-bottom: .8em;
}
.text-gold { color: var(--gold); }
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .text-gold { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
}
.skip { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--gold); color: #111; padding: 10px 16px; border-radius: 8px; font-weight: 600; }
.skip:focus { top: 12px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px;
  padding: .85em 1.6em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .15s, filter .2s, box-shadow .2s, border-color .2s, color .2s, background .2s;
  cursor: pointer; font: inherit; font-weight: 600;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn--gold { background: var(--gold-grad); color: #111; box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 8px 24px -12px rgba(201,162,74,.7); }
.btn--gold:hover { background: var(--gold-grad); filter: brightness(1.07); box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 14px 32px -12px rgba(201,162,74,.9); }
.btn--ghost { border-color: rgba(255,255,255,.35); color: #fff; }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--sm { min-height: 40px; padding: .55em 1.1em; font-size: .9rem; }
.btn--block { width: 100%; }

/* Topbar */
.topbar { background: #000; border-bottom: 1px solid var(--line); font-size: .85rem; color: var(--muted); }
.topbar__inner { display: flex; gap: 24px; padding: 8px 0; align-items: center; }
.topbar a:hover { color: var(--gold); }
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #3ecf6e; margin-right: 4px; box-shadow: 0 0 0 3px rgba(62,207,110,.2); animation: pulse 2.2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(62,207,110,.55); } 100% { box-shadow: 0 0 0 9px rgba(62,207,110,0); } }

/* Header */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s;
}
.header.is-scrolled { box-shadow: 0 8px 30px rgba(0,0,0,.5); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; transition: height .25s; }
.header.is-scrolled .header__inner { height: 64px; }
.logo img { height: 56px; width: auto; transition: height .25s; }
.header.is-scrolled .logo img { height: 46px; }
.logo img, .footer__brand img { mix-blend-mode: lighten; }
.nav { display: flex; align-items: center; gap: 28px; font-weight: 500; font-size: .95rem; }
.nav a:not(.btn) { position: relative; color: #d6d6d6; }
.nav a:not(.btn):hover, .nav a.active { color: var(--gold); }
.nav a:not(.btn):not(.nav__phone)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1.5px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.nav a:not(.btn):not(.nav__phone):hover::after, .nav a.active::after { transform: scaleX(1); }
.nav__phone { display: inline-flex; align-items: center; gap: 8px; color: #fff !important; font-weight: 600; }
.nav__phone svg { width: 16px; height: 16px; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.burger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.burger span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: .25s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero { position: relative; min-height: min(88vh, 780px); display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 88%; animation: heroZoom 1.8s ease-out both; }
@keyframes heroZoom { from { transform: scale(1.06); } }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,11,12,.95) 0%, rgba(11,11,12,.88) 55%, rgba(11,11,12,.35) 100%), linear-gradient(0deg, var(--bg) 0%, transparent 28%);
}
.hero .eyebrow { color: var(--gold-2); }
.hero__content { position: relative; padding: 88px 0 72px; max-width: 940px; margin-left: max(16px, (100% - var(--max)) / 2); }
.hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); font-weight: 800; line-height: 1.08; letter-spacing: -.02em; }
.hero .lead { font-size: 1.15rem; color: #cfcfcf; max-width: 620px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero .eyebrow::before, .split .eyebrow::before, .contact .eyebrow::before { content: ""; display: inline-block; width: 28px; height: 1px; background: currentColor; vertical-align: middle; margin-right: 12px; }
.hero__segments { margin-top: 34px; }
.hero__segments-label { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: #bdb6a6; margin-bottom: 12px; }
.pills { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.pill { display: inline-flex; align-items: center; min-height: 40px; padding: .4em 1em; border: 1px solid rgba(201,162,74,.45); border-radius: 999px; font-size: .9rem; color: #e6dcc6; background: rgba(11,11,12,.45); transition: border-color .2s, color .2s, background .2s; }
.pill:hover { border-color: var(--gold); background: var(--gold); color: #111; }

/* Trust */
.trust { background: var(--surface); border-block: 1px solid var(--line); }
.trust__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--line); }
.trust__item { background: var(--surface); padding: 24px 14px; text-align: center; border: 0; }
.trust__item strong { display: block; font-family: var(--display); color: var(--gold); font-size: 1.2rem; overflow-wrap: break-word; }
.trust__item span { display: block; color: var(--muted); font-size: .86rem; line-height: 1.4; margin-top: 4px; }

/* Partner */
.partners { padding: 44px 0 40px; border-bottom: 1px solid var(--line); text-align: center; }
.partners__label { margin: 0 0 22px; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.partners__list { list-style: none; margin: 0 auto; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; max-width: 880px; }
.partner { display: grid; gap: 10px; }
.partner img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 12px; background: #fff; box-shadow: 0 10px 30px -18px rgba(0,0,0,.9); transition: transform .25s; }
.partner:hover img { transform: translateY(-3px); }
.partner span { font-size: .86rem; color: #d6d6da; font-weight: 500; }
.partners__note { margin: 22px 0 0; font-size: .88rem; color: var(--muted); }

/* Team-Streifen */
.team__strip { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
.team__strip li { transform: rotate(var(--r, 0deg)); transition: transform .3s; }
.team__strip li:nth-child(odd) { --r: -2deg; }
.team__strip li:nth-child(even) { --r: 2deg; margin-top: 18px; }
.team__strip li:hover { transform: rotate(0) scale(1.04); z-index: 1; }
.team__strip img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 6px; border: 6px solid #fff; box-shadow: 0 16px 34px -18px rgba(0,0,0,.9); }
.team__more { text-align: center; margin: 40px 0 0; }

/* Sections */
.section { padding: 96px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section__head p:last-child { color: var(--muted); }
.section__head h2::after { content: ""; display: block; width: 48px; height: 2px; margin: 18px auto 0; background: var(--gold-grad); }

/* Cards */
.cards { display: grid; gap: 22px; }
.cards--feature, .cards--compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards--compact { margin-top: 22px; }
.card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: border-color .2s, transform .2s;
}
.card:hover { border-color: var(--gold); transform: translateY(-3px); }
.card__icon {
  width: 50px; height: 50px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(201,162,74,.12); margin-bottom: 18px;
  transition: background .2s;
}
.card__icon svg { width: 26px; height: 26px; fill: none; stroke: var(--gold); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke .2s; }
.card:hover .card__icon { background: var(--gold); }
.card:hover .card__icon svg { stroke: #111; }
.card h3 { margin-bottom: .2em; }
.card h3, .card li b { overflow-wrap: anywhere; hyphens: auto; }
.card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; align-content: start; }
.card li { color: var(--muted); font-size: .93rem; padding-left: 18px; position: relative; }
.card li::before { content: ""; position: absolute; left: 0; top: .75em; width: 10px; height: 2px; background: var(--gold); }
.card li b { color: var(--text); font-weight: 600; }
.card__for { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: #bfae8a; margin-bottom: .5em; }
.card__lead { color: #d9d6cf; font-size: .97rem; margin-bottom: 1em; }
.card__link { margin-top: auto; padding-top: 18px; align-self: flex-start; justify-self: start; color: var(--gold); font-weight: 600; }
.card__link::after { content: "\00a0\2192"; content: "\00a0\2192" / ""; display: inline; transition: padding-left .2s; }
.card__link:hover::after { padding-left: 4px; }
.card--photo { padding: 0; overflow: hidden; }
.card__media { aspect-ratio: 16/10; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.card--photo:hover .card__media img { transform: scale(1.04); }
.card__body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.card--compact { display: grid; grid-template-columns: 50px minmax(0, 1fr); grid-template-rows: auto auto auto 1fr auto; column-gap: 18px; }
.card--compact .card__icon { grid-column: 1; grid-row: 1 / span 5; margin: 0; }
.card--compact > :not(.card__icon) { grid-column: 2; }
.card--discreet { background: #050505; border-color: rgba(201,162,74,.35); }
.cards__help { text-align: center; color: var(--muted); margin: 36px 0 0; }
.cards__help a { color: var(--gold); font-weight: 600; white-space: nowrap; }

/* Heller Abschnitt + Split */
.section--light { background: var(--ivory); color: var(--ink); color-scheme: light; }
.section--light .eyebrow { color: var(--gold-ink); }
.section--light .split p { color: var(--ink-muted); }
.section--light .checks li::before { border-color: var(--gold-deep); color: var(--gold-deep); }
.section--light :focus-visible { outline-color: var(--gold-deep); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split__img { position: relative; isolation: isolate; }
.split__img img { border-radius: var(--radius); aspect-ratio: 4/5; object-fit: cover; object-position: 50% 30%; width: 100%; }
.split__img::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid rgba(156,122,44,.55); border-radius: var(--radius); z-index: -1; }
.split p { color: var(--muted); }
.split__note { font-size: .92rem; }
.checks { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; }
.checks li { padding-left: 32px; position: relative; }
.checks li::before {
  content: "✓"; content: "✓" / ""; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: transparent; border: 1.5px solid var(--gold); color: var(--gold); font-size: .75rem; font-weight: 700;
  display: grid; place-items: center; margin-top: 2px;
}
.checks--cols { grid-template-columns: 1fr 1fr; }

/* Ablauf (Zeitstrahl) */
.steps { position: relative; list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.steps::before { content: ""; position: absolute; top: 28px; left: 16.66%; right: 16.66%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.steps li { padding: 0 12px; text-align: center; }
.steps span {
  position: relative; display: grid; place-items: center; width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 50%;
  border: 2px solid var(--gold); background: var(--bg-alt); color: var(--gold); font-family: var(--display); font-weight: 700; font-size: 1.2rem;
}
.steps p { color: var(--muted); margin: 0; }

/* Galerie */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery__item { position: relative; padding: 0; border: 0; background: none; border-radius: 12px; overflow: hidden; cursor: zoom-in; aspect-ratio: 4/5; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; object-position: var(--pos, center); filter: saturate(.85) contrast(1.05); transition: transform .5s, filter .3s; }
.gallery__item:hover img, .gallery__item:focus-visible img { filter: none; transform: scale(1.04); }
.gallery__item::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(201,162,74,0); transition: box-shadow .3s; pointer-events: none; }
.gallery__item:hover::after { box-shadow: inset 0 0 0 1px rgba(201,162,74,.7); }
.gallery__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 36px 14px 12px; text-align: left; font-size: .85rem; font-weight: 600; color: #fff; background: linear-gradient(0deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.65) 60%, transparent 100%); text-shadow: 0 1px 3px rgba(0,0,0,.8); }
.gallery__more { text-align: center; margin: 28px 0 0; color: var(--muted); }
.gallery__more a:not(.btn) { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* Unterseiten: Kopfbereich */
.page-head { padding: 72px 0 40px; text-align: center; background: radial-gradient(ellipse at 50% 0%, rgba(201,162,74,.14), transparent 60%); }
.page-head h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: .3em; }
.page-head p:last-child { color: var(--muted); max-width: 640px; margin: 0 auto; }

/* Galerie-Seite: Filter + Mauerwerk */
.filter { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px; margin: 0 0 32px; }
.filter button { font: inherit; font-size: .92rem; cursor: pointer; min-height: 42px; padding: .4em 1.1em; border-radius: 999px; border: 1px solid rgba(201,162,74,.45); background: transparent; color: #e6dcc6; transition: background .2s, color .2s; }
.filter button:hover { border-color: var(--gold); }
.filter button[aria-pressed="true"] { background: var(--gold-grad); color: #111; border-color: transparent; font-weight: 600; }
.filter__count { width: 100%; text-align: center; color: var(--muted); font-size: .85rem; margin: 4px 0 0; }
.masonry { columns: 4 240px; column-gap: 14px; }
.masonry .gallery__item { display: block; width: 100%; aspect-ratio: auto; margin: 0 0 14px; break-inside: avoid; }
.masonry .gallery__item[hidden] { display: none; }
.masonry .gallery__item img { height: auto; }

/* Blog / Aktuelles */
.posts { display: grid; gap: 40px; max-width: 900px; margin: 0 auto; }
.post { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.post__media { display: grid; grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); gap: 2px; background: var(--line); }
.post__media img { width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; }
.post__media--single { background: #d4b060; }
.post__media--single img { aspect-ratio: auto; max-height: 280px; object-fit: contain; }
.post__body { padding: 30px 32px 34px; }
.post__meta { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: .85rem; color: var(--muted); margin-bottom: 10px; }
.post__meta .tag { color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; font-size: .75rem; }
.post h2 { font-size: 1.5rem; }
.post p { color: #d0d0d4; }
.post__quote { margin: 18px 0; padding: 4px 0 4px 20px; border-left: 3px solid var(--gold); font-style: italic; color: #e8e2d4; }
.post__author { display: flex; align-items: center; gap: 12px; margin-top: 18px; font-size: .92rem; color: var(--muted); }
.post__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gold-grad); color: #111; display: grid; place-items: center; font-family: var(--display); font-weight: 700; }
.post__quote cite { display: block; margin-top: 8px; font-style: normal; font-size: .9rem; color: var(--gold); }
.posts__empty { text-align: center; color: var(--muted); }

/* Stellen-Karten (Karriere) */
.jobcards { display: grid; gap: 10px; margin: 0 0 8px; }
.jobcard { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; transition: border-color .2s; }
.jobcard[open], .jobcard:hover { border-color: rgba(201,162,74,.6); }
.jobcard summary { list-style: none; cursor: pointer; display: flex; flex-wrap: wrap; align-items: center; gap: 4px 14px; padding: 14px 44px 14px 18px; position: relative; }
.jobcard summary::-webkit-details-marker { display: none; }
.jobcard summary::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); color: var(--gold); font-size: 1.4rem; line-height: 1; transition: transform .2s; }
.jobcard[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.jobcard__title { font-weight: 600; color: var(--text); }
.jobcard__meta { font-size: .85rem; color: var(--muted); }
.jobcard__body { padding: 0 18px 18px; }
.jobcard__body > p { color: #d0d0d4; margin: 0 0 12px; }
.jobcard__label { font-weight: 600; color: var(--text) !important; margin: 4px 0 10px !important; }
.jobs__text .jobcard .checks { margin-bottom: 20px; }
.jobcard__body .btn { margin-top: 4px; }

/* Bewerbungsformular */
.apply { margin-top: 30px; }
.upload { position: relative; display: grid !important; gap: 4px; text-align: center; padding: 22px 16px; border: 1.5px dashed rgba(201,162,74,.55); border-radius: 12px; background: rgba(201,162,74,.05); cursor: pointer; transition: background .2s, border-color .2s; }
.upload:hover, .upload.drag { background: rgba(201,162,74,.12); border-color: var(--gold); }
.upload input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; }
.upload:focus-within { outline: 2px solid var(--gold-2); outline-offset: 3px; }
.upload__title { color: var(--text); font-weight: 600; }
.upload__hint { font-size: .82rem; color: var(--muted); }
.upload__list { font-size: .86rem; color: var(--gold-2); }
.upload__list:empty { display: none; }

/* Spam-Falle im Kontaktformular */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Ankündigungsleiste (über Admin einschaltbar) */
.notice { background: var(--gold-grad); color: #111; font-size: .92rem; font-weight: 500; }
.notice__inner { padding: 10px 0; text-align: center; }
.notice a { color: #111; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; margin-left: 6px; }
.posts__social { text-align: center; color: var(--muted); max-width: 640px; margin: 48px auto 0; }
.posts__social a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,.92);
  display: grid; place-items: center; padding: 24px;
}
.lightbox:not([hidden]) { animation: fade .25s; }
.lightbox__close { position: absolute; top: 14px; right: 20px; z-index: 1; background: none; border: 0; color: #fff; font-size: 2.6rem; line-height: 1; cursor: pointer; }
.lightbox__fig { margin: 0; display: grid; gap: 10px; justify-items: center; }
.lightbox__fig img { max-height: 82vh; max-width: min(92vw, 1400px); border-radius: 10px; animation: zoomIn .3s ease; }
.lightbox__fig figcaption { color: #d6d6d6; font-size: .9rem; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 1; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: rgba(0,0,0,.5); color: #fff; font-size: 1.8rem; line-height: 1; cursor: pointer; }
.lightbox__nav--prev { left: 16px; }
.lightbox__nav--next { right: 16px; }
.lightbox__nav:hover { border-color: var(--gold); color: var(--gold); }
@keyframes fade { from { opacity: 0; } }
@keyframes zoomIn { from { opacity: 0; transform: scale(.96); } }

/* CTA-Band */
.cta-band {
  padding: 88px 0; text-align: center;
  background: radial-gradient(120% 140% at 0% 0%, rgba(201,162,74,.28), transparent 55%), radial-gradient(120% 140% at 100% 100%, rgba(201,162,74,.16), transparent 50%), #0f0f10;
  border-block: 1px solid rgba(201,162,74,.25);
}
.cta-band__inner { max-width: 760px; }
.cta-band h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; letter-spacing: -.01em; }
.cta-band p { color: #cfcfcf; }
.cta-band .eyebrow { color: var(--gold); }
.cta-band .hero__actions { justify-content: center; }

/* Karriere */
.roles { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.roles li { border: 1px dashed rgba(201,162,74,.45); border-radius: 999px; padding: .45em 1.05em; font-size: .9rem; color: #e6dcc6; background: none; cursor: default; }
/* Karriere: persönlich, mit Plakat-Banner */
.jobs__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 64px; align-items: start; }
.jobs__visual { position: sticky; top: 110px; padding-bottom: 60px; }
.jobs__photo { margin: 0; position: relative; transform: rotate(-2deg); background: #fff; padding: 12px 12px 44px; border-radius: 4px; box-shadow: 0 24px 50px -20px rgba(0,0,0,.8); }
.jobs__photo img { width: 100%; aspect-ratio: 418/490; object-fit: cover; border-radius: 2px; }
.jobs__photo figcaption { position: absolute; left: 0; right: 0; bottom: 12px; text-align: center; color: #333; font-size: .9rem; font-style: italic; }
.jobs__poster { position: absolute; left: -24px; right: 24px; bottom: 0; display: block; transform: rotate(3deg); transition: transform .25s; filter: drop-shadow(0 16px 24px rgba(0,0,0,.55)); }
.jobs__poster img { width: 100%; border-radius: 6px; }
.jobs__poster:hover { transform: rotate(1deg) scale(1.03); }
.jobs__lead { font-size: 1.08rem; color: #d8d8dc; }
.jobs__text h3 { margin-top: 30px; }
.jobs__text .checks { margin-bottom: 0; }
.jobs__steps { list-style: none; counter-reset: js; padding: 0; margin: 0; display: grid; gap: 14px; }
.jobs__steps li { counter-increment: js; position: relative; padding-left: 46px; color: var(--muted); }
.jobs__steps li b { color: var(--text); font-weight: 600; }
.jobs__steps li::before { content: counter(js); position: absolute; left: 0; top: -2px; width: 32px; height: 32px; border-radius: 50%; background: var(--gold-grad); color: #111; font-family: var(--display); font-weight: 700; display: grid; place-items: center; }
.jobs__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 28px; margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--line); }
.jobs__cta p { margin: 0; color: var(--muted); font-size: .92rem; }
.jobs__cta p a { color: var(--gold); font-weight: 600; font-size: 1.05rem; }

/* Standorte */
.locations { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.location { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; }
.location--main { border-color: rgba(201,162,74,.6); }
.location h4 { font-size: 1rem; margin-bottom: .2em; }
.location h4::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,74,.2); margin-right: 10px; vertical-align: middle; }
.location address, .location__note { font-style: normal; color: var(--muted); font-size: .9rem; margin: 0; }
.badge { display: inline-block; background: var(--gold); color: #111; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 3px 10px; border-radius: 999px; margin-bottom: 12px; }

/* Kontakt */
.contact { display: grid; grid-template-columns: 1fr 1.1fr; grid-template-areas: "info form" "loc form"; column-gap: 60px; row-gap: 32px; align-items: start; }
.contact > * { min-width: 0; }
.contact__info { grid-area: info; }
.contact__locations { grid-area: loc; }
.contact > div > p { color: var(--muted); }
.contact__list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 18px; }
.contact__list li { border-left: 3px solid var(--gold); padding-left: 16px; }
.contact__list span { display: block; color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.contact__list a { display: inline-block; padding: 6px 0; font-weight: 600; font-size: 1.05rem; }
.contact__list li:first-child a { font-family: var(--display); font-size: clamp(1.4rem, 2.6vw, 1.8rem); color: var(--gold); }
.contact__list a:hover { color: var(--gold); }

.form { grid-area: form; position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; display: grid; gap: 16px; }
.form::before { content: ""; position: absolute; top: -1px; left: -1px; right: -1px; height: 2px; border-radius: var(--radius) var(--radius) 0 0; background: linear-gradient(90deg, var(--gold), transparent 75%); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: grid; gap: 6px; font-size: .88rem; color: var(--muted); }
.form input, .form select, .form textarea {
  font: inherit; font-size: 1rem; color: var(--text);
  background: var(--bg); border: 1px solid #5a5a62; border-radius: 10px;
  padding: 12px 14px; width: 100%;
}
.form input::placeholder, .form textarea::placeholder { color: #8b8b91; }
.form input:not([type="checkbox"]):focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,74,.18); }
.form .invalid { border-color: #ff6b61; }
.form__check input:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 2px; }
.form__check input.invalid { outline: 2px solid #ff6b61; outline-offset: 2px; }
.form__check input.invalid + span { color: #ff9b94; }
.form__legend { margin-bottom: -4px; }
.form__check { display: flex !important; gap: 10px; align-items: flex-start; }
.form__check input { width: 22px; height: 22px; flex: none; margin-top: 1px; accent-color: var(--gold); }
.form__check a { color: var(--gold); text-decoration: underline; }
.form__note { margin: 0; padding: 12px 14px; border-left: 3px solid var(--gold); background: rgba(201,162,74,.08); border-radius: 0 8px 8px 0; font-size: .9rem; color: #e6dcc6; }
.form__note a, .form__hint a { color: var(--gold); font-weight: 600; }
.form__hint { margin: 0; font-size: .85rem; color: var(--muted); }
.form__msg { margin: 0; font-size: .9rem; min-height: 1.2em; }
.form__msg.error { color: #ff8a80; }
.form__msg.ok { color: #3ecf6e; }
.form__fallback { display: grid; gap: 10px; justify-items: start; padding: 14px; border: 1px dashed rgba(201,162,74,.45); border-radius: 10px; font-size: .9rem; }
.form__fallback p { margin: 0; color: #d6d6d6; }
.form__fallback a { color: var(--gold); text-decoration: underline; }

/* Footer */
.footer { background: #000; border-top: 1px solid var(--line); padding-top: 60px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; padding-bottom: 40px; }
.footer img { margin-bottom: 14px; }
.footer__title { font-family: var(--display); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin: 0 0 14px; }
.footer__grid a:not(.btn) { display: block; color: var(--muted); margin-bottom: 8px; font-size: .93rem; }
.footer a:not(.btn):hover { color: var(--gold); }
.footer__brand .btn { margin-top: 6px; }
.footer__contact p { color: var(--muted); font-size: .93rem; margin: 0 0 8px; }
.footer__social { display: flex; gap: 16px; }
.footer__social a:not(.btn) { display: inline-block; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; border-top: 1px solid var(--line); padding: 20px 0; color: var(--muted); font-size: .85rem; }

/* Rechtliche Seiten (Impressum, Datenschutz) */
.legal { padding: 64px 0 96px; }
.legal__inner { max-width: 820px; }
.legal h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.legal h2 { font-size: 1.35rem; margin-top: 2.2em; padding-top: 1.2em; border-top: 1px solid var(--line); }
.legal h3 { font-size: 1.05rem; margin-top: 1.6em; color: var(--gold); }
.legal p, .legal li { color: #cfcfd3; }
.legal ul { padding-left: 1.2em; }
.legal li { margin-bottom: .4em; }
.legal a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.legal address { font-style: normal; color: #cfcfd3; }
.legal__meta { color: var(--muted); font-size: .9rem; }
.legal__toc {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 26px; margin: 28px 0 8px;
}
.legal__toc strong { display: block; margin-bottom: 10px; font-family: var(--display); }
.legal__toc ol { margin: 0; padding-left: 1.2em; columns: 2; column-gap: 32px; }
.legal__toc a { text-decoration: none; color: var(--text); }
.legal__toc a:hover { color: var(--gold); }
.info-grid { display: grid; grid-template-columns: 200px 1fr; gap: 10px 24px; margin: 0; }
.info-grid dt { color: var(--muted); }
.info-grid dd { margin: 0; color: var(--text); }
.todo { background: rgba(229,83,75,.15); color: #ff9b94; padding: 1px 6px; border-radius: 4px; font-size: .92em; }
@media (max-width: 560px) {
  .legal__toc ol { columns: 1; }
  .info-grid { grid-template-columns: 1fr; gap: 2px; }
  .info-grid dd { margin-bottom: 10px; }
}

/* Mobile Anrufleiste (nur bis 860px sichtbar) */
.callbar { display: none; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s, transform .6s; }
.reveal.is-visible { opacity: 1; transform: none; }
.card.reveal { transition: opacity .6s, transform .6s, border-color .2s; }
.card.reveal.is-visible:hover { transform: translateY(-3px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .card.reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover, .card.reveal.is-visible:hover { transform: none; }
  .hero__bg img, .dot, .lightbox:not([hidden]), .lightbox__fig img { animation: none; }
  .card--photo:hover .card__media img, .gallery__item:hover img, .gallery__item:focus-visible img { transform: none; }
  .callbar, .nav, .header__inner, .logo img { transition: none; }
}

/* Responsive */
@media (min-width: 861px) and (max-width: 1099px) {
  .nav__phone { display: none; }
}
@media (max-width: 1000px) {
  .hero__bg::after { background: linear-gradient(90deg, rgba(11,11,12,.96) 0%, rgba(11,11,12,.9) 60%, rgba(11,11,12,.6) 100%), linear-gradient(0deg, var(--bg) 0%, transparent 28%); }
  .trust__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust__item strong { font-size: clamp(1.02rem, 4.4vw, 1.2rem); }
  .cards--feature { grid-template-columns: 1fr; }
  .card--photo { flex-direction: row; }
  .card--photo .card__media { flex: 0 0 42%; aspect-ratio: auto; }
  .cards--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards--compact > :last-child { grid-column: 1 / -1; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .topbar { display: none; }
  .burger { display: grid; place-content: center; width: 48px; height: 48px; margin-right: -8px; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #000; border-bottom: 1px solid var(--line);
    padding: 8px 16px 20px;
    max-height: calc(100vh - 76px); max-height: calc(100dvh - 76px); overflow-y: auto; overscroll-behavior: contain;
    opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-8px);
    transition: transform .25s, opacity .25s, visibility 0s linear .25s;
  }
  .nav.open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; transition: transform .25s, opacity .25s; }
  .nav a:not(.btn) { padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .nav a:not(.btn)::after { display: none; }
  .nav .btn { margin-top: 16px; }
  .split, .contact, .jobs__grid { grid-template-columns: 1fr; gap: 36px; }
  .jobs__visual { position: relative; top: 0; max-width: 400px; width: 100%; margin: 0 auto; }
  .contact { grid-template-areas: "info" "form" "loc"; }
  .split__img { width: 100%; max-width: 440px; margin-inline: auto; }
  .split__img::before { inset: 12px -12px -12px 12px; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .steps::before { top: 0; bottom: 0; left: 27px; right: auto; width: 1px; height: auto; background: linear-gradient(180deg, transparent, var(--gold), transparent); }
  .steps li { text-align: left; display: grid; grid-template-columns: 56px 1fr; column-gap: 18px; padding: 0; }
  .steps span { grid-row: span 2; margin: 0; }
  .section { padding: 72px 0; }
  .footer__grid a:not(.btn) { padding: 10px 0; margin: 0; }
  .footer__bottom a { display: inline-block; padding: 12px 4px; }
  .callbar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    background: rgba(0,0,0,.94); border-top: 1px solid var(--line);
    transform: translateY(110%); visibility: hidden;
    transition: transform .25s, visibility 0s linear .25s;
  }
  .callbar.is-visible { transform: none; visibility: visible; transition: transform .25s; }
  .callbar .btn { min-height: 48px; padding: 0 .8em; font-size: .95rem; }
  body.has-callbar { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
}
@media (max-width: 900px) {
  .team__strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .team__strip li:nth-child(even) { margin-top: 0; }
}
@media (max-width: 700px) {
  .partners__list { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 420px; }
  .masonry { columns: 2; column-gap: 10px; }
  .masonry .gallery__item { margin-bottom: 10px; }
  .post__body { padding: 22px 20px 26px; }
  .cards--compact { grid-template-columns: 1fr; }
  .cards--compact > :last-child { grid-column: auto; }
}
@media (max-width: 560px) {
  .hide-sm { display: none; }
  .form__row, .checks--cols { grid-template-columns: 1fr; }
  .form { padding: 24px 20px; }
  .jobs__poster { left: -8px; right: 8px; }
  .logo img { height: 48px; }
  .hero { min-height: 0; }
  .hero__bg img { object-position: 92% 100%; }
  .hero__bg::after { background: linear-gradient(180deg, rgba(11,11,12,.82) 0%, rgba(11,11,12,.9) 45%, rgba(11,11,12,.96) 100%); }
  .hero__content { padding: 44px 0 40px; }
  .hero h1 { font-size: clamp(1.75rem, 7.6vw, 2.1rem); }
  .hero .lead { font-size: 1rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .pill { font-size: .85rem; }
  .trust__item { padding: 16px 8px; }
  .trust__item span { font-size: .8rem; }
  .card--photo { flex-direction: column; }
  .card--photo .card__media { flex: none; aspect-ratio: 16/10; }
  .card--compact { grid-template-columns: 44px minmax(0, 1fr); column-gap: 14px; padding: 22px 20px; }
  .card--compact .card__icon { width: 44px; height: 44px; }
  .card__body { padding: 20px; }
  .gallery { gap: 8px; }
  .gallery__cap { font-size: .78rem; padding: 28px 10px 8px; }
  .cta-band { padding: 64px 0; }
  .section { padding: 56px 0; }
  .section__head { margin-bottom: 32px; }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__grid a:not(.btn) { overflow-wrap: anywhere; }
  .footer__brand, .footer__contact { grid-column: 1 / -1; }
  .locations { grid-template-columns: 1fr; gap: 8px; }
  .location { padding: 14px; }
}
