/* ============================================================
   CBB — Components
   ============================================================ */

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 28px;
}
/* default: transparent over dark hero */
.site-header { color: var(--sand); }
.site-header.scrolled {
  background: var(--white);
  color: var(--ink);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}

/* Logo wordmark */
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 27px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: currentColor;
}
.logo .dot { color: var(--gold); }
.logo small {
  font-family: var(--body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-left: 10px;
  align-self: center;
  opacity: 0.7;
  border-left: 1px solid currentColor;
  padding-left: 10px;
}
@media (max-width: 560px){ .logo small { display: none; } }

/* Primary nav */
.nav { display: flex; align-items: center; gap: 2px; flex-shrink: 0; }
.nav__item { position: relative; flex-shrink: 0; }
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  font-weight: 500;
  font-size: 15.5px;
  padding: 12px 16px;
  color: currentColor;
  transition: color .2s ease;
}
.nav__link:hover { color: var(--gold-hi); }
.site-header.scrolled .nav__link:hover { color: var(--gold); }
.nav__link .caret {
  width: 9px; height: 9px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .25s ease;
  opacity: .7;
}
.nav__item.open .nav__link .caret { transform: rotate(-135deg) translateY(-2px); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 340px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  box-shadow: 0 24px 50px -24px rgba(14,38,32,0.35);
}
.nav__item.open .dropdown { opacity: 1; visibility: visible; transform: none; }
.dropdown a {
  display: block;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  transition: background .18s ease;
}
.dropdown a:last-child { border-bottom: 0; }
.dropdown a:hover { background: var(--sand); }
.dropdown .d-title { font-family: var(--display); font-weight: 600; font-size: 17px; }
.dropdown .d-sub { font-size: 13.5px; color: var(--ink-2); margin-top: 2px; }

.header-right { display: flex; align-items: center; gap: 22px; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 500;
  font-size: 15px;
  white-space: nowrap;
}
.header-phone .ic { color: var(--gold); }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  background: transparent;
  border: 1px solid currentColor;
}
.menu-toggle span { display: block; width: 20px; height: 1.6px; background: currentColor; margin-inline: auto; transition: transform .3s, opacity .3s; }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--green-deep);
  color: var(--sand);
  padding: 110px var(--gutter) 48px;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.6,0,.2,1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open { transform: none; }
