/**
 * Global styles für ts.at — Astro-Version
 * 1:1-Port aus den Prototype-Dateien.
 */

:root {
  --ink: #14213D; --ink-2: #1E2E54; --ivory: #FAF7F2; --paper: #FFFFFF; --rule: #E9E2D4;
  --muted: #5C6478; --text: #10142A;
  --brand: #F39200; --brand-2: #D07C00; --brand-ink: #8E5500; --accent-soft: #FDEDD4;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(20,33,61,.06), 0 10px 28px rgba(20,33,61,.08);
  --max: 1200px;
  --serif: "Newsreader", ui-serif, Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--sans); color: var(--text); background: var(--ivory);
  font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 4px;
}
.container { max-width: var(--max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }
.skip { position: absolute; left: -9999px; top: auto; }
.skip:focus {
  left: 20px; top: 16px; background: var(--ink); color: #fff;
  padding: 10px 14px; border-radius: 8px; z-index: 100;
}

/* ---------- Topstrip ---------- */
.topstrip { background: var(--ink); color: #D9DEEA; font-size: 13px; }
.topstrip .container { display: flex; justify-content: space-between; align-items: center; min-height: 40px; gap: 16px; flex-wrap: wrap; }
.topstrip a { color: #D9DEEA; opacity: .85; }
.topstrip a:hover { opacity: 1; color: #fff; }
.topstrip .meta { display: flex; gap: 22px; align-items: center; }
.topstrip .meta span { display: inline-flex; align-items: center; gap: 8px; }
.topstrip svg { width: 14px; height: 14px; opacity: .7; }
.lang { display: flex; gap: 6px; font-weight: 600; letter-spacing: .04em; }
.lang a, .lang span { padding: 4px 8px; border-radius: 6px; }
.lang .active { background: rgba(255,255,255,.1); color: #fff; }
.lang .disabled { color: #6E7793; cursor: not-allowed; opacity: .6; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,247,242,.92);
  backdrop-filter: saturate(140%) blur(10px); -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; min-height: 80px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; font-family: var(--serif); font-weight: 500; letter-spacing: -.01em; }
.brand-logo { display: block; height: 60px; width: auto; flex: none; }
.brand-logo--sm { height: 48px; }

.menu { display: flex; gap: 4px; align-items: center; }
.menu a { padding: 10px 14px; border-radius: 8px; font-weight: 500; font-size: 15px; color: var(--text); transition: background .15s, color .15s; }
.menu a:hover { background: var(--accent-soft); color: var(--ink); }
.menu a[aria-current="page"] { color: var(--brand-ink); background: var(--accent-soft); }

.cta { display: inline-flex; align-items: center; gap: 8px; background: var(--ink); color: #fff; padding: 11px 18px; border-radius: 999px; font-weight: 600; font-size: 14.5px; letter-spacing: .01em; transition: transform .15s ease, background .15s; border: 1px solid var(--ink); }
.cta:hover { background: var(--ink-2); transform: translateY(-1px); }
.cta svg { width: 15px; height: 15px; }
.cta.ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.cta.ghost:hover { background: var(--ink); color: #fff; }
.cta.brand { background: var(--brand); border-color: var(--brand); color: #fff; }
.cta.brand:hover { background: var(--brand-2); border-color: var(--brand-2); }

.burger { display: none; background: none; border: 1px solid var(--rule); border-radius: 10px; width: 44px; height: 44px; align-items: center; justify-content: center; cursor: pointer; }
.burger svg { width: 22px; height: 22px; color: var(--ink); }

/* ---------- Breadcrumb ---------- */
.breadcrumb { background: var(--paper); border-bottom: 1px solid var(--rule); padding: 14px 0; font-size: 13px; }
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; color: var(--muted); }
.breadcrumb li { display: inline-flex; align-items: center; gap: 8px; }
.breadcrumb a { color: var(--muted); transition: color .15s; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb [aria-current="page"] { color: var(--ink); font-weight: 500; }
.breadcrumb svg { width: 11px; height: 11px; color: var(--muted); flex: none; }

/* ---------- Article header ---------- */
.article-head { background: var(--ink); color: #E8EBF3; padding: clamp(48px, 7vw, 80px) 0; }
.article-head .eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: 12px; font-weight: 700; color: #FCC97A; letter-spacing: .16em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; background: rgba(243,146,0,.12); border: 1px solid rgba(243,146,0,.3); }
.article-head .eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
.article-head h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(32px, 4.4vw, 54px); line-height: 1.08; letter-spacing: -.02em; color: #fff; margin: 18px 0 22px; max-width: 22ch; }
.article-head .lead { font-size: clamp(17px, 1.4vw, 20px); color: #C5CBDB; max-width: 60ch; margin: 0; line-height: 1.55; }
.article-meta { margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); display: flex; gap: 32px; flex-wrap: wrap; align-items: center; font-size: 14px; color: #AEB4C5; }
.article-meta strong { color: #fff; font-weight: 500; }
.article-meta .author-pill { display: inline-flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #FFCE7A, var(--brand) 60%, var(--brand-2)); color: #fff; display: grid; place-items: center; font-family: var(--serif); font-weight: 600; font-size: 15px; flex: none; box-shadow: inset 0 0 0 2px rgba(255,255,255,.18); }
.author-avatar--photo { display: block; object-fit: cover; background: var(--paper); padding: 0; box-shadow: 0 0 0 2px rgba(255,255,255,.25); }
.article-meta time { display: inline-flex; align-items: center; gap: 8px; }
.article-meta svg { width: 14px; height: 14px; opacity: .7; }

/* ---------- Article body 2-col ---------- */
.article-body { padding: clamp(48px, 6vw, 80px) 0; }
.article-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(32px, 4vw, 56px); align-items: start; }
.article-content h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(24px, 2.4vw, 30px); line-height: 1.2; color: var(--ink); margin: clamp(36px, 4vw, 48px) 0 16px; letter-spacing: -.01em; scroll-margin-top: 90px; }
.article-content h2:first-child { margin-top: 0; }
.article-content p { font-size: 17.5px; line-height: 1.72; color: var(--text); margin: 0 0 18px; max-width: 64ch; }
.article-content ul { padding-left: 22px; margin: 0 0 24px; max-width: 64ch; }
.article-content ul li { margin-bottom: 10px; padding-left: 6px; line-height: 1.65; }
.article-content ul li::marker { color: var(--brand); }
.article-content strong { color: var(--ink); font-weight: 600; }
.article-content blockquote { border-left: 3px solid var(--brand); padding: 12px 0 12px 22px; margin: 24px 0; color: var(--ink); font-family: var(--serif); font-size: 20px; line-height: 1.45; font-style: italic; max-width: 60ch; }
.disclaimer { font-size: 13.5px; color: var(--muted); border-top: 1px solid var(--rule); padding-top: 20px; margin-top: 48px; max-width: 64ch; font-style: italic; line-height: 1.55; }

/* Inline mid-article CTA */
.inline-cta { background: var(--accent-soft); border-left: 4px solid var(--brand); padding: 24px 28px; border-radius: 8px; margin: 32px 0; max-width: 64ch; }
.inline-cta strong { font-family: var(--serif); font-size: 19px; font-weight: 500; color: var(--ink); display: block; margin-bottom: 8px; font-style: normal; letter-spacing: -.01em; }
.inline-cta p { margin: 0 0 14px; color: var(--text); font-size: 15.5px; line-height: 1.55; }
.inline-cta .cta { font-size: 14px; padding: 10px 16px; }

/* ---------- Sidebar ---------- */
.article-aside { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 18px; }
.aside-card { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius); padding: 24px; }
.aside-card h3 { font-family: var(--serif); font-weight: 500; font-size: 16px; color: var(--ink); margin: 0 0 14px; letter-spacing: -.005em; }
.aside-toc ol { list-style: none; padding: 0; margin: 0; counter-reset: section; }
.aside-toc li { counter-increment: section; font-size: 14px; border-bottom: 1px solid var(--rule); }
.aside-toc li:last-child { border-bottom: none; }
.aside-toc a { display: flex; gap: 10px; padding: 10px 0; color: var(--muted); transition: color .15s; line-height: 1.4; }
.aside-toc a::before { content: "0" counter(section); font-variant-numeric: tabular-nums; color: var(--brand-ink); font-weight: 700; font-size: 11px; letter-spacing: .06em; flex: none; padding-top: 2px; }
.aside-toc a:hover { color: var(--ink); }

.aside-cta { background: var(--ink); color: #fff; padding: 26px 24px; border: none; }
.aside-cta .urgent { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--brand); font-weight: 700; margin-bottom: 10px; }
.aside-cta .urgent::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.aside-cta h3 { color: #fff; font-size: 21px; font-family: var(--serif); font-weight: 500; margin: 0 0 8px; letter-spacing: -.01em; }
.aside-cta p { color: #C5CBDB; font-size: 14px; margin: 0 0 18px; line-height: 1.5; }
.aside-cta .cta { background: var(--brand); border-color: var(--brand); width: 100%; justify-content: center; }
.aside-cta .cta:hover { background: var(--brand-2); border-color: var(--brand-2); }
.aside-cta .secondary { display: block; margin-top: 12px; text-align: center; font-size: 13px; color: #AEB4C5; }
.aside-cta .secondary a { color: #fff; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 1px; }

.aside-related h3 { margin-bottom: 6px; }
.aside-related ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.aside-related li { border-top: 1px solid var(--rule); padding: 14px 0; }
.aside-related li:first-child { border-top: none; }
.aside-related a { display: block; font-size: 14px; color: var(--ink); font-weight: 500; line-height: 1.4; transition: color .15s; }
.aside-related a:hover { color: var(--brand-ink); }
.aside-related .meta { display: block; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--brand-ink); font-weight: 700; margin-bottom: 4px; }

/* ---------- FAQ ---------- */
.faq { padding: clamp(56px, 7vw, 90px) 0; background: var(--paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.faq .section-head { max-width: 760px; margin: 0 0 32px; }
.faq .section-label { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--brand-ink); margin-bottom: 12px; }
.faq h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(28px, 3.4vw, 40px); line-height: 1.15; color: var(--ink); margin: 0 0 12px; letter-spacing: -.02em; }
.faq .lead { color: var(--muted); font-size: 16px; max-width: 60ch; margin: 0; }
.faq-list { max-width: 880px; margin: 32px 0 0; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item summary { padding: 22px 8px 22px 0; cursor: pointer; font-family: var(--serif); font-weight: 500; font-size: 19px; color: var(--ink); display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; list-style: none; letter-spacing: -.005em; line-height: 1.35; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: ""; width: 22px; height: 22px; flex: none; background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314213D' stroke-width='2' stroke-linecap='round'><path d='M6 9l6 6 6-6'/></svg>") center/contain no-repeat; transition: transform .25s ease; margin-top: 3px; }
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item .answer { padding: 0 8px 22px 0; color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 64ch; }

/* ---------- Author box ---------- */
.author-box { padding: clamp(48px, 5vw, 72px) 0; }
.author-card { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius); padding: clamp(28px, 3vw, 40px); display: grid; grid-template-columns: 140px 1fr auto; gap: clamp(24px, 3vw, 40px); align-items: center; box-shadow: var(--shadow); }
.author-card-photo { width: 140px; height: 140px; border-radius: 50%; background: linear-gradient(135deg, #FFCE7A, var(--brand) 60%, var(--brand-2)); color: #fff; display: grid; place-items: center; font-family: var(--serif); font-weight: 600; font-size: 42px; flex: none; box-shadow: inset 0 0 0 3px rgba(255,255,255,.2); }
.author-card-photo--image { display: block; object-fit: cover; background: var(--paper); box-shadow: 0 0 0 1px var(--rule); }
.author-card-meta { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--brand-ink); font-weight: 700; margin-bottom: 8px; }
.author-card h3 { font-family: var(--serif); font-weight: 500; font-size: 26px; color: var(--ink); margin: 0 0 10px; letter-spacing: -.01em; }
.author-card .role { color: var(--brand-ink); font-weight: 600; font-size: 13px; letter-spacing: .05em; margin-bottom: 14px; display: block; }
.author-card p { color: var(--muted); margin: 0; font-size: 15px; line-height: 1.6; max-width: 60ch; }
.author-card .actions { display: flex; flex-direction: column; gap: 10px; flex: none; min-width: 200px; }

/* ----- Team-Karte: Foto-Banner oben, 2-spaltig darunter, gleichberechtigte Personen ----- */
.author-card--team {
  display: block; padding: 0; overflow: hidden;
  /* überschreibt die Grid-Definition der Standard .author-card */
}
.author-card-team-photo { margin: 0; aspect-ratio: 3 / 2; overflow: hidden; background: var(--ivory); }
.author-card-team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.author-card-team-body { padding: clamp(28px, 3vw, 44px); }
.author-card-team-body .author-card-meta { display: block; margin-bottom: clamp(20px, 2vw, 28px); }
.author-card-team-people {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 3vw, 44px);
  padding-bottom: clamp(20px, 2vw, 28px);
  border-bottom: 1px solid var(--rule);
  margin-bottom: clamp(20px, 2vw, 28px);
}
.author-card-team-people .person h3 { font-family: var(--serif); font-weight: 500; font-size: 22px; color: var(--ink); margin: 0 0 8px; letter-spacing: -.01em; line-height: 1.2; }
.author-card-team-people .person .role { display: block; color: var(--brand-ink); font-weight: 600; font-size: 12.5px; letter-spacing: .06em; margin-bottom: 12px; text-transform: uppercase; }
.author-card-team-people .person p { color: var(--muted); margin: 0; font-size: 14.5px; line-height: 1.6; }
.author-card-team-bio { margin-bottom: clamp(20px, 2vw, 28px); }
.author-card-team-bio p { color: var(--muted); margin: 0 0 12px; font-size: 14.5px; line-height: 1.6; }
.author-card-team-bio p:last-child { margin-bottom: 0; }
.author-card-team-bio p strong { color: var(--ink); font-weight: 600; }
.author-card-team-body .actions {
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* ---------- Related articles ---------- */
.related { padding: clamp(56px, 7vw, 90px) 0; background: var(--paper); border-top: 1px solid var(--rule); }
.related .section-head { max-width: 760px; margin: 0 0 32px; }
.related .section-label { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--brand-ink); margin-bottom: 12px; }
.related h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(28px, 3.4vw, 40px); line-height: 1.15; color: var(--ink); margin: 0 0 12px; letter-spacing: -.02em; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 28px); margin-top: 32px; }
.related-card { display: flex; flex-direction: column; padding: 28px; background: var(--ivory); border: 1px solid var(--rule); border-radius: var(--radius); transition: transform .2s, box-shadow .2s, border-color .2s; }
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #E8DFD0; }
.related-card .meta { font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-ink); font-weight: 700; margin-bottom: 14px; }
.related-card h3 { font-family: var(--serif); font-weight: 500; font-size: 20px; color: var(--ink); line-height: 1.3; margin: 0 0 12px; letter-spacing: -.01em; }
.related-card p { color: var(--muted); font-size: 14.5px; line-height: 1.55; margin: 0 0 18px; flex: 1; }
.related-card .arrow { font-weight: 600; font-size: 14px; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; transition: gap .2s, color .2s; }
.related-card:hover .arrow { gap: 12px; color: var(--brand-ink); }
.related-card .arrow svg { width: 14px; height: 14px; }

/* ---------- Footer ---------- */
footer { background: var(--ink); color: #AEB4C5; padding: clamp(48px, 6vw, 72px) 0 28px; margin-top: 0; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.7fr 1fr 1fr; gap: clamp(18px, 2.4vw, 36px); }
.foot--wide ul + .foot-subhead { margin-top: 18px; }
.foot-subhead { display: block; color: #6E7588; font-family: var(--sans); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; }
.foot-sub { padding-left: 16px; position: relative; }
.foot-sub::before { content: "↳"; position: absolute; left: 0; color: #6E7588; font-size: 13px; line-height: 1.4; }
.foot-sub a { color: #8A91A6; }
.foot-sub a:hover { color: #fff; }
.foot h4 { color: #fff; font-family: var(--sans); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 16px; font-weight: 600; }
.foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.foot a { color: #AEB4C5; }
.foot a:hover { color: #fff; }
.foot p { color: #8A91A6; font-size: 14px; max-width: 38ch; margin: 14px 0 0; }
.foot-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13px; color: #8A91A6; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; background: var(--ink); padding: 12px 16px calc(env(safe-area-inset-bottom, 12px) + 12px); gap: 10px; box-shadow: 0 -4px 16px rgba(20,33,61,.18); }
.sticky-mobile-cta a { flex: 1; justify-content: center; padding: 13px 14px; font-size: 14.5px; border-radius: 10px; }
.sticky-mobile-cta a.tel { background: var(--brand); border-color: var(--brand); color: #fff; }
.sticky-mobile-cta a.tel:hover { background: var(--brand-2); border-color: var(--brand-2); }
.sticky-mobile-cta a.email { background: transparent; border: 1px solid rgba(255,255,255,.3); color: #fff; }

/* ---------- Mobile drawer ---------- */
.drawer { position: fixed; inset: 0; background: var(--ivory); z-index: 70; transform: translateY(-100%); transition: transform .35s cubic-bezier(.2,.8,.2,1); display: flex; flex-direction: column; padding: 20px; }
.drawer.open { transform: translateY(0); }
.drawer-top { display: flex; justify-content: space-between; align-items: center; min-height: 54px; }
.drawer nav { margin-top: 32px; display: flex; flex-direction: column; }
.drawer nav a { font-family: var(--serif); font-size: 30px; font-weight: 500; color: var(--ink); padding: 14px 4px; border-bottom: 1px solid var(--rule); letter-spacing: -.01em; }
.drawer .drawer-cta { margin-top: auto; padding-top: 24px; display: flex; flex-direction: column; gap: 10px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .article-grid { grid-template-columns: 1fr; }
  .article-aside { position: static; order: 2; flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .article-aside .aside-card { flex: 1 1 280px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .author-card { grid-template-columns: 100px 1fr; gap: 24px; }
  .author-card .actions { grid-column: 1 / -1; flex-direction: row; }
  .author-card-photo { width: 100px; height: 100px; font-size: 32px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  body { padding-bottom: 90px; font-size: 16px; }
  .topstrip .meta span:not(:nth-child(2)) { display: none; }
  .menu { display: none; }
  /* Kontakt-Button auch auf Mobile sichtbar — kompakte Variante */
  .nav .container { gap: 12px; }
  .nav .cta.desktop { padding: 9px 14px; font-size: 13.5px; }
  .nav .cta.desktop svg { display: none; }
  .burger { display: inline-flex; }
  .article-aside { display: none; }
  .related-grid { grid-template-columns: 1fr; }
  .author-card { grid-template-columns: 1fr; text-align: center; padding: 28px 22px; }
  .author-card-photo { margin: 0 auto; }
  .author-card .actions { flex-direction: column; }
  /* Team-Karte: Personen untereinander, Foto bleibt oben full-width */
  .author-card--team { padding: 0; text-align: left; }
  .author-card-team-people { grid-template-columns: 1fr; gap: 24px; }
  .author-card-team-body .actions { flex-direction: column; }
  .sticky-mobile-cta { display: flex; }
  .article-meta { gap: 18px; font-size: 13px; }
  .article-content p { font-size: 17px; }
}
/* ============================================================
 * WISSENS-HUB (/wissen/[category])
 * ============================================================ */
.hub-hero { background: var(--ink); color: #E8EBF3; padding: clamp(48px, 7vw, 88px) 0; }
.hub-hero .eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: 12px; font-weight: 700; color: #FCC97A; letter-spacing: .14em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; background: rgba(243,146,0,.12); border: 1px solid rgba(243,146,0,.3); }
.hub-hero .eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
.hub-hero h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(36px, 5vw, 64px); line-height: 1.05; letter-spacing: -.02em; color: #fff; margin: 18px 0 22px; }
.hub-hero .lead { font-size: clamp(17px, 1.4vw, 20px); color: #C5CBDB; max-width: 64ch; margin: 0; line-height: 1.55; }
.hub-hero-cta { margin-top: 32px; }

.hub-list { padding: clamp(48px, 6vw, 80px) 0; }
.hub-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(20px, 2.5vw, 28px); }
.hub-card { display: flex; flex-direction: column; padding: clamp(26px, 2.5vw, 32px); background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius); transition: transform .2s, box-shadow .2s, border-color .2s; height: 100%; }
.hub-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #E8DFD0; }
.hub-card-meta { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--muted); margin-bottom: 14px; letter-spacing: .02em; font-weight: 500; }
.hub-card-meta time { color: var(--brand-ink); font-weight: 600; }
.hub-card h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(20px, 2vw, 24px); color: var(--ink); line-height: 1.25; margin: 0 0 14px; letter-spacing: -.01em; }
.hub-card p { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0 0 22px; flex: 1; }
.hub-card-arrow { font-weight: 600; font-size: 14px; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; transition: gap .2s, color .2s; }
.hub-card-arrow svg { width: 14px; height: 14px; }
.hub-card:hover .hub-card-arrow { gap: 12px; color: var(--brand-ink); }

.hub-empty { background: var(--paper); border: 1px dashed var(--rule); border-radius: var(--radius); padding: clamp(40px, 5vw, 64px); text-align: center; max-width: 640px; margin: 0 auto; }
.hub-empty h2 { font-family: var(--serif); font-weight: 500; font-size: 26px; color: var(--ink); margin: 0 0 14px; letter-spacing: -.01em; }
.hub-empty p { color: var(--muted); margin: 0 auto 22px; max-width: 50ch; line-height: 1.6; }

/* /wissen Übersicht — 4 Cluster als Karten-Grid */
.wissen-categories { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 2.5vw, 28px); }
.wissen-cat-card { display: flex; flex-direction: column; gap: 12px; padding: clamp(28px, 3vw, 40px); background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius); transition: transform .2s, box-shadow .2s, border-color .2s; height: 100%; }
.wissen-cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #E8DFD0; }
.wissen-cat-meta { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-ink); font-weight: 700; }
.wissen-cat-card h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(24px, 2.4vw, 30px); color: var(--ink); margin: 0; letter-spacing: -.01em; line-height: 1.15; }
.wissen-cat-card p { color: var(--muted); font-size: 15.5px; line-height: 1.6; margin: 0 0 8px; flex: 1; }
.wissen-cat-arrow { font-weight: 600; font-size: 14px; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; transition: gap .2s, color .2s; margin-top: auto; }
.wissen-cat-arrow svg { width: 14px; height: 14px; }
.wissen-cat-card:hover .wissen-cat-arrow { gap: 12px; color: var(--brand-ink); }
@media (max-width: 720px) { .wissen-categories { grid-template-columns: 1fr; } }

/* Brücke /wissen → /publikationen — dezenter Vertiefungs-Block */
.wissen-vertiefung { padding: clamp(28px, 4vw, 44px) 0 clamp(48px, 6vw, 72px); }
.wissen-vertiefung-link { display: flex; align-items: center; justify-content: space-between; gap: clamp(20px, 3vw, 40px); padding: clamp(24px, 3vw, 32px) clamp(28px, 3vw, 40px); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); transition: background .2s; }
.wissen-vertiefung-link:hover { background: var(--paper); }
.wissen-vertiefung-text { flex: 1; min-width: 0; }
.wissen-vertiefung-eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--brand-ink); margin-bottom: 10px; }
.wissen-vertiefung-link h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(22px, 2.2vw, 28px); color: var(--ink); margin: 0 0 8px; letter-spacing: -.01em; line-height: 1.2; }
.wissen-vertiefung-link p { color: var(--muted); font-size: 15.5px; line-height: 1.55; margin: 0; max-width: 64ch; }
.wissen-vertiefung-link p em { font-style: italic; }
.wissen-vertiefung-arrow { font-weight: 600; font-size: 14px; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; transition: gap .2s, color .2s; }
.wissen-vertiefung-arrow svg { width: 14px; height: 14px; }
.wissen-vertiefung-link:hover .wissen-vertiefung-arrow { gap: 12px; color: var(--brand-ink); }
@media (max-width: 720px) {
  .wissen-vertiefung-link { flex-direction: column; align-items: flex-start; }
  .wissen-vertiefung-arrow { margin-top: 8px; }
}

.hub-bottom-cta { background: var(--paper); border-top: 1px solid var(--rule); padding: clamp(48px, 6vw, 72px) 0; text-align: center; }
.hub-bottom-cta h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(26px, 3vw, 36px); color: var(--ink); margin: 0 0 14px; letter-spacing: -.01em; }
.hub-bottom-cta p { color: var(--muted); font-size: 16px; max-width: 60ch; margin: 0 auto 24px; line-height: 1.6; }
.hub-bottom-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

@media (max-width: 720px) {
  .hub-hero { padding: 48px 0; }
  .hub-bottom-cta { padding: 48px 0; }
}

/* ============================================================
 * HOMEPAGE-SEKTIONEN
 * Hero, Awards, Services, Werte, Quote, Partners, News, Kontakt
 * ============================================================ */

/* Generischer Section-Default (greift auf der Homepage; Article + Landing
   überschreiben mit eigenen Paddings) */
.home-section { padding: clamp(60px, 8vw, 110px) 0; }
.section-head { max-width: 760px; margin: 0 0 clamp(28px, 4vw, 48px); }
.section-label { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--brand-ink); margin-bottom: 14px; }
.section-title { font-family: var(--serif); font-weight: 500; font-size: clamp(30px, 4vw, 48px); line-height: 1.1; letter-spacing: -.02em; color: var(--ink); margin: 0 0 14px; }
.section-lead { color: var(--muted); font-size: clamp(16px, 1.3vw, 18px); max-width: 62ch; margin: 0; }

/* Homepage Hero (mit Hintergrundbild) */
.hero { position: relative; padding: clamp(56px, 9vw, 120px) 0 clamp(64px, 10vw, 140px); overflow: hidden; background: var(--ivory); }
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg > img { width: 100%; height: 100%; object-fit: cover; object-position: center center; filter: saturate(.95) contrast(1.02); display: block; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(95deg, rgba(250,247,242,.97) 0%, rgba(250,247,242,.92) 30%, rgba(250,247,242,.62) 55%, rgba(250,247,242,.22) 78%, rgba(250,247,242,0) 100%), linear-gradient(180deg, rgba(250,247,242,.22) 0%, transparent 14%, transparent 76%, rgba(20,33,61,.10) 100%); }
.hero .container { position: relative; z-index: 1; }
.hero .container > div { max-width: 720px; }
.hero h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(40px, 6.2vw, 76px); line-height: 1.04; letter-spacing: -.02em; margin: 18px 0 20px; color: var(--ink); }
.hero h1 em { font-style: italic; color: var(--brand-ink); font-weight: 500; }
.hero p.lead { font-size: clamp(17px, 1.4vw, 20px); color: #3F4658; max-width: 56ch; margin: 0 0 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust { margin-top: 36px; display: flex; gap: 28px; flex-wrap: wrap; align-items: center; padding-top: 24px; border-top: 1px solid var(--rule); }
.hero-trust small { color: var(--muted); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; }
.hero-trust .pill { font-family: var(--serif); font-size: 15px; color: var(--ink); font-weight: 500; }

/* Awards Strip (Homepage) */
.awards { padding: clamp(48px, 6vw, 72px) 0; background: var(--paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.awards-head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin-bottom: clamp(24px, 3vw, 36px); flex-wrap: wrap; }
.awards-head h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(22px, 2.4vw, 30px); line-height: 1.15; color: var(--ink); margin: 0; letter-spacing: -.01em; }
.awards-head p { color: var(--muted); margin: 0; font-size: 14px; max-width: 40ch; }
.awards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: clamp(12px, 1.4vw, 20px); }

/* Marquee: Awards laufen kontinuierlich von rechts nach links durch */
.awards-marquee {
  position: relative;
  overflow: hidden;
  margin-top: clamp(20px, 2vw, 28px);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
}
.awards-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: awards-marquee 60s linear infinite;
}
.awards-marquee:hover .awards-track,
.awards-marquee:focus-within .awards-track {
  animation-play-state: paused;
}
@keyframes awards-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.awards-track .award-item {
  flex: 0 0 220px;
  width: 220px;
}

.award-item { background: var(--ivory); border: 1px solid var(--rule); border-radius: 14px; padding: 14px 16px; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; min-height: 160px; }
.award-item:hover { transform: translateY(-3px); box-shadow: 0 12px 28px -16px rgba(20,33,61,.18); border-color: #E8DFD0; }
.award-item .badge { width: 80px; height: 80px; border-radius: 50%; flex: none; display: grid; place-items: center; overflow: hidden; }
.award-item .badge img { width: 100%; height: 100%; object-fit: contain; display: block; }
.award-item .badge.logo { width: 80px; height: 90px; border-radius: 0; background: transparent; }
.award-item .badge.text { background: radial-gradient(circle at 30% 30%, #FFCE7A, var(--brand) 60%, var(--brand-2) 100%); color: #fff; font-family: var(--serif); font-weight: 600; font-size: 17px; box-shadow: 0 4px 12px rgba(243,146,0,.35), inset 0 0 0 2px rgba(255,255,255,.3); line-height: 1; }
.award-item .badge.text.rank { background: var(--paper); color: var(--ink); font-size: 16px; letter-spacing: .04em; box-shadow: 0 2px 8px rgba(20,33,61,.10), inset 0 0 0 2px var(--brand); }
.award-item .badge.text.rank small { color: var(--brand-ink); opacity: 1; }
.award-item .badge.text small { display: block; font-family: var(--sans); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; margin-top: 2px; opacity: .85; }
.award-item h3 { font-family: var(--serif); font-weight: 500; font-size: 14px; line-height: 1.3; color: var(--ink); margin: 0; letter-spacing: -.005em; }
.award-item .meta { color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }

/* Services */
.services { background: var(--paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: clamp(60px, 8vw, 110px) 0; }

/* Tier 1: Hero-Schwerpunkte (drei Hauptbereiche) */
.services-hero-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); margin-bottom: clamp(24px, 3vw, 36px); }
.service-hero { background: var(--ink); color: #E8EBF3; padding: clamp(24px, 2.5vw, 36px); border-radius: var(--radius); display: flex; flex-direction: column; gap: 16px; position: relative; overflow: hidden; }
.service-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(420px 280px at 100% 0%, rgba(243, 146, 0, .14), transparent 60%); pointer-events: none; }
.service-hero > * { position: relative; z-index: 1; }
.service-hero-ico { width: 52px; height: 52px; border-radius: 12px; background: rgba(243, 146, 0, .14); color: var(--brand); display: grid; place-items: center; border: 1px solid rgba(243, 146, 0, .25); }
.service-hero-ico svg { width: 26px; height: 26px; }
.service-hero h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(22px, 2vw, 26px); color: #fff; margin: 0; letter-spacing: -.01em; line-height: 1.2; min-height: 2.4em; display: flex; align-items: flex-start; }
.service-hero-sub { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; min-height: 4em; align-content: flex-start; }
.service-hero-sub li { font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--brand); font-weight: 700; padding: 5px 10px; background: rgba(243, 146, 0, .1); border: 1px solid rgba(243, 146, 0, .25); border-radius: 999px; }
.service-hero p { color: #C5CBDB; font-size: 14.5px; line-height: 1.55; margin: 0; }

/* Ansprechpartner-Block in der Hero-Card */
.service-hero-contacts { padding-top: 16px; border-top: 1px solid rgba(255,255,255,.08); margin-top: 4px; }
.service-hero-contacts-label { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.45); font-weight: 600; display: block; margin-bottom: 8px; }
.service-hero-contacts-list { display: flex; flex-direction: column; gap: 6px; }
.contact-pill { display: inline-flex; align-items: center; gap: 10px; font-size: 13.5px; color: #E8EBF3; font-weight: 500; text-decoration: none; padding: 4px 12px 4px 4px; border-radius: 999px; transition: background .15s, color .15s; }
.contact-pill:hover { background: rgba(255,255,255,.06); color: #fff; }
.contact-photo { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; flex: none; box-shadow: 0 0 0 1px rgba(255,255,255,.18); }
.contact-initials { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, #FFCE7A, var(--brand) 60%, var(--brand-2)); color: #fff; display: grid; place-items: center; font-family: var(--serif); font-weight: 600; font-size: 11px; flex: none; box-shadow: inset 0 0 0 1px rgba(255,255,255,.18); }

.service-hero-actions { margin-top: auto; display: flex; flex-direction: column; gap: 8px; align-items: stretch; }
.service-hero-cta { display: inline-flex; align-items: center; justify-content: space-between; gap: 8px; padding: 11px 16px; border-radius: 12px; font-weight: 600; font-size: 14px; transition: background .2s, border-color .2s, transform .15s; border: 1px solid transparent; }
.service-hero-cta--primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.service-hero-cta--primary:hover { background: var(--brand-2); border-color: var(--brand-2); transform: translateY(-1px); }
.service-hero-cta--secondary { background: transparent; color: #E8EBF3; border-color: rgba(255,255,255,.2); }
.service-hero-cta--secondary:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.4); color: #fff; transform: translateY(-1px); }
.service-hero-cta svg { width: 14px; height: 14px; flex: none; opacity: .9; }
.service-hero-subactions { margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.08); }
.service-hero-subactions-label { display: block; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.45); font-weight: 600; margin-bottom: 8px; }
.service-hero-subactions ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.service-hero-subactions li { padding-left: 18px; position: relative; }
.service-hero-subactions li::before { content: "↳"; position: absolute; left: 2px; color: rgba(255,255,255,.5); font-size: 14px; line-height: 1.4; }
.service-hero-subactions a { color: #C5CBDB; font-size: 13.5px; font-weight: 500; text-decoration: none; transition: color .15s; }
.service-hero-subactions a:hover { color: #fff; }
.service-hero-detail-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 13px; font-weight: 600; letter-spacing: .04em; color: rgba(255,255,255,.7); text-decoration: none; transition: color .15s; align-self: flex-start; }
.service-hero-detail-link:hover { color: #fff; }
.service-hero-detail-link svg { width: 12px; height: 12px; transition: transform .15s; }
.service-hero-detail-link:hover svg { transform: translateX(3px); }

/* Tier 2: Medium-Cards (existing service-grid wiederverwendet, plus 4-Spalten-Variante) */
.service-grid { display: grid; gap: 1px; background: var(--rule); grid-template-columns: repeat(3, 1fr); border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; }
.service-grid--four { grid-template-columns: repeat(4, 1fr); }
.service { background: var(--paper); padding: clamp(22px, 2.6vw, 32px); display: flex; flex-direction: column; gap: 12px; position: relative; }
.service .ico { width: 44px; height: 44px; border-radius: 10px; background: var(--accent-soft); color: var(--brand-ink); display: grid; place-items: center; margin-bottom: 6px; }
.service .ico svg { width: 22px; height: 22px; }
.service h3 { font-family: var(--serif); font-weight: 500; font-size: 22px; margin: 0; letter-spacing: -.01em; line-height: 1.2; }
.service-title-link { color: var(--ink); text-decoration: none; transition: color .15s; }
.service-title-link:hover { color: var(--brand-ink); }
.service-sub { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.service-sub li { font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink); font-weight: 600; padding: 4px 10px; background: var(--ivory); border: 1px solid var(--rule); border-radius: 999px; }
.service p { color: var(--muted); margin: 0; font-size: 15px; line-height: 1.55; }
.service-contacts { padding-top: 12px; border-top: 1px solid var(--rule); margin-top: 4px; }
.service-contacts-label { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; display: block; margin-bottom: 8px; }
.service-contacts-list { display: flex; flex-wrap: wrap; gap: 10px 14px; }
.service-contact { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink); font-weight: 500; text-decoration: none; padding: 4px 10px 4px 4px; border-radius: 999px; transition: background .15s; }
.service-contact:hover { background: var(--ivory); }
.service-contact-photo { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; flex: none; box-shadow: 0 0 0 1px var(--rule); }
.service .arrow { margin-top: auto; padding-top: 10px; color: var(--ink); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.service .arrow svg { width: 14px; height: 14px; transition: transform .2s; }
.service .arrow:hover { color: var(--brand-ink); }
.service .arrow:hover svg { transform: translateX(4px); }

/* Tier 3: Weitere Tätigkeitsbereiche als Tag-Liste */
.services-more { margin-top: clamp(36px, 4vw, 56px); padding-top: clamp(28px, 3vw, 36px); border-top: 1px solid var(--rule); }
.services-more .section-label { display: block; margin-bottom: 18px; }
.services-tags { list-style: none; padding: 0; margin: 0 0 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.services-tags li { display: inline-flex; }
.services-tags li span { font-size: 13.5px; color: var(--ink); padding: 8px 14px; background: var(--ivory); border: 1px solid var(--rule); border-radius: 999px; transition: background .15s, border-color .15s, color .15s; cursor: default; }
.services-tags li span:hover { background: var(--accent-soft); border-color: #F6D9A8; color: var(--brand-ink); }
.services-more-note { color: var(--muted); font-size: 14.5px; line-height: 1.55; margin: 0; max-width: 64ch; }

/* Werte */
.values { padding: clamp(72px, 9vw, 120px) 0; background: var(--ivory); }
/* Brand-Banner als Sektion-Opener — visualisiert die "We grow relationships"-Tagline */
.values-banner {
  margin: 0 0 clamp(36px, 4vw, 56px);
  position: relative;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1600/880;
}
.values-banner img {
  width: 100%; height: 100%; object-fit: contain; object-position: center;
  display: block;
  padding: clamp(24px, 3vw, 40px) clamp(20px, 3vw, 56px);
  background: #fff;
}
.values-banner figcaption {
  position: absolute;
  left: clamp(20px, 3vw, 36px);
  bottom: clamp(20px, 3vw, 32px);
  display: flex; flex-direction: column; gap: 2px;
}
.values-banner-tag {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(20px, 2.4vw, 30px);
  color: var(--ink); letter-spacing: -.005em; line-height: 1.1;
}
.values-banner-mark {
  font-family: var(--sans); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--brand-ink); font-weight: 700;
}

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(18px, 2vw, 28px); margin-top: clamp(32px, 4vw, 48px); }
.values-bridge { margin: clamp(36px, 4vw, 56px) 0 0; text-align: center; font-family: var(--serif); font-style: italic; font-size: clamp(17px, 1.6vw, 20px); color: var(--ink); line-height: 1.5; }
.values-bridge a { display: inline-flex; align-items: center; gap: 6px; font-style: normal; font-family: var(--sans); font-weight: 600; color: var(--brand-ink); text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 1px; transition: color .15s; }
.values-bridge a:hover { color: var(--brand); }
.values-bridge a svg { width: 14px; height: 14px; transition: transform .15s; }
.values-bridge a:hover svg { transform: translateX(3px); }
.value-card { background: var(--paper); border: 1px solid var(--rule); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.value-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -20px rgba(20,33,61,.18); border-color: #E8DFD0; }
.value-banner { aspect-ratio: 1200/420; overflow: hidden; background: #fff; display: block; }
.value-banner img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.value-card:hover .value-banner img { transform: scale(1.03); }
.value-body { padding: clamp(20px, 2vw, 28px); }
.value-body h3 { font-family: var(--serif); font-size: clamp(22px, 2.2vw, 28px); font-weight: 500; letter-spacing: -.01em; color: var(--ink); margin: 0 0 10px; }
.value-body p { color: var(--muted); font-size: 16px; line-height: 1.6; margin: 0; }
.value-card-link { color: var(--brand-ink); text-decoration: underline; text-decoration-color: rgba(142, 85, 0, .35); text-underline-offset: 3px; transition: color .15s, text-decoration-color .15s; }
.value-card-link:hover { color: var(--brand); text-decoration-color: currentColor; }

/* Quote band */
.quote-band { background: var(--ink); color: #EAE1C7; position: relative; overflow: hidden; }
.quote-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 300px at 20% 0%, rgba(243,146,0,.22), transparent 60%), radial-gradient(700px 300px at 100% 100%, rgba(30,46,84,.65), transparent 60%); pointer-events: none; }
.quote-band .container { position: relative; padding-top: clamp(56px, 8vw, 100px); padding-bottom: clamp(56px, 8vw, 100px); }
/* Stack-Layout: alle Slides im selben Grid-Cell, durch opacity sichtbar/unsichtbar */
.quote-band-stack { display: grid; grid-template-columns: 1fr; position: relative; }
.quote-slide { grid-area: 1 / 1; display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: clamp(32px, 4vw, 64px); align-items: center; opacity: 0; visibility: hidden; transition: opacity .6s ease, visibility 0s .6s; pointer-events: none; }
.quote-slide.active { opacity: 1; visibility: visible; pointer-events: auto; transition: opacity .6s ease, visibility 0s 0s; }
.quote-portrait { margin: 0; aspect-ratio: 4/5; border-radius: 16px; overflow: hidden; box-shadow: 0 24px 60px -28px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.06); }
.quote-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(.95) contrast(1.02); }
.quote-portrait-initials { display: grid; place-items: center; width: 100%; height: 100%; color: #fff; font-family: var(--serif); font-weight: 600; font-size: clamp(80px, 9vw, 120px); letter-spacing: -.03em; }
.quote-content { display: flex; flex-direction: column; gap: 28px; }
/* Dot-Navigation für direkten Sprung zwischen den Zitaten */
.quote-band-dots { grid-area: 1 / 1; align-self: end; justify-self: center; display: flex; gap: 10px; padding-top: clamp(20px, 3vw, 32px); margin-top: auto; z-index: 2; pointer-events: auto; }
.quote-band-dots button { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.25); border: none; padding: 0; cursor: pointer; transition: background .25s, transform .15s; }
.quote-band-dots button:hover { background: rgba(255,255,255,.5); transform: scale(1.15); }
.quote-band-dots button.active { background: var(--brand); }
.quote-big { font-family: var(--serif); font-weight: 400; font-style: italic; font-size: clamp(26px, 3.6vw, 44px); line-height: 1.25; letter-spacing: -.01em; color: #FBEFDB; max-width: 28ch; margin: 0; }
.quote-attr { margin-top: 28px; display: flex; align-items: center; gap: 14px; color: #C9CDDB; font-size: 15px; }
.quote-attr strong { color: #fff; font-weight: 600; }
.quote-attr .line { width: 40px; height: 1px; background: rgba(255,255,255,.3); }

/* Partners */
.partners { padding: clamp(60px, 8vw, 110px) 0; }
.partners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: clamp(14px, 1.8vw, 22px); }
.partner { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius); padding: clamp(16px, 1.8vw, 20px); transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.partner:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.partner-photo { width: 100%; aspect-ratio: 212/120; border-radius: 10px; object-fit: cover; object-position: center 28%; background: linear-gradient(160deg,#F7E2C2,#EBC890); margin-bottom: 14px; display: block; }
.partner-photo--initials { display: grid; place-items: center; color: #fff; font-family: var(--serif); font-weight: 600; font-size: 32px; letter-spacing: -.02em; }
.partner h3 { font-family: var(--serif); font-weight: 500; font-size: 19px; color: var(--ink); margin: 0 0 4px; letter-spacing: -.01em; line-height: 1.2; }
.partner .role { color: var(--brand-ink); font-weight: 600; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; }
.partner p { color: var(--muted); margin: 0 0 12px; font-size: 14px; line-height: 1.5; }
.partner a.email { margin-top: auto; font-size: 13px; font-weight: 600; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; }
.partner a.email:hover { color: var(--brand-2); }
.partner a.email svg { width: 13px; height: 13px; transition: transform .2s; }
.partner a.email:hover svg { transform: translateX(3px); }
.partner h3 a { color: inherit; transition: color .15s; }
.partner h3 a:hover { color: var(--brand-2); }
.partner-photo-link { display: block; transition: transform .2s; }
.partner-photo-link:hover .partner-photo { transform: scale(1.02); }
.partner .partner-photo { transition: transform .25s; }
.partner-actions { margin-top: auto; display: flex; flex-direction: column; gap: 6px; padding-top: 4px; }
.partner-profile-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--brand-ink); letter-spacing: .04em; }
.partner-profile-link:hover { color: var(--brand-2); }
.partner-profile-link svg { width: 12px; height: 12px; transition: transform .2s; }
.partner-profile-link:hover svg { transform: translateX(3px); }

/* Extended Team — Anwaltsanwärterin, juristische Mitarbeit, Assistenz */
.team-extended { margin-top: clamp(48px, 6vw, 72px); padding-top: clamp(36px, 4vw, 52px); border-top: 1px solid var(--rule); }
.team-extended-head { text-align: center; max-width: 640px; margin: 0 auto clamp(24px, 3vw, 36px); }
.team-extended-title { font-family: var(--serif); font-weight: 500; font-size: clamp(22px, 2.4vw, 28px); color: var(--ink); margin: 8px 0 8px; letter-spacing: -.01em; line-height: 1.25; }
.team-extended-lead { color: var(--muted); margin: 0; font-size: 15px; line-height: 1.55; }
.team-extended-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(14px, 1.6vw, 20px); }
.team-mini { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius); padding: clamp(14px, 1.4vw, 18px); display: flex; flex-direction: column; align-items: center; text-align: center; transition: transform .2s, box-shadow .2s; }
.team-mini:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.team-mini-photo { width: 100%; aspect-ratio: 1/1; max-width: 140px; border-radius: 50%; object-fit: cover; object-position: center 35%; background: linear-gradient(160deg,#F7E2C2,#EBC890); margin-bottom: 14px; display: block; }
.team-mini-name { font-family: var(--serif); font-weight: 500; font-size: 16px; color: var(--ink); margin: 0 0 4px; letter-spacing: -.005em; line-height: 1.25; }
.team-mini-role { color: var(--brand-ink); font-weight: 600; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

/* ============================================================
 * PARTNER-DETAILSEITEN  (/team/[slug])
 * ============================================================ */
.partner-section { padding: clamp(56px, 7vw, 96px) 0; }
.partner-section--alt { background: var(--paper); }
.section-head--left { margin-left: 0; }

/* Hero */
.partner-hero { padding: clamp(48px, 6vw, 88px) 0 clamp(40px, 5vw, 64px); background: linear-gradient(180deg, #FAF7F2 0%, #FFFFFF 100%); }
.partner-hero-grid { display: grid; grid-template-columns: minmax(260px, 360px) 1fr; gap: clamp(32px, 4vw, 64px); align-items: center; }
.partner-hero-photo { margin: 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow); }
.partner-hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; background: linear-gradient(160deg,#F7E2C2,#EBC890); }
.partner-hero-text .eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: 12px; font-weight: 700; color: var(--brand-ink); letter-spacing: .14em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; background: var(--accent-soft); border: 1px solid #F6D9A8; margin-bottom: 18px; }
.partner-hero-text .eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
.partner-hero-text h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(34px, 4.4vw, 56px); line-height: 1.05; letter-spacing: -.02em; color: var(--ink); margin: 0 0 8px; }
.partner-hero-role { display: inline-block; color: var(--brand-ink); font-weight: 600; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.partner-hero-tagline { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--muted); font-size: clamp(18px, 1.6vw, 22px); line-height: 1.45; margin: 0 0 28px; max-width: 56ch; }
.partner-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* Bio */
.partner-bio { display: grid; grid-template-columns: minmax(220px, 280px) 1fr; gap: clamp(28px, 4vw, 64px); }
.partner-bio-meta h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(24px, 2.8vw, 32px); line-height: 1.2; letter-spacing: -.015em; color: var(--ink); margin: 0; }
.partner-bio-body p { color: var(--ink); font-size: 17px; line-height: 1.65; margin: 0 0 18px; }
.partner-bio-body p:last-child { margin-bottom: 0; }
.partner-bio-body p:first-of-type::first-letter { font-family: var(--serif); font-size: 3em; line-height: 1; float: left; padding: 4px 8px 0 0; color: var(--brand-ink); }

/* Schwerpunkte (Tag-Liste) */
.partner-tags { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.partner-tag { display: inline-flex; align-items: center; gap: 6px; padding: 10px 18px; border-radius: 999px; font-size: 14px; font-weight: 500; color: var(--ink); background: var(--paper); border: 1px solid var(--rule); transition: background .15s, border-color .15s, color .15s, transform .15s; }
a.partner-tag:hover { background: var(--accent-soft); border-color: #F6D9A8; color: var(--brand-ink); transform: translateY(-2px); }
.partner-tag--static { color: var(--muted); }

/* CV */
.partner-cv-grid { display: grid; grid-template-columns: 1fr 1fr 0.85fr; gap: clamp(28px, 3vw, 48px); }
.partner-cv-block h3 { font-family: var(--serif); font-weight: 500; font-size: 19px; color: var(--ink); margin: 0 0 18px; letter-spacing: -.01em; }
.partner-cv-list { list-style: none; margin: 0; padding: 0; }
.partner-cv-list li { display: grid; grid-template-columns: 110px 1fr; gap: 12px; padding: 12px 0; border-top: 1px solid var(--rule); }
.partner-cv-list li:first-child { border-top: none; }
.partner-cv-range { color: var(--brand-ink); font-weight: 600; font-size: 13px; letter-spacing: .04em; }
.partner-cv-text { color: var(--ink); font-size: 15px; line-height: 1.5; }
.partner-cv-side-block { margin-bottom: 24px; }
.partner-cv-side-block:last-child { margin-bottom: 0; }
.partner-cv-side-block h4 { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--brand-ink); margin: 0 0 10px; }
.partner-cv-side-block p { color: var(--ink); margin: 0; font-size: 15px; }
.partner-cv-memberships { list-style: none; margin: 0; padding: 0; }
.partner-cv-memberships li { color: var(--ink); font-size: 14px; line-height: 1.5; padding: 6px 0; border-top: 1px solid var(--rule); }
.partner-cv-memberships li:first-child { border-top: none; padding-top: 0; }

/* Publikations-Highlights */
.partner-pubs { list-style: none; margin: 0; padding: 0; }
.partner-pub { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: flex-start; padding: 18px 0; border-top: 1px solid var(--rule); }
.partner-pub:first-child { border-top: none; }
.partner-pub-main { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.partner-pub-title { font-family: var(--serif); font-weight: 500; font-size: 17px; line-height: 1.35; color: var(--ink); margin: 0; letter-spacing: -.005em; }
.partner-pub-source { color: var(--brand-ink); font-weight: 600; font-size: 13px; }
.partner-pub-note { color: var(--muted); font-size: 13.5px; line-height: 1.45; }
.partner-pub-year { font-family: var(--serif); font-size: 22px; color: var(--muted); font-weight: 400; flex-shrink: 0; }
.partner-pubs-more { margin-top: 32px; }
.partner-pubs-more a { display: inline-flex; align-items: center; gap: 8px; color: var(--brand-ink); font-weight: 600; font-size: 15px; }
.partner-pubs-more a:hover { color: var(--brand-2); }
.partner-pubs-more svg { width: 16px; height: 16px; transition: transform .2s; }
.partner-pubs-more a:hover svg { transform: translateX(3px); }

/* CTA */
.partner-cta { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; padding: clamp(32px, 4vw, 48px); background: var(--ink); color: #fff; border-radius: var(--radius); }
.partner-cta-text .section-label { color: #FCC97A; }
.partner-cta-text h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(24px, 2.6vw, 32px); color: #fff; margin: 8px 0 12px; letter-spacing: -.015em; line-height: 1.2; }
.partner-cta-text p { color: rgba(255,255,255,.78); margin: 0; font-size: 16px; line-height: 1.6; max-width: 60ch; }
.partner-cta-actions { display: flex; flex-direction: column; gap: 10px; }
.partner-cta-actions .cta.brand { color: #fff; }
.partner-cta-actions .cta.ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.partner-cta-actions .cta.ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* Weitere Anwält:innen */
.partner-others-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: clamp(14px, 1.8vw, 22px); }
.partner-other { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius); padding: 16px; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; color: var(--ink); }
.partner-other:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.partner-other img { width: 100%; aspect-ratio: 212/120; border-radius: 10px; object-fit: cover; object-position: center 28%; background: linear-gradient(160deg,#F7E2C2,#EBC890); margin-bottom: 12px; display: block; }
.partner-other-body h3 { font-family: var(--serif); font-weight: 500; font-size: 17px; color: var(--ink); margin: 0 0 4px; letter-spacing: -.005em; line-height: 1.25; }
.partner-other-body span { color: var(--brand-ink); font-weight: 600; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; }

/* Responsive Partner-Detail */
@media (max-width: 1024px) {
  .partner-hero-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .partner-bio { grid-template-columns: 1fr; }
  .partner-cv-grid { grid-template-columns: 1fr 1fr; }
  .partner-cv-side { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .partner-cv-side-block { margin-bottom: 0; }
  .partner-cta { grid-template-columns: 1fr; }
  .partner-cta-actions { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 720px) {
  .partner-cv-grid { grid-template-columns: 1fr; }
  .partner-cv-side { grid-template-columns: 1fr; }
  .partner-cv-list li { grid-template-columns: 90px 1fr; gap: 8px; }
  .partner-pub { grid-template-columns: 1fr; }
  .partner-pub-year { font-size: 16px; }
  .partner-bio-body p:first-of-type::first-letter { font-size: 2.4em; }
}

/* News (Insights-Vorschau auf Homepage) */
.news { background: var(--paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: clamp(60px, 8vw, 110px) 0; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); }
.news-card { display: flex; flex-direction: column; border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; background: var(--paper); transition: transform .2s, box-shadow .2s; }
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.news-thumb { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 60%, #2B4384 100%); position: relative; color: #FBEFDB; overflow: hidden; }
.news-thumb.alt { background: linear-gradient(135deg, #C06B00, var(--brand) 60%, #FFB34A); }
.news-thumb.third { background: linear-gradient(135deg, #1F2B42, #3B4E78); }
.news-thumb::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.15), transparent 50%); pointer-events: none; }
.news-thumb.has-img { background: var(--ivory); }
.news-thumb.has-img::after { background: linear-gradient(180deg, transparent 60%, rgba(20, 33, 61, .35) 100%); }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; display: block; transition: transform .5s ease; }
.news-card:hover .news-thumb img { transform: scale(1.04); }
.news-thumb .badge { position: absolute; top: 14px; left: 14px; background: rgba(20, 33, 61, .55); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: #fff; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; padding: 6px 10px; border-radius: 999px; border: 1px solid rgba(255,255,255,.2); z-index: 1; }
.news-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.news-date { font-size: 12px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }
.news-title { font-family: var(--serif); font-weight: 500; font-size: 20px; line-height: 1.25; color: var(--ink); letter-spacing: -.01em; margin: 0; }
.news-excerpt { color: var(--muted); font-size: 15px; margin: 0; }
.news-more { margin-top: auto; font-weight: 600; font-size: 14px; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; padding-top: 6px; }
.news-more svg { width: 14px; height: 14px; transition: transform .2s; }
.news-card:hover .news-more svg { transform: translateX(4px); }

/* Kontakt */
.contact { padding: clamp(60px, 8vw, 110px) 0; }
.contact-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px, 4vw, 48px); background: var(--paper); border: 1px solid var(--rule); border-radius: 20px; overflow: hidden; }
.contact-info { padding: clamp(28px, 4vw, 52px); background: var(--ink); color: #E3E7F1; position: relative; overflow: hidden; }
.contact-info::before { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 300px at 0% 100%, rgba(243,146,0,.22), transparent 60%); pointer-events: none; }
.contact-info h2 { font-family: var(--serif); font-weight: 500; color: #fff; font-size: clamp(28px, 3vw, 36px); letter-spacing: -.01em; margin: 0 0 10px; }
.contact-info p { color: #BFC5D6; margin: 0 0 28px; max-width: 40ch; }
.contact-list { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 18px; position: relative; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; }
.contact-list .icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; flex: none; border: 1px solid rgba(255,255,255,.1); }
.contact-list svg { width: 18px; height: 18px; color: var(--brand); }
.contact-list b { color: #fff; font-weight: 600; display: block; margin-bottom: 2px; }
.contact-list a { color: #E3E7F1; }
.contact-list a:hover { color: #fff; text-decoration: underline; }

.booking { padding: clamp(28px, 4vw, 52px); display: flex; flex-direction: column; justify-content: center; gap: 18px; }
.booking h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(22px, 2.4vw, 28px); color: var(--ink); margin: 0; letter-spacing: -.01em; line-height: 1.2; }
.booking p { color: var(--muted); margin: 0; }
.booking ul { list-style: none; padding: 0; margin: 8px 0 16px; display: flex; flex-direction: column; gap: 10px; }
.booking li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--text); }
.booking li svg { width: 18px; height: 18px; color: var(--brand); flex: none; margin-top: 2px; }
.booking-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Kontakt-Formular (Web3Forms-Backend, identisches Pattern wie Landing-Pages) */
.contact-form-block { margin: clamp(36px, 4vw, 56px) auto 0; max-width: 720px; }
.contact-form-head { margin-bottom: clamp(20px, 2.4vw, 32px); }
.contact-form-head .section-label { display: inline-block; }
.contact-form-head h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(24px, 2.6vw, 30px); color: var(--ink); margin: 6px 0 10px; letter-spacing: -.01em; line-height: 1.2; }
.contact-form-head p { color: var(--muted); margin: 0; max-width: 56ch; line-height: 1.55; }
.contact-form { background: var(--paper); border: 1px solid var(--rule); border-radius: 16px; padding: clamp(22px, 2.8vw, 36px); display: flex; flex-direction: column; gap: 16px; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 600; color: var(--ink); letter-spacing: .01em; }
.contact-form .optional { color: var(--muted); font-weight: 400; font-size: 12px; }
.contact-form input, .contact-form select, .contact-form textarea {
  font: inherit; font-size: 15px; font-weight: 400;
  padding: 11px 14px; border-radius: 10px; border: 1px solid var(--rule); background: var(--ivory); color: var(--ink);
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--brand); background: var(--paper); box-shadow: 0 0 0 3px rgba(243,146,0,.18);
}
.contact-form textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
.contact-form-full { width: 100%; }
.contact-form-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 6px; }
.contact-form-actions .cta { flex: none; }
.contact-form-note { font-size: 12.5px; color: var(--muted); margin: 0; line-height: 1.45; max-width: 40ch; }
.contact-form-note a { color: var(--brand-ink); text-decoration: underline; }
.contact-form-note a:hover { color: var(--brand); }
.contact-form-hint { display: block; margin-top: 6px; font-size: 12.5px; color: var(--muted); line-height: 1.4; }
@media (max-width: 600px) {
  .contact-form-row { grid-template-columns: 1fr; }
  .contact-form-actions { flex-direction: column; align-items: stretch; }
  .contact-form-note { text-align: center; max-width: none; }
}

/* Kontakt-Karte (übernommen aus altem ts.at-Design, Rilkeplatz + Karlsplatz mit U-Bahn-Pills) */
.contact-map { margin: clamp(28px, 4vw, 44px) auto 0; max-width: 720px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.contact-map > a { display: block; width: 100%; border-radius: 16px; overflow: hidden; border: 1px solid var(--rule); transition: transform .25s ease, box-shadow .25s ease; }
.contact-map > a:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -20px rgba(20,33,61,.25); }
.contact-map img { display: block; width: 100%; height: auto; }
.contact-map figcaption { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.contact-map-hint { font-size: 14px; color: var(--muted); line-height: 1.5; }
.contact-map-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 14px; color: var(--brand-ink); text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 1px; transition: color .15s; }
.contact-map-link:hover { color: var(--brand); }
.contact-map-link svg { width: 14px; height: 14px; transition: transform .15s; }
.contact-map-link:hover svg { transform: translateX(3px); }

/* Homepage Responsive Overrides */
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .services-hero-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .team-extended-grid { grid-template-columns: repeat(3, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; }
  .hero-bg::after {
    background: linear-gradient(180deg, rgba(250,247,242,.94) 0%, rgba(250,247,242,.82) 45%, rgba(250,247,242,.55) 80%, rgba(250,247,242,.40) 100%);
  }
  .hero-bg > img { object-position: center 30%; }
}
@media (max-width: 1024px) {
  .quote-slide { grid-template-columns: 220px minmax(0, 1fr); gap: 28px; }
}
@media (max-width: 720px) {
  .service-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .team-extended-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .hero { padding: 40px 0 56px; }
  .hero-trust { gap: 16px; }
  .quote-slide { grid-template-columns: 1fr; gap: 24px; }
  .quote-portrait { max-width: 220px; aspect-ratio: 4/5; }
}

/* ============================================================
 * LANDING-PAGE-STYLES (Google Ads Conversion-Pages)
 * ============================================================ */

body.landing { background: var(--paper); }

/* Minimaler Header */
.landing-header { border-bottom: 1px solid var(--rule); padding: 14px 0; background: var(--paper); position: sticky; top: 0; z-index: 50; }
.landing-header .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 56px; }
.landing-header .cta { font-size: 14px; padding: 9px 16px; }
.landing-header .cta svg { width: 14px; height: 14px; }

/* Minimaler Footer */
.landing-footer { background: var(--ink); color: #AEB4C5; padding: 28px 0; font-size: 13px; }
.landing-footer .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.landing-footer a { color: #fff; }
.landing-footer .legal { display: flex; gap: 18px; }

/* ===== Hero ===== */
.lp-hero {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--paper) 100%);
  padding: clamp(48px, 6vw, 88px) 0 clamp(48px, 6vw, 80px);
}
.lp-hero-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: clamp(32px, 4vw, 64px); align-items: start; }
.lp-hero h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(34px, 4.6vw, 60px); line-height: 1.05; letter-spacing: -.02em; color: var(--ink); margin: 18px 0 22px; max-width: 18ch; }
.lp-hero h1 em { font-style: italic; color: var(--brand-ink); font-weight: 500; }
.lp-hero .lead { font-size: clamp(16px, 1.3vw, 19px); color: var(--text); max-width: 56ch; margin: 0 0 24px; line-height: 1.6; }
.lp-hero .eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: 12px; font-weight: 700; color: var(--brand-ink); letter-spacing: .14em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; background: var(--accent-soft); border: 1px solid #F6D9A8; }
.lp-hero .eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }

.lp-trust-pills { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 10px; max-width: 56ch; }
.lp-trust-pills li { font-family: var(--sans); font-size: 14.5px; color: var(--ink); display: flex; align-items: center; gap: 10px; }
.lp-trust-pills li::before { content: ""; width: 16px; height: 16px; flex: none; background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F39200' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12l5 5L20 7'/></svg>") center/contain no-repeat; }

/* LP-Stats-Band — kompakte Zahlen-Beleg-Reihe (z. B. Markenanmeldungen, Jahre, Behörden) */
.lp-stats-band { background: var(--ivory); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: clamp(32px, 4vw, 48px) 0; }
.lp-stats-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); }
.lp-stat { text-align: center; display: flex; flex-direction: column; gap: 6px; padding: 0 12px; }
.lp-stat-num { font-family: var(--serif); font-weight: 500; font-size: clamp(24px, 3vw, 36px); color: var(--brand-ink); letter-spacing: -.01em; line-height: 1.1; }
.lp-stat-label { font-size: 13.5px; color: var(--muted); line-height: 1.5; max-width: 28ch; margin: 0 auto; }
@media (max-width: 720px) {
  .lp-stats-grid { grid-template-columns: 1fr; gap: 20px; }
  .lp-stat { padding: 4px 0; }
}

/* LP-Awards-Band — schmales Drittbeleg-Band unter dem Hero */
.lp-awards-band { background: var(--paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: clamp(28px, 4vw, 44px) 0; }
.lp-awards-band-eyebrow { display: block; text-align: center; font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--brand-ink); margin-bottom: clamp(20px, 2.5vw, 28px); }
.lp-awards-band-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); }
.lp-awards-band-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 0 8px; }
.lp-awards-band-badge { display: inline-flex; align-items: center; justify-content: center; height: 64px; margin-bottom: 4px; }
.lp-awards-band-badge img { max-height: 64px; width: auto; max-width: 200px; object-fit: contain; }
.lp-awards-band-badge--rank { padding: 8px 18px; background: var(--ivory); border-radius: 8px; box-shadow: inset 0 0 0 2.5px var(--brand); font-family: var(--serif); color: var(--ink); flex-direction: column; line-height: 1; }
.lp-awards-band-badge--rank strong { font-weight: 700; font-size: 22px; letter-spacing: .04em; color: var(--ink); }
.lp-awards-band-badge--rank small { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .14em; color: var(--brand-ink); margin-top: 4px; }
.lp-awards-band-source { font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); }
.lp-awards-band-spec { font-size: 13px; color: var(--muted); line-height: 1.45; max-width: 30ch; }
@media (max-width: 720px) {
  .lp-awards-band-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* Hero Form (lead capture) */
.lp-hero-form { background: var(--ink); color: #fff; padding: clamp(28px, 3vw, 36px); border-radius: var(--radius); box-shadow: var(--shadow); position: sticky; top: 90px; }
.lp-hero-form h2 { font-family: var(--serif); font-weight: 500; font-size: 26px; color: #fff; margin: 0 0 6px; letter-spacing: -.01em; }
.lp-hero-form > p { color: #C5CBDB; font-size: 14.5px; margin: 0 0 22px; line-height: 1.5; }

.lp-form { display: flex; flex-direction: column; gap: 14px; }
.lp-form label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: #C5CBDB; font-weight: 500; }
.lp-form .optional { color: #8A91A6; font-weight: 400; }
.lp-form input, .lp-form textarea { font-family: var(--sans); font-size: 15px; padding: 11px 14px; border-radius: 8px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.06); color: #fff; transition: border-color .15s, background .15s; }
.lp-form input::placeholder, .lp-form textarea::placeholder { color: #8A91A6; }
.lp-form input:focus, .lp-form textarea:focus { outline: 2px solid var(--brand); outline-offset: 2px; border-color: var(--brand); background: rgba(255,255,255,.1); }
.lp-form button { margin-top: 8px; justify-content: center; font-size: 15.5px; padding: 13px 18px; cursor: pointer; }
.lp-form-note { color: #C5CBDB; font-size: 13px; text-align: center; margin: 4px 0 0; line-height: 1.5; }
.lp-form-note a { color: #fff; }
.lp-form-note strong { color: var(--brand); font-weight: 600; }

/* ===== Section shared ===== */
.lp-process, .lp-types, .lp-territories, .lp-pricing, .lp-team, .lp-trust, .lp-final {
  padding: clamp(56px, 7vw, 90px) 0;
}
.lp-process, .lp-territories { background: var(--ivory); }
.lp-types, .lp-team { background: var(--paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.lp-pricing { background: var(--ivory); }
.lp-trust { background: var(--paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.lp-final { background: var(--ink); color: #fff; text-align: center; }

.lp-hero .section-head, body.landing .section-head { max-width: 760px; margin: 0 0 36px; }
body.landing .section-label { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--brand-ink); margin-bottom: 12px; }
body.landing section h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(28px, 3.4vw, 42px); line-height: 1.15; color: var(--ink); margin: 0 0 12px; letter-spacing: -.02em; }
body.landing section .lead { color: var(--muted); font-size: 16.5px; max-width: 64ch; margin: 0; line-height: 1.6; }

/* ===== Process Steps ===== */
.lp-process-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 32px); counter-reset: step; }
.lp-step { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius); padding: clamp(24px, 2.5vw, 32px); position: relative; }
.lp-step-num { font-family: var(--serif); font-weight: 600; font-size: 36px; color: var(--brand); line-height: 1; display: block; margin-bottom: 14px; letter-spacing: -.04em; }
.lp-step h3 { font-family: var(--serif); font-weight: 500; font-size: 21px; color: var(--ink); margin: 0 0 10px; letter-spacing: -.01em; }
.lp-step p { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0; }

/* ===== Markentypen ===== */
.lp-types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 32px); }
.lp-type-card { background: var(--ivory); border: 1px solid var(--rule); border-radius: var(--radius); padding: clamp(24px, 2.5vw, 32px); }
.lp-type-card h3 { font-family: var(--serif); font-weight: 500; font-size: 22px; color: var(--ink); margin: 0 0 10px; letter-spacing: -.01em; }
.lp-type-card p { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0 0 14px; }
.lp-type-card-link { display: inline-block; font-size: 13.5px; font-weight: 600; color: var(--brand-ink); text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 1px; transition: color .15s; }
.lp-type-card-link:hover { color: var(--brand); }
.lp-type-example { display: inline-block; font-size: 12px; letter-spacing: .04em; color: var(--brand-ink); background: var(--accent-soft); padding: 5px 10px; border-radius: 6px; font-weight: 500; }

/* ===== Schutzräume ===== */
.lp-territories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 28px); }
.lp-territory { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius); padding: clamp(26px, 2.5vw, 32px); display: flex; flex-direction: column; gap: 12px; }
.lp-territory--featured { border: 2px solid var(--brand); position: relative; box-shadow: 0 12px 28px -16px rgba(243,146,0,.4); }
.lp-territory--featured::after { content: "Empfehlung"; position: absolute; top: -12px; right: 24px; background: var(--brand); color: #fff; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; padding: 4px 12px; border-radius: 999px; }
.lp-territory-flag { font-size: 28px; line-height: 1; }
.lp-territory h3 { font-family: var(--serif); font-weight: 500; font-size: 22px; color: var(--ink); margin: 0; letter-spacing: -.01em; }
.lp-territory p { color: var(--muted); font-size: 14.5px; line-height: 1.6; margin: 0; }
.lp-territory strong { color: var(--ink); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; margin-top: auto; }
.lp-territory > span:last-child { color: var(--text); font-size: 14px; line-height: 1.5; }

/* ===== Pricing ===== */
.lp-pricing-cta { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius); padding: clamp(28px, 3vw, 40px); display: flex; flex-direction: column; gap: 20px; align-items: center; text-align: center; max-width: 720px; margin: 0 auto; }
.lp-pricing-cta p { color: var(--text); font-size: 15.5px; line-height: 1.6; margin: 0; max-width: 56ch; }
.lp-pricing-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ===== Team-Karte: nutzt vorhandene .author-card--team Styles ===== */
.lp-team .author-card--team { background: var(--ivory); }

/* ===== Trust / Awards ===== */
.lp-trust-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: clamp(16px, 2vw, 24px); }
.lp-trust-grid li { background: var(--ivory); border: 1px solid var(--rule); border-radius: var(--radius); padding: 22px 20px; display: flex; flex-direction: column; gap: 6px; text-align: center; }
.lp-trust-grid strong { font-family: var(--serif); font-weight: 500; font-size: 16.5px; color: var(--ink); letter-spacing: -.005em; }
.lp-trust-grid span { color: var(--muted); font-size: 13px; line-height: 1.4; }

/* ===== Final CTA ===== */
.lp-final h2 { color: #fff !important; max-width: 18ch; margin: 0 auto 14px; }
.lp-final p { color: #C5CBDB; font-size: 17px; max-width: 50ch; margin: 0 auto 28px; line-height: 1.6; }
.lp-final-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.lp-final-actions .cta.ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.lp-final-actions .cta.ghost:hover { background: #fff; color: var(--ink); }

/* ===== Landing Responsive ===== */
@media (max-width: 1024px) {
  .lp-hero-grid { grid-template-columns: 1fr; }
  .lp-hero-form { position: static; max-width: 480px; }
  .lp-process-grid, .lp-types-grid, .lp-territories-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .landing-header .brand-wordmark { display: none; }
  .landing-header .cta { font-size: 13px; padding: 8px 12px; }
  .landing-footer .container { flex-direction: column; align-items: flex-start; gap: 10px; }
  .lp-process-grid, .lp-types-grid, .lp-territories-grid, .lp-trust-grid { grid-template-columns: 1fr; }
  .lp-territory--featured { order: -1; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .awards-track { flex-wrap: wrap; justify-content: center; width: 100%; gap: 14px; }
  .awards-marquee { -webkit-mask-image: none; mask-image: none; }
}

/* ============================================================
 * COOKIE-BANNER (DSGVO-Consent-Layer)
 * ============================================================ */
.cookie-banner {
  position: fixed; left: clamp(12px, 2vw, 24px); right: clamp(12px, 2vw, 24px);
  bottom: clamp(12px, 2vw, 24px);
  z-index: 80;
  background: var(--paper); color: var(--text);
  border: 1px solid var(--rule); border-radius: 16px;
  box-shadow: 0 24px 64px -24px rgba(20, 33, 61, .25), 0 0 0 1px rgba(20, 33, 61, .03);
  max-width: 880px; margin: 0 auto;
  animation: cookie-slide-in .35s cubic-bezier(.2, .8, .2, 1);
}
@keyframes cookie-slide-in {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner { padding: clamp(20px, 3vw, 28px); }
.cookie-banner-text h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(20px, 2vw, 24px); color: var(--ink); margin: 0 0 8px; letter-spacing: -.01em; }
.cookie-banner-text p { color: var(--muted); font-size: 14.5px; line-height: 1.55; margin: 0 0 18px; max-width: 64ch; }
.cookie-banner-text a { color: var(--brand-ink); text-decoration: underline; text-underline-offset: 3px; }

.cookie-categories { display: flex; flex-direction: column; gap: 10px; border: 0; padding: 0; margin: 0 0 20px; }
.cookie-cat-wrap { display: flex; flex-direction: column; gap: 4px; }
.cookie-cat { display: flex; align-items: flex-start; gap: 12px; padding: 12px 14px; background: var(--ivory); border: 1px solid var(--rule); border-radius: 10px; cursor: pointer; transition: border-color .15s, background .15s; }
.cookie-cat:has(input:checked) { border-color: var(--brand); background: var(--accent-soft); }
.cookie-cat:has(input:disabled) { cursor: not-allowed; opacity: .85; background: var(--ivory); }
.cookie-cat input[type="checkbox"] { width: 18px; height: 18px; flex: none; margin-top: 2px; accent-color: var(--brand); cursor: pointer; }
.cookie-cat input[type="checkbox"]:disabled { cursor: not-allowed; }
.cookie-cat-body { display: flex; flex-direction: column; gap: 2px; }
.cookie-cat-body strong { color: var(--ink); font-weight: 600; font-size: 14.5px; }
.cookie-cat-body span { color: var(--muted); font-size: 13px; line-height: 1.5; }

/* Per-Kategorie ausklappbare Cookie-Liste (Disclosure) */
.cookie-cat-details { padding: 0 4px; }
.cookie-cat-details summary { cursor: pointer; color: var(--brand-ink); font-size: 12.5px; font-weight: 500; letter-spacing: .02em; padding: 4px 10px; list-style: none; display: inline-flex; align-items: center; gap: 6px; border-radius: 6px; user-select: none; }
.cookie-cat-details summary::-webkit-details-marker { display: none; }
.cookie-cat-details summary::before { content: "▸"; font-size: 10px; transition: transform .15s; display: inline-block; }
.cookie-cat-details[open] summary::before { transform: rotate(90deg); }
.cookie-cat-details summary:hover { background: var(--accent-soft); color: var(--brand); }
.cookie-list { margin: 8px 4px 4px; padding: 12px 14px; background: var(--paper); border: 1px solid var(--rule); border-radius: 8px; display: grid; grid-template-columns: max-content 1fr; gap: 6px 14px; align-items: baseline; font-size: 12.5px; line-height: 1.5; }
.cookie-list dt { margin: 0; font-weight: 600; color: var(--ink); }
.cookie-list dt code { font-family: ui-monospace, "Cascadia Mono", "Source Code Pro", "Menlo", monospace; font-size: 11.5px; background: var(--ivory); padding: 1px 6px; border-radius: 4px; border: 1px solid var(--rule); }
.cookie-list dd { margin: 0; color: var(--muted); }

.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .cta { font-size: 14px; padding: 10px 18px; }

.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

@media (max-width: 560px) {
  .cookie-actions { flex-direction: column; }
  .cookie-actions .cta { width: 100%; justify-content: center; }
}

/* ============================================================
 * PRINT STYLESHEET
 * Stellt sicher, dass die Seite druckbar ist:
 * - Sticky-Nav, Drawer, Cookie-Banner, Animationen werden ausgeblendet
 * - Carousel-Slides (Zitate) und Marquee (Awards) werden vollständig sichtbar
 * - Dunkle Sektionen werden auf Weiß umgestellt (spart Toner, bleibt lesbar)
 * - Page-Breaks vermeiden Splits in Cards
 * ============================================================ */
@media print {
  @page { size: A4; margin: 14mm 12mm; }

  *, *::before, *::after {
    background-image: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
    transition: none !important;
    animation: none !important;
    transform: none !important;
    -webkit-print-color-adjust: economy;
            print-color-adjust: economy;
  }

  html, body { background: #fff !important; color: #000 !important; font-size: 10.5pt; line-height: 1.45; padding-bottom: 0 !important; }

  /* Site-Chrome ausblenden */
  .topstrip,
  .nav,
  .drawer,
  .burger,
  .cookie-banner,
  .skip,
  .sticky-mobile-cta,
  .hero-bg,
  .quote-band-dots,
  .contact-form-block,
  .footer .top-strip {
    display: none !important;
  }

  /* Section-Hintergründe → weiß */
  .hero, .awards, .services, .values, .quote-band, .partners, .news, .contact, .contact-info, .footer,
  .vi-hero, .vi-areas, .vi-contacts, .vi-cta {
    background: #fff !important;
    color: #000 !important;
    padding: 12pt 0 !important;
  }
  .contact-info { color: #000 !important; }
  .contact-info::before { display: none !important; }
  .vi-cta::before { display: none !important; }
  .vi-cta h2, .vi-cta p { color: #000 !important; }
  .vi-cta-actions .cta.ghost { color: #000 !important; border-color: #000 !important; }

  /* Sub-Page Cards (Tätigkeitsbereiche, Ansprechpartner) auf hellem Hintergrund */
  .vi-area, .vi-contact { border: 1px solid #ccc !important; background: #fff !important; page-break-inside: avoid; }
  .vi-pills li { background: #f7f7f7 !important; color: #000 !important; border-color: #ccc !important; }
  .vi-contact-mail { color: #000 !important; }

  /* Brand-Akzente in Headlines erhalten */
  .hero h1 em { color: #000 !important; font-style: italic; }

  /* Sticky-Elemente entsperren */
  .nav { position: static !important; }

  /* Hero */
  .hero { padding-top: 0 !important; }

  /* Awards-Marquee → Grid */
  .awards-marquee { overflow: visible !important; -webkit-mask-image: none !important; mask-image: none !important; }
  .awards-track { display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 10pt !important; width: 100% !important; }
  .awards-track .award-item { flex: none !important; width: auto !important; min-height: 0 !important; padding: 8pt !important; page-break-inside: avoid; }
  /* Kopien, die nur für die Endlosschleife dienen, raus */
  .awards-track > [aria-hidden="true"] { display: none !important; }
  .award-item { border: 1px solid #999 !important; background: #fff !important; }
  .award-item .badge.text.rank { color: #000 !important; box-shadow: inset 0 0 0 2px #ccc !important; }
  .award-item .badge.text { background: #f0f0f0 !important; color: #000 !important; }

  /* Service-Hero (dunkel → hell) */
  .service-hero { background: #fff !important; border: 1px solid #999 !important; color: #000 !important; page-break-inside: avoid; }
  .service-hero h3, .service-hero p { color: #000 !important; }
  .service-hero-sub li { color: #000 !important; background: #f7f7f7 !important; border-color: #ccc !important; }
  .contact-pill, .service-contact { color: #000 !important; }
  .service-hero-contacts { border-top-color: #ccc !important; }
  .service-hero-contacts-label { color: #444 !important; }

  /* Quote-Band: alle Slides untereinander */
  .quote-band { color: #000 !important; }
  .quote-band-stack { display: block !important; }
  .quote-slide { grid-area: auto !important; opacity: 1 !important; visibility: visible !important; display: grid !important; page-break-inside: avoid; margin-bottom: 14pt; border-top: 1pt solid #ddd; padding-top: 12pt; }
  .quote-slide:first-child { border-top: none; padding-top: 0; }

  /* Werte-Banner */
  .values-banner { border: 1px solid #ccc !important; }

  /* Partner-Karten */
  .partner { page-break-inside: avoid; border: 1px solid #ccc !important; }

  /* News-Karten */
  .news-card { page-break-inside: avoid; border: 1px solid #ccc !important; }

  /* Kontakt-Sektion */
  .contact-wrap { border: 1px solid #ccc !important; }
  .contact-list a { color: #000 !important; text-decoration: underline; }
  .contact-map > a { border: 1px solid #ccc !important; }

  /* Buttons als einfache Outline-Form */
  .cta { background: #fff !important; color: #000 !important; border: 1px solid #000 !important; padding: 6pt 10pt !important; }

  /* Page-Breaks */
  h1, h2, h3 { page-break-after: avoid; }
  .section-head { page-break-after: avoid; }
  .service-hero, .service, .award-item, .value-card, .partner, .news-card, .quote-slide { page-break-inside: avoid; }

  /* Externe Links: URL anzeigen */
  a[href^="http"]::after,
  a[href^="https"]::after {
    content: " (" attr(href) ")";
    font-size: 8pt;
    color: #555;
    word-break: break-all;
  }
  /* Aber nicht für Logos / Bild-Links / Icon-Buttons */
  .brand::after, .award-item a::after, .quote-portrait::after,
  .partner-photo::after, .nav a::after, .menu a::after,
  .cta::after, .arrow::after, .contact-pill::after, .service-contact::after,
  .contact-map > a::after { content: ""; }

  /* Typografie für Print */
  h1 { font-size: 22pt !important; }
  h2 { font-size: 14pt !important; }
  h3 { font-size: 11pt !important; }
  .section-title { font-size: 14pt !important; }
}