.mobile-menu a {
  font-family: var(--display);
  font-weight: 600;
  font-size: 30px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-dark);
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-menu .sub-links { display: none; }
.mobile-menu .sub-links.show { display: block; }
.mobile-menu .sub-links a { font-family: var(--body); font-size: 18px; font-weight: 400; padding-left: 18px; color: rgba(244,239,230,.8); }
.mobile-menu .mm-foot { margin-top: auto; padding-top: 32px; }
.mobile-menu .mm-foot .btn { width: 100%; justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--sand);
  overflow: hidden;
  background: var(--green-deep);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--green);
  background-image:
    repeating-linear-gradient(-45deg, rgba(181,144,74,0.07), rgba(181,144,74,0.07) 1px, transparent 1px, transparent 13px);
}
.hero__bg .ph__badge { top: 120px; }
.hero__cap {
  position: absolute;
  bottom: 18px; right: var(--gutter);
  font-family: ui-monospace, Menlo, monospace;
  font-size: 11.5px;
  color: rgba(244,239,230,0.6);
  z-index: 3;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,38,32,0.55) 0%, rgba(14,38,32,0.15) 32%, rgba(14,38,32,0.55) 72%, rgba(14,38,32,0.92) 100%);
}
.hero__inner { position: relative; z-index: 4; padding-block: 140px 92px; width: 100%; }
.hero h1 {
  font-weight: 700;
  font-size: clamp(2.8rem, 7.4vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  max-width: 16ch;
}
.hero .lead { color: rgba(244,239,230,0.88); margin-top: 30px; max-width: 56ch; font-size: clamp(1.1rem,1.6vw,1.4rem); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px 24px; align-items: center; margin-top: 42px; }

/* ---------- Section header block ---------- */
.sec-head { max-width: 70ch; }
.sec-head .lead { margin-top: 18px; }

/* ---------- Four pillars ---------- */
.pillars { margin-top: 64px; }
.pillar {
  grid-column: span 3;
  border-top: 1px solid var(--line-dark);
  padding-top: 26px;
}
.pillar .num {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 12px; color: var(--gold);
  letter-spacing: 0.1em;
}
.pillar h3 { margin: 14px 0 12px; font-size: clamp(1.3rem, 1.9vw, 1.7rem); }
.pillar p { font-weight: 300; color: rgba(244,239,230,0.78); font-size: 16.5px; margin: 0; }
@media (max-width: 900px){ .pillar { grid-column: span 6; } }
@media (max-width: 560px){ .pillar { grid-column: span 12; } }

/* ---------- Service three-block ---------- */
.svc-grid { margin-top: 60px; }
.svc-card { grid-column: span 4; display: flex; flex-direction: column; }
.svc-card__img { aspect-ratio: 4/3; margin-bottom: 24px; }
.svc-card .eyebrow { margin-bottom: 14px; }
.svc-card h3 { font-size: clamp(1.4rem, 2vw, 1.85rem); margin-bottom: 14px; }
.svc-card p { font-weight: 300; color: var(--ink-2); font-size: 16.5px; flex: 1; }
.svc-card .arrow-link { margin-top: 18px; }
@media (max-width: 860px){ .svc-card { grid-column: span 12; } }

/* ---------- References ---------- */
.ref-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; }
.ref-metric {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  letter-spacing: -0.02em;
  max-width: 22ch;
  line-height: 1.1;
}
.ref-metric b { color: var(--gold-hi); font-weight: 700; }
.ref-grid { margin-top: 60px; gap: var(--col-gap); }
.proj-card {
  grid-column: span 6;
  position: relative;
  display: block;
  overflow: hidden;
}
.proj-card__img { aspect-ratio: 16/10; }
.proj-card__img .ph__cap { display: none; }
.proj-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  background: linear-gradient(0deg, rgba(14,38,32,0.92) 12%, rgba(14,38,32,0.0) 100%);
  color: var(--sand);
}
.proj-card .p-kicker { font-family: ui-monospace, Menlo, monospace; font-size: 11.5px; color: var(--gold-hi); letter-spacing: 0.1em; text-transform: uppercase; }
.proj-card h3 { font-size: clamp(1.4rem, 2.1vw, 1.9rem); margin: 8px 0 16px; }
.proj-meta {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 4px 28px;
  font-size: 13.5px;
  color: rgba(244,239,230,0.82);
  border-top: 1px solid var(--line-dark);
  padding-top: 14px;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .45s ease, opacity .35s ease, padding .45s ease, margin .45s ease;
  margin-top: 0;
}
.proj-meta span b { color: var(--gold-hi); font-weight: 600; }
.proj-card:hover .proj-meta, .proj-card:focus-within .proj-meta { max-height: 140px; opacity: 1; margin-top: 16px; }
.proj-card__img { transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.proj-card:hover .proj-card__img { transform: scale(1.03); }
@media (max-width: 760px){ .proj-card { grid-column: span 12; } .proj-meta { max-height: 140px; opacity: 1; margin-top: 16px; } }

/* ---------- Process / Ablauf ---------- */
.steps { margin-top: 56px; counter-reset: step; }
.step {
  grid-column: span 4;
  border-top: 2px solid var(--ink);
  padding: 22px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.step .s-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}
.step .s-num em { color: var(--gold); font-style: normal; }
.step h3 { font-size: 1.25rem; }
.step p { font-weight: 300; color: var(--ink-2); font-size: 15.5px; margin: 0; }
@media (max-width: 860px){ .step { grid-column: span 6; } }
@media (max-width: 520px){ .step { grid-column: span 12; } }

/* ---------- Founder / responsibility ---------- */
.founder { align-items: center; }
.founder__img { grid-column: span 5; aspect-ratio: 4/5; }
.founder__body { grid-column: 7 / span 6; }
.founder blockquote {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 24px 0 0;
}
.founder .f-quote { font-weight: 300; font-size: 1.15rem; color: rgba(244,239,230,0.82); margin-top: 26px; }
.founder__sig { margin-top: 32px; padding-top: 22px; border-top: 1px solid var(--line-dark); }
.founder__sig .f-name { font-family: var(--display); font-weight: 600; font-size: 1.2rem; }
.founder__sig .f-role { color: rgba(244,239,230,0.7); font-size: 15px; }
.founder__sig .f-chamber { color: var(--gold-hi); font-size: 13.5px; margin-top: 8px; display: inline-flex; gap: 8px; align-items: center; }
@media (max-width: 860px){
  .founder__img { grid-column: 1 / -1; max-width: 420px; }
  .founder__body { grid-column: 1 / -1; }
}

/* ---------- Ratgeber teaser ---------- */
.rat-card {
  grid-column: span 4;
  border: 1px solid var(--line);
  padding: 32px;
  display: flex; flex-direction: column;
  background: var(--white);
  transition: border-color .25s ease, transform .25s ease;
}
.rat-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.rat-card .r-tag { font-family: ui-monospace, Menlo, monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.rat-card h3 { font-size: 1.3rem; margin: 16px 0 14px; line-height: 1.15; }
.rat-card .r-date { font-size: 13px; color: var(--ink-2); margin-top: auto; }
.rat-card .arrow-link { margin-top: 18px; }
@media (max-width: 860px){ .rat-card { grid-column: span 12; } }

/* ---------- Karriere band ---------- */
.career-band { display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; }
.career-band h2 { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 700; letter-spacing: -0.035em; max-width: 18ch; }

/* ---------- Contact ---------- */
.contact-grid { gap: clamp(40px, 6vw, 90px); align-items: start; }
.contact-form-col { grid-column: span 7; }
.contact-info-col { grid-column: 9 / span 4; }
@media (max-width: 920px){ .contact-form-col, .contact-info-col { grid-column: 1 / -1; } }

.field { margin-bottom: 22px; }
.field label { display: block; font-weight: 500; font-size: 14px; letter-spacing: 0.02em; margin-bottom: 9px; }
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 15px 16px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}
.field textarea { resize: vertical; min-height: 130px; }
.field.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 0; }
@media (max-width: 520px){ .field.row2 { grid-template-columns: 1fr; gap: 0; } }
.field .err { color: #b3261e; font-size: 13px; margin-top: 7px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #b3261e; box-shadow: 0 0 0 1px #b3261e; }
.field.invalid .err { display: block; }
.form-note { font-size: 13px; color: var(--ink-2); margin-top: 6px; }
.form-success {
  display: none;
  border: 1px solid var(--gold);
  border-left: 4px solid var(--gold);
  background: var(--white);
  padding: 22px 24px;
  margin-top: 8px;
}
.form-success.show { display: block; }
.form-success strong { font-family: var(--display); font-size: 1.15rem; }

/* contact info */
.info-block { border-top: 1px solid var(--line); padding: 22px 0; }
.info-block:first-child { border-top: 0; padding-top: 0; }
.info-block .i-label { font-family: ui-monospace, Menlo, monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.info-block .i-big { font-family: var(--display); font-weight: 600; font-size: 1.15rem; }
.info-block address { font-style: normal; line-height: 1.7; }
.map-ph { aspect-ratio: 3/2; margin-top: 8px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-deep); color: rgba(244,239,230,0.78); padding-top: clamp(70px, 8vw, 110px); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 64px; border-bottom: 1px solid var(--line-dark); }
@media (max-width: 880px){ .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 520px){ .footer-top { grid-template-columns: 1fr; } }
.footer-col h4 { font-family: var(--body); font-weight: 600; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 15.5px; transition: color .2s ease; }
.footer-col a:hover { color: var(--gold-hi); }
.footer-brand .logo { color: var(--sand); font-size: 30px; margin-bottom: 18px; }
.footer-brand p { font-weight: 300; font-size: 15.5px; max-width: 34ch; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a { width: 42px; height: 42px; border: 1px solid var(--line-dark); display: inline-flex; align-items: center; justify-content: center; transition: border-color .2s, color .2s; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold-hi); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding: 28px 0 40px; font-size: 13.5px; }
.footer-bottom nav { display: flex; gap: 24px; flex-wrap: wrap; }

/* ---------- Responsive nav switch ---------- */
@media (max-width: 1120px){
  .nav, .header-phone { display: none; }
  .menu-toggle { display: flex; }
}
body.menu-open { overflow: hidden; }

/* ---------- Subpage header (no dark hero behind it) ---------- */
body.subpage .site-header {
  background: var(--white);
  color: var(--ink);
  border-bottom-color: var(--line);
}
body.subpage main { padding-top: 84px; }

/* ---------- Page intro band ---------- */
.page-intro { padding-block: clamp(56px, 8vw, 110px) clamp(40px, 5vw, 64px); }
.page-intro h1 {
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 5rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--ink-2); margin-bottom: 28px;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: .5; }

/* ---------- Legal / prose document ---------- */
.legal { padding-bottom: clamp(70px, 10vw, 130px); }
.legal__doc { max-width: 760px; }
.legal__doc h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  letter-spacing: -0.02em;
  margin: 56px 0 18px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.legal__doc h2:first-of-type { margin-top: 0; }
.legal__doc h3 { font-family: var(--display); font-weight: 600; font-size: 1.15rem; margin: 28px 0 8px; }
.legal__doc p { font-weight: 300; color: var(--ink); margin: 0 0 1.1em; max-width: 70ch; }
.legal__doc .muted { color: var(--ink-2); }
.legal__doc a:not(.btn) { color: var(--green); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--gold); }
.legal__doc a:not(.btn):hover { color: var(--gold); }
.legal__lines { font-weight: 300; line-height: 1.85; margin: 0 0 1.1em; }
.legal__lines strong { font-weight: 600; }
.legal__pending { color: var(--ink-2); font-style: italic; }
.legal__updated { margin-top: 64px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--ink-2); }

/* ---------- Subpage split hero (text + image) ---------- */
.subhero { align-items: center; }
.subhero__body { grid-column: span 6; }
.subhero__media { grid-column: 8 / span 5; }
.subhero__media .ph { aspect-ratio: 4/5; height: 100%; }
.subhero h1 {
  font-weight: 700;
  font-size: clamp(2.3rem, 4.6vw, 4rem);
  letter-spacing: -0.035em;
  line-height: 1.0;
  margin-bottom: 26px;
}
.subhero .lead { color: rgba(244,239,230,0.84); }
.subhero__cta { display: flex; flex-wrap: wrap; gap: 16px 24px; align-items: center; margin-top: 38px; }
.breadcrumb--light { color: rgba(244,239,230,0.6); }
.breadcrumb--light a:hover { color: var(--gold-hi); }
@media (max-width: 860px){
  .subhero__body { grid-column: 1 / -1; }
  .subhero__media { grid-column: 1 / -1; max-width: 460px; }
  .subhero__media .ph { aspect-ratio: 16/10; }
}

/* ---------- Service blocks (hub cards with bullets) ---------- */
.svc-blocks { margin-top: 56px; }
.svc-block {
  grid-column: span 4;
  border: 1px solid var(--line);
  background: var(--white);
  display: flex; flex-direction: column;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.svc-block:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: 0 26px 50px -30px rgba(14,38,32,0.4); }
.svc-block__img { aspect-ratio: 16/10; border: 0; border-bottom: 1px solid var(--line); }
.svc-block__inner { padding: 30px 30px 32px; display: flex; flex-direction: column; flex: 1; }
.svc-block .b-eyebrow { font-family: ui-monospace, Menlo, monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.svc-block h3 { font-size: clamp(1.35rem, 1.9vw, 1.7rem); margin: 12px 0 14px; }
.svc-block p { font-weight: 300; color: var(--ink-2); font-size: 16px; }
.svc-list { list-style: none; margin: 6px 0 26px; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.svc-list li { position: relative; padding-left: 22px; font-size: 15px; color: var(--ink); }
.svc-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 9px; height: 9px; background: var(--gold); }
.svc-block .arrow-link { margin-top: auto; }
@media (max-width: 880px){ .svc-block { grid-column: span 12; } }

/* ---------- USP tiles ---------- */
.usp-intro { max-width: 64ch; margin-top: 18px; }
.usp-grid { margin-top: 52px; }
.usp-tile {
  grid-column: span 3;
  border: 1px solid var(--line-dark);
  padding: 28px 26px 30px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .25s ease, background .25s ease;
}
.usp-tile:hover { border-color: var(--gold); background: var(--green-2); }
.usp-tile .u-num { font-family: ui-monospace, Menlo, monospace; font-size: 12px; color: var(--gold); letter-spacing: 0.1em; }
.usp-tile h3 { font-size: 1.3rem; }
.usp-tile p { font-weight: 300; color: rgba(244,239,230,0.8); font-size: 15.5px; margin: 0; }
@media (max-width: 900px){ .usp-tile { grid-column: span 6; } }
@media (max-width: 520px){ .usp-tile { grid-column: span 12; } }
.usp-tagline {
  margin-top: 48px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  letter-spacing: -0.02em;
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 20px;
}
.usp-tagline .dot-sep { color: var(--gold); }

/* ---------- Process reference list (numbered) ---------- */
.proc-wrap { margin-top: 48px; }
.proc-list { list-style: none; counter-reset: proc; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 clamp(40px, 6vw, 90px); }
.proc-list li {
  counter-increment: proc;
  display: flex; align-items: baseline; gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  font-size: 1.15rem;
}
.proc-list li::before {
  content: counter(proc, decimal-leading-zero);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: -0.02em;
  min-width: 1.8em;
}
@media (max-width: 700px){ .proc-list { grid-template-columns: 1fr; } }

/* ---------- Big CTA band ---------- */
.cta-band { text-align: center; max-width: 64ch; margin-inline: auto; }
.cta-band h2 { font-weight: 700; font-size: clamp(2rem, 4.4vw, 3.4rem); letter-spacing: -0.035em; }
.cta-band .lead { margin: 22px auto 0; color: rgba(244,239,230,0.84); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 18px 28px; align-items: center; justify-content: center; margin-top: 38px; }
.cta-phone { font-family: var(--display); font-weight: 600; font-size: 1.4rem; letter-spacing: -0.02em; color: var(--gold-hi); }
.cta-phone:hover { color: var(--gold); }

/* ---------- FAQ accordion-free (reuse homepage faq markup) ---------- */
.related {
  margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--line);
}
.related h2 { font-size: 1.3rem; margin-bottom: 22px; }
.related__links { display: flex; flex-wrap: wrap; gap: 14px; }
.related__links a {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid var(--line);
  padding: 12px 18px;
  font-weight: 500; font-size: 15px;
  transition: border-color .2s ease, color .2s ease;
}
.related__links a:hover { border-color: var(--gold); color: var(--gold); }
.related__links a .arw { color: var(--gold); }

/* ---------- Detail page: numbered phase list (title + explanation) ---------- */
.phase-list { list-style: none; counter-reset: ph; margin: 40px 0 0; padding: 0; }
.phase-list li {
  counter-increment: ph;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.phase-list li::before {
  content: counter(ph, decimal-leading-zero);
  grid-row: 1 / span 2;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  letter-spacing: -0.02em;
  color: var(--gold);
  line-height: 1;
}
.phase-list .ph-title { font-family: var(--display); font-weight: 600; font-size: 1.2rem; letter-spacing: -0.01em; align-self: center; }
.phase-list .ph-desc { font-weight: 300; color: var(--ink-2); font-size: 16px; margin: 0; max-width: 70ch; }
.band--green .phase-list li, .band--green-deep .phase-list li { border-top-color: var(--line-dark); }
.band--green .phase-list .ph-title, .band--green-deep .phase-list .ph-title { color: var(--sand); }
.band--green .phase-list .ph-desc, .band--green-deep .phase-list .ph-desc { color: rgba(244,239,230,0.78); }
@media (max-width: 560px){
  .phase-list li { grid-template-columns: 1fr; gap: 6px; }
  .phase-list li::before { grid-row: auto; }
}

/* ---------- Bullet list (leistungsumfang) ---------- */
.bullets { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 14px; }
.bullets li { position: relative; padding-left: 26px; font-weight: 300; font-size: 16.5px; color: var(--ink); max-width: 66ch; }
.bullets li::before { content: ""; position: absolute; left: 0; top: 10px; width: 10px; height: 10px; background: var(--gold); }
.band--green .bullets li, .band--green-deep .bullets li { color: rgba(244,239,230,0.86); }

/* ---------- Comparison table ---------- */
.cmp-table-wrap { margin-top: 40px; overflow-x: auto; }
.cmp-table { width: 100%; border-collapse: collapse; font-size: 15.5px; min-width: 560px; }
.cmp-table thead th {
  text-align: left;
  font-family: var(--body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-hi);
  padding: 0 22px 16px 0;
  border-bottom: 2px solid var(--gold);
}
.cmp-table tbody td { padding: 18px 22px 18px 0; border-bottom: 1px solid var(--line-dark); vertical-align: top; font-weight: 300; color: rgba(244,239,230,0.88); }
.cmp-table tbody td:first-child { font-weight: 500; color: var(--sand); }
.cmp-table tbody td b { color: var(--gold-hi); font-weight: 600; }
/* light-band variant */
.band--white .cmp-table tbody td, .band--sand .cmp-table tbody td { color: var(--ink-2); border-bottom-color: var(--line); }
.band--white .cmp-table tbody td:first-child, .band--sand .cmp-table tbody td:first-child { color: var(--ink); }
.band--white .cmp-table thead th, .band--sand .cmp-table thead th { color: var(--gold); }

/* boxed table with dark header row (on light bands) */
.cmp-table--boxed { border: 1px solid var(--line); }
.cmp-table--boxed thead th {
  background: var(--green-deep);
  color: var(--sand);
  font-family: var(--body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 22px;
  border-bottom: 0;
  border-right: 1px solid var(--line-dark);
}
.cmp-table--boxed thead th:last-child { border-right: 0; }
.cmp-table--boxed tbody td {
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  color: var(--ink-2);
}
.cmp-table--boxed tbody td:last-child { border-right: 0; }
.cmp-table--boxed tbody tr:last-child td { border-bottom: 0; }
.cmp-table--boxed tbody td:first-child { color: var(--ink); font-weight: 600; }

/* ---------- Simple internal-link cards (no image) ---------- */
.linkcards { margin-top: 52px; }
.linkcard {
  grid-column: span 4;
  border: 1px solid var(--line-dark);
  padding: 30px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}
.linkcard:hover { border-color: var(--gold); transform: translateY(-4px); background: var(--green-2); }
.linkcard h3 { font-size: 1.35rem; }
.linkcard p { font-weight: 300; color: rgba(244,239,230,0.78); font-size: 15.5px; margin: 0; flex: 1; }
.linkcard .arrow-link { margin-top: 8px; }
@media (max-width: 800px){ .linkcard { grid-column: span 12; } }

/* ---------- Inline note ---------- */
.inline-note {
  border-left: 3px solid var(--gold);
  padding: 14px 0 14px 20px;
  margin: 28px 0 0;
  font-size: 15px;
  color: var(--ink-2);
  font-weight: 300;
}
.band--green .inline-note, .band--green-deep .inline-note { color: rgba(244,239,230,0.8); }
.todo-ph { color: var(--gold); font-weight: 500; }

/* ---------- Gold CTA band ---------- */
.band--gold { background: var(--gold); color: var(--green-deep); }
.band--gold .eyebrow { color: var(--green-deep); }
.band--gold .eyebrow::before { background: var(--green-deep); }
.band--gold .lead { color: rgba(14,38,32,0.82); }
.band--gold .cta-phone { color: var(--green-deep); }
.band--gold .cta-phone:hover { color: var(--white); }
.btn--dark { background: var(--green-deep); color: var(--sand); }
.btn--dark:hover { background: var(--green); }

/* ---------- FAQ details/summary accordion ---------- */
.faq-acc { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 24px;
  padding: 26px 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary .fq-ic {
  flex: 0 0 auto;
  width: 26px; height: 26px; position: relative; margin-top: 4px;
}
.faq-item > summary .fq-ic::before,
.faq-item > summary .fq-ic::after {
  content: ""; position: absolute; background: var(--gold); transition: transform .3s ease, opacity .3s ease;
}
.faq-item > summary .fq-ic::before { top: 12px; left: 3px; width: 20px; height: 2px; }
.faq-item > summary .fq-ic::after { left: 12px; top: 3px; width: 2px; height: 20px; }
.faq-item[open] > summary .fq-ic::after { transform: scaleY(0); opacity: 0; }
.faq-item__body { padding: 0 0 28px; }
.faq-item__body p { font-weight: 300; color: var(--ink-2); margin: 0; max-width: 78ch; }
.no-js .faq-item__body { padding-top: 4px; }

/* ---------- Info note (eckiger Hinweis) ---------- */
.info-note {
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  background: var(--white);
  padding: 16px 20px;
  font-size: 14.5px;
  color: var(--ink-2);
  font-weight: 300;
  margin-top: 28px;
}
.band--green .info-note, .band--green-deep .info-note { background: rgba(255,255,255,0.04); border-color: var(--line-dark); color: rgba(244,239,230,0.78); }

/* ---------- Filter bar ---------- */
.filterbar { margin-top: 40px; display: flex; flex-direction: column; gap: 22px; }
.filter-group { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.filter-group__label {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
  width: 110px; flex: 0 0 110px;
}
.filter-btn {
  font-family: var(--body);
  font-weight: 500;
  font-size: 14px;
  padding: 9px 16px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn[aria-pressed="true"] { background: var(--gold); color: var(--green-deep); border-color: var(--gold); }
.filter-reset { margin-top: 4px; }
@media (max-width: 560px){
  .filter-group__label { width: 100%; flex-basis: 100%; }
}

/* ---------- Reference project grid ---------- */
.ref-grid2 { margin-top: 48px; gap: var(--col-gap) var(--col-gap); }
.ref-card {
  grid-column: span 6;
  border: 1px solid var(--line);
  background: var(--white);
  display: flex; flex-direction: column;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.ref-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 26px 50px -34px rgba(14,38,32,0.4); }
.ref-card__img { position: relative; aspect-ratio: 16/10; border: 0; border-bottom: 1px solid var(--line); overflow: hidden; }
.ref-card__img .ph__cap { transition: opacity .3s ease; }
.ref-card__over {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,38,32,0) 40%, rgba(14,38,32,0.86) 100%);
  opacity: 0; transition: opacity .35s ease;
  display: flex; align-items: flex-end; padding: 20px;
}
.ref-card__over span { color: var(--gold-hi); font-family: ui-monospace, Menlo, monospace; font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; }
.ref-card:hover .ref-card__img .ph__cap, .ref-card:focus-within .ref-card__img .ph__cap { opacity: 0; }
.ref-card:hover .ref-card__over, .ref-card:focus-within .ref-card__over { opacity: 1; }
.ref-card__body { padding: 24px 26px 26px; display: flex; flex-direction: column; gap: 0; flex: 1; }
.ref-card__tag { font-family: ui-monospace, Menlo, monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.ref-card__body h3 { font-size: 1.3rem; margin: 12px 0 8px; line-height: 1.12; }
.ref-card__loc { font-size: 14px; color: var(--ink); font-weight: 500; margin-bottom: 16px; }
.ref-card__meta { font-size: 13px; color: var(--ink-2); font-weight: 300; line-height: 1.6; border-top: 1px solid var(--line); padding-top: 14px; margin-top: auto; }
.ref-card__marker { margin-top: 14px; font-family: ui-monospace, Menlo, monospace; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-2); border: 1px solid var(--line); padding: 4px 8px; align-self: flex-start; }
@media (max-width: 760px){ .ref-card { grid-column: span 12; } }

.no-results {
  display: none;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  padding: 28px 30px;
  margin-top: 40px;
  background: var(--white);
}
.no-results.show { display: block; }
.no-results strong { font-family: var(--display); font-weight: 600; font-size: 1.15rem; }

/* ---------- Kennzahlen ---------- */
.kpi-grid { margin-top: 44px; }
.kpi {
  grid-column: span 3;
  border-top: 1px solid var(--line-dark);
  padding-top: 24px;
}
.kpi .kpi-num { font-family: var(--display); font-weight: 700; font-size: clamp(2.4rem, 4vw, 3.4rem); letter-spacing: -0.03em; color: var(--gold-hi); line-height: 1; }
.kpi .kpi-label { margin-top: 12px; font-size: 15px; font-weight: 300; color: rgba(244,239,230,0.82); }
@media (max-width: 760px){ .kpi { grid-column: span 6; } }
@media (max-width: 420px){ .kpi { grid-column: span 12; } }

/* ---------- Trust band links ---------- */
.trust-links { display: flex; flex-wrap: wrap; gap: 14px 32px; margin-top: 28px; }

/* ---------- Value cards (light band) ---------- */
.value-grid { margin-top: 52px; }
.value-card {
  grid-column: span 3;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 30px 28px 32px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .25s ease, transform .25s ease;
}
.value-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.value-card .v-num { font-family: ui-monospace, Menlo, monospace; font-size: 12px; letter-spacing: 0.1em; color: var(--gold); }
.value-card h3 { font-size: 1.35rem; }
.value-card p { font-weight: 300; color: var(--ink-2); font-size: 15.5px; margin: 0; }
@media (max-width: 900px){ .value-card { grid-column: span 6; } }
@media (max-width: 520px){ .value-card { grid-column: span 12; } }

/* ---------- Team grid ---------- */
.team-grid { margin-top: 52px; }
.team-card { grid-column: span 3; display: flex; flex-direction: column; }
.team-card__img { aspect-ratio: 3/4; margin-bottom: 18px; }
.team-card .t-name { font-family: var(--display); font-weight: 600; font-size: 1.2rem; letter-spacing: -0.01em; }
.team-card .t-role { font-size: 14px; color: var(--gold); font-weight: 500; margin-top: 4px; }
@media (max-width: 860px){ .team-card { grid-column: span 6; } }
@media (max-width: 460px){ .team-card { grid-column: span 12; max-width: 360px; } }

/* ---------- KPI placeholder (monospace) ---------- */
.kpi .kpi-num--ph { font-family: ui-monospace, Menlo, monospace; font-size: clamp(1.2rem, 2vw, 1.7rem); font-weight: 500; letter-spacing: 0; }

/* ---------- Standalone note block (eckig) ---------- */
.note-block {
  border: 1px solid var(--line-dark);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  margin-top: 32px;
  font-size: 15px;
  color: rgba(244,239,230,0.82);
  font-weight: 300;
  max-width: 60ch;
}
.note-block .nb-label { display: block; font-family: ui-monospace, Menlo, monospace; font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }

/* ---------- Address card ---------- */
.nap address { font-style: normal; line-height: 2; font-size: 1.05rem; }
.nap address a:hover { color: var(--gold); }
.nap .nap-line { display: flex; gap: 12px; }
.nap .nap-line .k { color: var(--ink-2); min-width: 78px; }

/* ---------- Job board cards ---------- */
.job-grid { margin-top: 40px; gap: var(--col-gap); }
.job-card {
  grid-column: span 6;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 30px 32px;
  display: flex; flex-direction: column;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.job-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 24px 48px -32px rgba(14,38,32,0.4); }
.job-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.job-card__meta { display: flex; flex-wrap: wrap; gap: 8px 10px; margin-bottom: 16px; }
.job-card__meta span {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 11px; letter-spacing: 0.06em;
  color: var(--ink-2);
  border: 1px solid var(--line);
  padding: 5px 10px;
}
.job-card__meta span.is-loc { color: var(--gold); border-color: var(--gold); }
.job-card p { font-weight: 300; color: var(--ink-2); font-size: 15.5px; flex: 1; }
.job-card .arrow-link { margin-top: 18px; }
@media (max-width: 760px){ .job-card { grid-column: span 12; } }

/* ---------- Checkbox & file field ---------- */
.field--check { display: flex; align-items: flex-start; gap: 12px; }
.field--check input { width: auto; margin-top: 3px; flex: 0 0 auto; }
.field--check label { margin-bottom: 0; font-weight: 300; color: var(--ink-2); font-size: 14.5px; }
.field--check.invalid label { color: #b3261e; }
.field input[type="file"] { padding: 12px; background: var(--sand); cursor: pointer; }
.field input[type="file"]::file-selector-button {
  font-family: var(--body); font-weight: 600; font-size: 13px;
  background: var(--green); color: var(--sand);
  border: 0; padding: 9px 14px; margin-right: 14px; cursor: pointer;
}

/* ---------- Contact aside card ---------- */
.contact-aside {
  border: 1px solid var(--line);
  background: var(--white);
  padding: clamp(28px, 3vw, 40px);
}
.contact-aside .info-block { padding: 18px 0; }
.contact-aside .partner { display: flex; gap: 16px; align-items: center; margin-top: 4px; }
.contact-aside .partner__img { width: 84px; height: 100px; flex: 0 0 auto; }
.contact-aside .partner__name { font-family: var(--display); font-weight: 600; font-size: 1.05rem; }
.contact-aside .partner__role { font-size: 13.5px; color: var(--gold); }
.contact-aside .partner__ph { margin-top: 10px; font-size: 12.5px; color: var(--ink-2); font-weight: 300; }
.contact-aside .partner__ph .todo-ph { color: var(--gold); font-weight: 500; }
.hours-line { display: flex; gap: 14px; font-size: 15px; }
.hours-line .k { color: var(--ink-2); min-width: 64px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
