/* ui_kits/website/site.css
   Component-level styling that consumes design tokens from colors_and_type.css.
   Class names use the bdl- prefix so they don't collide with anything else. */

/* ---------- Layout primitives ---------- */
.bdl-container        { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.bdl-container.narrow { max-width: var(--container-narrow); }

.bdl-rule {
  width: 56px; height: 2px; background: var(--gold-500);
  margin: var(--space-5) 0; border: none;
}
.bdl-rule--sm   { width: 32px; height: 1px; margin: var(--space-3) 0 var(--space-4); }
.bdl-rule--center { margin-left: auto; margin-right: auto; }

/* ---------- Buttons (used in mock) ---------- */
.btn {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 14px; letter-spacing: 0.04em;
  border: none; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; white-space: nowrap;
  border-radius: var(--radius-md);
  padding: 14px 22px;
  transition: background var(--dur) var(--ease-out),
              color      var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out),
              transform 100ms var(--ease-out);
}
.btn:active { transform: translateY(1px); }
.btn-primary   { background: var(--gold-500); color: #fff; }
.btn-primary:hover   { background: var(--gold-600); }
.btn-secondary { background: transparent; color: var(--gold-700); border: 1px solid var(--gold-500); }
.btn-secondary:hover { background: var(--gold-50); border-color: var(--gold-600); color: var(--gold-800); }

/* ============================================================
   Header
   ============================================================ */
.bdl-header {
  background: var(--cream-100);
  border-bottom: 1px solid var(--border-soft);
}
.bdl-header__inner {
  display: flex; align-items: center;
  height: var(--header-h); gap: var(--space-6);
}
.bdl-header__logo { flex: 0 0 auto; border: none; }
.bdl-header__logo img { height: 104px; display: block; }

.bdl-header__nav {
  display: flex; gap: var(--space-4);
  margin: 0 auto;
  flex-wrap: nowrap;
}
.bdl-header__nav-item {
  font-family: var(--font-sans); font-size: 14px; font-weight: 400;
  color: var(--ink-700); border: none;
  padding: 6px 2px;
  position: relative;
  white-space: nowrap;
  transition: color var(--dur) var(--ease-out);
}
.bdl-header__nav-item:hover { color: var(--gold-700); }
.bdl-header__nav-item.is-active { color: var(--ink-900); font-weight: 700; }
.bdl-header__nav-item.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--gold-500);
}

.bdl-header__phone {
  display: flex; flex-direction: column; align-items: flex-end;
  flex: 0 0 auto; white-space: nowrap;
  text-decoration: none; border: 1px solid var(--gold-300);
  padding: 7px 13px; border-radius: var(--radius-md); line-height: 1;
  background: #fff; transition: border-color var(--dur) var(--ease-out);
}
.bdl-header__phone:hover { border-color: var(--gold-500); }
.bdl-header__phone-label {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-600); margin-bottom: 4px;
}
.bdl-header__phone-num {
  font-family: var(--font-sans); font-weight: 700; font-size: 12px;
  color: var(--ink-900); font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* ============================================================
   Hero
   ============================================================ */
.bdl-hero {
  position: relative; overflow: hidden;
  background: var(--cream-100);
  padding: var(--space-9) 0 var(--space-10);
}
.bdl-hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: var(--space-8);
  align-items: center;
}
.bdl-hero__copy { max-width: 720px; }
.bdl-hero__portrait {
  margin: 0;
  display: flex; flex-direction: column; gap: 18px;
  align-self: center;
}
.bdl-hero__portrait-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-200);
  aspect-ratio: 4 / 5;
  box-shadow: 0 20px 50px -24px rgba(74, 65, 55, 0.35),
              0 2px 8px rgba(74, 65, 55, 0.08);
}
.bdl-hero__portrait-frame::after {
  /* hairline gold inset frame */
  content: ""; position: absolute; inset: 0;
  border: 1px solid rgba(184, 154, 106, 0.35);
  border-radius: inherit; pointer-events: none;
}
.bdl-hero__portrait-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  /* Subject is centered — keep them in the upper-middle of the crop */
  object-position: 50% 35%;
}
.bdl-hero__portrait-caption {
  display: flex; flex-direction: column; gap: 4px;
  padding-left: 2px;
}
.bdl-hero__portrait-caption .eyebrow { margin: 0 0 4px; }
.bdl-hero__portrait-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.bdl-hero__portrait-names {
  font-family: var(--font-serif); font-weight: 500; font-style: italic;
  font-size: 20px; color: var(--ink-900); line-height: 1.2;
  letter-spacing: -0.005em;
}
.bdl-hero__title {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1.04; letter-spacing: -0.01em;
  color: var(--ink-900); margin: 18px 0 24px; text-wrap: balance;
}
.bdl-hero__title em { font-style: italic; color: var(--gold-700); font-weight: 500; }
.bdl-hero__lead {
  font-family: var(--font-sans); font-size: 19px; line-height: 1.65;
  color: var(--ink-700); max-width: 620px; margin: 0 0 var(--space-6);
}
.bdl-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.bdl-hero__sub {
  font-family: var(--font-sans); font-size: 13px;
  color: var(--ink-500); letter-spacing: 0.02em; margin: 0;
}

/* ============================================================
   Partner strip
   ============================================================ */
.bdl-partners {
  background: var(--white);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: var(--space-7) 0;
}
.bdl-partners__eyebrow { text-align: center; margin-bottom: var(--space-5); }
.bdl-partners__pyramid {
  display: flex; flex-direction: column; align-items: center;
  gap: var(--space-5);
  max-width: 880px; margin: 0 auto;
}
.bdl-partners__pyramid-top {
  display: flex; justify-content: center;
  width: 100%;
}
.bdl-partners__pyramid-top .bdl-partners__cell {
  width: clamp(280px, 38%, 360px);
}
.bdl-partners__pyramid-bottom {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  width: 100%;
  max-width: 720px;
}
.bdl-partners__cell {
  height: 100px; display: flex; align-items: center; justify-content: center;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  background: var(--cream-50);
}
.bdl-partners__cell--lg { height: 120px; }
.bdl-partners__cell img { max-height: 68px; max-width: 90%; object-fit: contain; opacity: 0.88; transition: opacity var(--dur) var(--ease-out); }
.bdl-partners__cell--lg img { max-height: 84px; }
.bdl-partners__cell:hover img { opacity: 1; }
.bdl-partners__cell.has-logo { border-style: solid; border-color: var(--border-soft); background: #fff; }
.bdl-partners__placeholder {
  font-family: var(--font-sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-400);
}

/* ============================================================
   Section helpers
   ============================================================ */
.bdl-section { padding: var(--space-9) 0; position: relative; overflow: hidden; }
.bdl-section--cream { background: var(--cream-100); }
.bdl-section--white { background: var(--white); }

.bdl-section__head {
  text-align: center; max-width: 680px; margin: 0 auto var(--space-7);
}
.bdl-section__head .eyebrow { margin-bottom: 14px; }
.bdl-section__title {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.12; letter-spacing: -0.01em;
  color: var(--ink-900); margin: 0 0 var(--space-4);
  text-wrap: balance;
}
.bdl-section__title em { font-style: italic; color: var(--gold-700); font-weight: 500; }
.bdl-section__lead {
  font-family: var(--font-sans); font-size: 17px; line-height: 1.65;
  color: var(--ink-700); margin: 0 auto; max-width: 600px;
}

/* ============================================================
   Service card
   ============================================================ */
.bdl-service {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out);
  text-decoration: none; border-bottom: 1px solid var(--border);
  position: relative;
}
.bdl-service:hover { border-color: var(--gold-300); box-shadow: var(--shadow-md); }
.bdl-service__mark {
  position: absolute; top: 22px; right: 22px;
  width: 36px; height: 36px; opacity: 0.7;
}
.bdl-service__mark img { width: 100%; height: 100%; }
.bdl-service__title {
  font-family: var(--font-serif); font-weight: 500;
  font-size: 26px; line-height: 1.15; letter-spacing: -0.01em;
  color: var(--ink-900); margin: 6px 0 0;
}
.bdl-service__title em { font-style: italic; color: var(--gold-700); font-weight: 500; }
.bdl-service__body {
  font-family: var(--font-sans); font-size: 15px; line-height: 1.6;
  color: var(--ink-700); margin: 0 0 var(--space-5);
}
.bdl-service__link {
  font-family: var(--font-sans); font-weight: 700; font-size: 13px;
  letter-spacing: 0.04em; color: var(--gold-700); margin-top: auto;
  transition: color var(--dur) var(--ease-out);
}
.bdl-service:hover .bdl-service__link { color: var(--gold-800); }

.bdl-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }

/* Scope note — clarifies what we DON'T do, below the service grid */
.bdl-scope-note {
  margin-top: var(--space-7);
  padding: var(--space-5) var(--space-6);
  border: 1px solid var(--gold-200);
  border-radius: var(--radius-lg);
  background: rgba(184, 154, 106, 0.04);
  max-width: 760px; margin-left: auto; margin-right: auto;
  text-align: center;
}
.bdl-scope-note .eyebrow { display: block; margin-bottom: 8px; }
.bdl-scope-note p {
  font-family: var(--font-sans); font-size: 15px; line-height: 1.65;
  color: var(--ink-700); margin: 0;
}
.bdl-scope-note strong { color: var(--ink-900); font-weight: 700; }

/* ============================================================
   Team
   ============================================================ */
.bdl-team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }
.bdl-team-grid--lead {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px; margin: 0 auto;
  gap: var(--space-7);
}
.bdl-team-card { display: flex; flex-direction: column; gap: 14px; }
.bdl-team-card__photo {
  aspect-ratio: 3 / 4; background: var(--cream-200);
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  border: 1px solid var(--border-soft);
}
.bdl-team-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bdl-team-card__placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-200);
}
.bdl-team-card__placeholder img { width: 60%; opacity: 0.25; mix-blend-mode: multiply; }
.bdl-team-card__name {
  font-family: var(--font-serif); font-weight: 500;
  font-size: 22px; line-height: 1.2; color: var(--ink-900);
  margin: 0; letter-spacing: -0.01em;
}
.bdl-team-card__role {
  font-family: var(--font-sans); font-size: 14px; font-weight: 700;
  color: var(--gold-700); margin-top: 2px;
}
.bdl-team-card__qual {
  font-family: var(--font-sans); font-size: 13px;
  color: var(--ink-500); margin-top: 2px; font-style: italic;
}

/* ============================================================
   Pull quote
   ============================================================ */
.bdl-quote {
  max-width: 800px; margin: 0 auto;
  text-align: center; position: relative; padding: var(--space-5) 0;
}
.bdl-quote__mark {
  font-family: var(--font-serif); font-style: italic;
  font-size: 120px; line-height: 0.7;
  color: var(--gold-300); display: block;
}
.bdl-quote__text {
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.35;
  color: var(--ink-900); margin: 12px 0 var(--space-5);
  letter-spacing: -0.005em; text-wrap: balance;
}
.bdl-quote__by {
  font-family: var(--font-sans); font-size: 13px;
  color: var(--ink-500); display: flex; gap: 12px; justify-content: center; align-items: center;
}
.bdl-quote__by strong { color: var(--ink-900); font-weight: 700; }
.bdl-quote__rule { display: inline-block; width: 28px; height: 1px; background: var(--gold-500); }

/* ============================================================
   Footer
   ============================================================ */
.bdl-footer {
  background: var(--cream-100);
  border-top: 1px solid var(--border-soft);
  padding: var(--space-7) 0 var(--space-6);
  text-align: center;
}
.bdl-footer__inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.bdl-footer__logo img { height: 56px; display: block; margin-bottom: 8px; }
.bdl-footer__line {
  font-family: var(--font-sans); font-size: 13px; color: var(--ink-700);
  line-height: 1.6; max-width: 920px;
}
.bdl-footer__line a { color: var(--gold-700); border-bottom-color: transparent; }
.bdl-footer__line a:hover { border-bottom-color: var(--gold-500); }
.bdl-footer__line strong { color: var(--ink-900); font-weight: 700; }
.bdl-footer__line--meta { color: var(--ink-500); }
.bdl-footer__legal {
  font-family: var(--font-sans); font-size: 12px; color: var(--ink-500);
  margin-top: 12px;
}
.bdl-footer__legal a { color: var(--ink-500); border-bottom-color: transparent; }
.bdl-footer__legal a:hover { color: var(--gold-700); border-bottom-color: var(--gold-300); }

/* ============================================================
   Page header (sub-pages)
   ============================================================ */
.bdl-page-header {
  background: var(--cream-100);
  border-bottom: 1px solid var(--border-soft);
  padding: var(--space-9) 0 var(--space-7);
  position: relative; overflow: hidden;
}
.bdl-page-header__inner { position: relative; z-index: 1; max-width: 860px; }
.bdl-page-header__title {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  line-height: 1.06; letter-spacing: -0.01em;
  color: var(--ink-900); margin: 14px 0 18px; text-wrap: balance;
}
.bdl-page-header__title em { font-style: italic; color: var(--gold-700); font-weight: 500; }
.bdl-page-header__lead {
  font-family: var(--font-sans); font-size: 18px; line-height: 1.65;
  color: var(--ink-700); max-width: 680px; margin: 0;
}

/* ============================================================
   Timeline (Unsere Geschichte)
   ============================================================ */
.bdl-timeline { list-style: none; margin: 0 auto; padding: 0; max-width: 760px; position: relative; }
.bdl-timeline::before {
  content: ""; position: absolute; left: 120px; top: 12px; bottom: 12px;
  width: 1px; background: var(--gold-200);
}
.bdl-timeline__item {
  display: grid; grid-template-columns: 96px 24px 1fr;
  gap: 24px; align-items: start;
  padding: var(--space-5) 0;
  position: relative;
}
.bdl-timeline__year {
  font-family: var(--font-serif); font-weight: 500; font-style: italic;
  font-size: 28px; color: var(--gold-700); line-height: 1;
  text-align: right; padding-top: 2px;
}
.bdl-timeline__dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold-500); border: 3px solid var(--cream-100);
  margin-top: 6px; justify-self: center;
  box-shadow: 0 0 0 1px var(--gold-300);
}
.bdl-timeline__title {
  font-family: var(--font-serif); font-weight: 500;
  font-size: 24px; line-height: 1.2; color: var(--ink-900); margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.bdl-timeline__title em { font-style: italic; color: var(--gold-700); font-weight: 500; }
.bdl-timeline__text {
  font-family: var(--font-sans); font-size: 15px; line-height: 1.65;
  color: var(--ink-700); margin: 0;
}

/* ============================================================
   Value card (Werte)
   ============================================================ */
.bdl-value {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-6);
  display: flex; flex-direction: column;
}
.bdl-value__title {
  font-family: var(--font-serif); font-weight: 500;
  font-size: 24px; line-height: 1.2; color: var(--ink-900);
  margin: 0; letter-spacing: -0.005em;
}
.bdl-value__title em { font-style: italic; color: var(--gold-700); font-weight: 500; }
.bdl-value__body {
  font-family: var(--font-sans); font-size: 15px; line-height: 1.65;
  color: var(--ink-700); margin: 0;
}
.bdl-value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }

/* ============================================================
   Job card (Karriere)
   ============================================================ */
.bdl-job {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-4);
  transition: border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.bdl-job:hover { border-color: var(--gold-300); box-shadow: var(--shadow-sm); }
.bdl-job__head { display: flex; flex-direction: column; gap: 14px; }
.bdl-job__title {
  font-family: var(--font-serif); font-weight: 500;
  font-size: 28px; line-height: 1.15; color: var(--ink-900); margin: 0;
  letter-spacing: -0.005em;
}
.bdl-job__title em { font-style: italic; color: var(--gold-700); font-weight: 500; }
.bdl-job__facts {
  display: flex; flex-wrap: wrap; gap: 18px 28px;
  font-family: var(--font-sans); font-size: 13px; color: var(--ink-500);
}
.bdl-job__facts strong {
  display: block; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-600); font-weight: 700; margin-bottom: 2px;
}
.bdl-job__body {
  font-family: var(--font-sans); font-size: 15px; line-height: 1.65;
  color: var(--ink-700); margin: 0;
}
.bdl-job__cta {
  align-self: flex-start;
  font-family: var(--font-sans); font-weight: 700; font-size: 13px;
  letter-spacing: 0.04em; color: var(--gold-700);
  border: none; padding-top: 4px;
}
.bdl-job__cta:hover { color: var(--gold-800); }

/* ============================================================
   Contact block
   ============================================================ */
.bdl-contact-block {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6) var(--space-7);
}
.bdl-contact-block__row .eyebrow { margin-bottom: 8px; }
.bdl-contact-block__row p {
  font-family: var(--font-sans); font-size: 15px; line-height: 1.65;
  color: var(--ink-700); margin: 0;
}
.bdl-contact-block__row strong { color: var(--ink-900); font-weight: 700; }
.bdl-contact-block__hint { color: var(--ink-500); font-size: 13px; font-style: italic; }

/* ============================================================
   Forms (static mocks — Claude Code wires real handlers)
   ============================================================ */
.bdl-form { display: flex; flex-direction: column; gap: var(--space-4); }
.bdl-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.bdl-field { display: flex; flex-direction: column; gap: 6px; }
.bdl-field__label {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-700);
}
.bdl-field__label em { color: var(--gold-700); font-style: normal; }
.bdl-field__input {
  font-family: var(--font-sans); font-size: 15px; color: var(--ink-900);
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 12px 14px;
  transition: border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.bdl-field__input:hover { border-color: var(--gold-300); }
.bdl-field__input:focus {
  outline: none; border-color: var(--gold-500);
  box-shadow: 0 0 0 3px var(--gold-100);
}
.bdl-field__input--area { resize: vertical; min-height: 140px; line-height: 1.55; }
.bdl-field__input--file { padding: 10px 14px; cursor: pointer; }
.bdl-field__hint {
  font-family: var(--font-sans); font-size: 12px; color: var(--ink-500); font-style: italic;
}
.bdl-field--check {
  flex-direction: row; align-items: flex-start; gap: 12px;
  font-family: var(--font-sans); font-size: 13px; color: var(--ink-700); line-height: 1.55;
}
.bdl-field--check input[type="checkbox"] {
  margin-top: 3px; width: 16px; height: 16px;
  accent-color: var(--gold-500); flex: 0 0 auto;
}
.bdl-form__actions {
  display: flex; align-items: center; gap: var(--space-5);
  flex-wrap: wrap; margin-top: var(--space-3);
}
.bdl-form__hint {
  font-family: var(--font-sans); font-size: 12px; color: var(--ink-500);
}
.bdl-form__hint em { color: var(--gold-700); font-style: normal; }

/* ============================================================
   CTA band
   ============================================================ */
.bdl-cta-band {
  background: var(--cream-100); padding: var(--space-9) 0;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft);
}
.bdl-cta-band__inner {
  position: relative; z-index: 1; text-align: center; max-width: 720px;
}
.bdl-cta-band__title {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.12; letter-spacing: -0.01em;
  color: var(--ink-900); margin: 14px 0 18px; text-wrap: balance;
}
.bdl-cta-band__title em { font-style: italic; color: var(--gold-700); font-weight: 500; }
.bdl-cta-band__body {
  font-family: var(--font-sans); font-size: 17px; line-height: 1.65;
  color: var(--ink-700); margin: 0 0 var(--space-6); max-width: 580px;
  margin-left: auto; margin-right: auto;
}
.bdl-cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.bdl-cta-band__actions .btn { text-decoration: none; }

/* ============================================================
   FAQ
   ============================================================ */
.bdl-faq { max-width: 760px; margin: 0 auto; }
.bdl-faq__item {
  border-top: 1px solid var(--border-soft);
  padding: 0;
}
.bdl-faq__item:last-child { border-bottom: 1px solid var(--border-soft); }
.bdl-faq__q {
  list-style: none; cursor: pointer; padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-family: var(--font-serif); font-weight: 500;
  font-size: 22px; line-height: 1.3; color: var(--ink-900);
  letter-spacing: -0.005em;
}
.bdl-faq__q::-webkit-details-marker { display: none; }
.bdl-faq__chev {
  font-family: var(--font-sans); font-weight: 300; font-size: 28px;
  color: var(--gold-600); line-height: 1; transition: transform var(--dur) var(--ease-out);
  flex: 0 0 auto;
}
.bdl-faq__item[open] .bdl-faq__chev { transform: rotate(45deg); }
.bdl-faq__a { padding: 0 0 22px; }
.bdl-faq__a p {
  font-family: var(--font-sans); font-size: 15px; line-height: 1.7;
  color: var(--ink-700); margin: 0 0 12px;
}
.bdl-faq__a p:last-child { margin-bottom: 0; }

/* ============================================================
   Service detail (alternating text/image rows on Leistungen)
   ============================================================ */
.bdl-detail { padding: var(--space-7) 0; position: relative; }
.bdl-detail + .bdl-detail { border-top: 1px solid var(--border-soft); }
.bdl-detail__grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--space-7) var(--space-8);
  align-items: start;
}
.bdl-detail__head { position: relative; }
.bdl-detail__head .bdl-rule { margin-top: 18px; }
.bdl-detail__copy { max-width: 560px; }
.bdl-detail__title {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(1.75rem, 2.8vw, 2.25rem); line-height: 1.15;
  color: var(--ink-900); margin: 14px 0 0; letter-spacing: -0.005em;
}
.bdl-detail__title em { font-style: italic; color: var(--gold-700); font-weight: 500; }
.bdl-detail__body {
  font-family: var(--font-sans); font-size: 16px; line-height: 1.7;
  color: var(--ink-700); margin: 0 0 var(--space-4);
}
.bdl-detail__list {
  font-family: var(--font-sans); font-size: 15px; line-height: 1.65;
  color: var(--ink-700); margin: 0; padding: 0; list-style: none;
}
.bdl-detail__list li {
  padding-left: 22px; position: relative; margin-bottom: 8px;
}
.bdl-detail__list li::before {
  content: ""; position: absolute; left: 0; top: 0.7em;
  width: 10px; height: 1px; background: var(--gold-500);
}
.bdl-detail__image {
  aspect-ratio: 4 / 3;
  background: var(--cream-200);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  position: relative; overflow: hidden;
}
.bdl-detail__image-brief {
  position: absolute; left: 24px; bottom: 24px; max-width: 70%;
  font-family: var(--font-sans);
}
.bdl-detail__image-brief .eyebrow { display: block; margin-bottom: 8px; }
.bdl-detail__image-brief p {
  font-size: 13px; line-height: 1.5; color: var(--ink-500);
  margin: 0; font-style: italic;
}

/* Feature photo band (Leistungen) */
.bdl-feature {
  margin: 0; position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border-soft);
  box-shadow: 0 24px 60px -28px rgba(74, 65, 55, 0.4),
              0 2px 8px rgba(74, 65, 55, 0.08);
}
.bdl-feature img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 50% 62%; display: block;
}
.bdl-feature::after {
  content: ""; position: absolute; inset: 0;
  border: 1px solid rgba(184, 154, 106, 0.32);
  border-radius: inherit; pointer-events: none;
}
.bdl-feature__caption {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.15rem, 1.9vw, 1.6rem); line-height: 1.4;
  color: var(--ink-800); text-align: center;
  max-width: 760px; margin: var(--space-5) auto 0;
  text-wrap: balance;
}

/* ============================================================
   Image placeholder (generic photo slot)
   ============================================================ */
.bdl-img {
  margin: 0; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-soft); background: var(--cream-200);
  position: relative;
}
.bdl-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bdl-img--placeholder { display: flex; }
.bdl-img__brief {
  position: absolute; left: 20px; bottom: 18px; max-width: 80%;
  font-family: var(--font-sans);
}
.bdl-img__brief .eyebrow { display: block; margin-bottom: 6px; }
.bdl-img__brief p {
  font-size: 12px; line-height: 1.5; color: var(--ink-500);
  margin: 0; font-style: italic;
}

/* ============================================================
   Prose container — for legal pages (Impressum / Datenschutz)
   ============================================================ */
.bdl-prose { max-width: 760px; margin: 0 auto; }
.bdl-prose h2 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: 28px; line-height: 1.2; color: var(--ink-900);
  margin: var(--space-7) 0 14px; letter-spacing: -0.005em;
}
.bdl-prose h2:first-child { margin-top: 0; }
.bdl-prose h3 {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold-600); margin: var(--space-5) 0 8px;
}
.bdl-prose p, .bdl-prose li {
  font-family: var(--font-sans); font-size: 15px; line-height: 1.7;
  color: var(--ink-700); margin: 0 0 12px;
}
.bdl-prose ul { padding-left: 22px; margin: 0 0 12px; }
.bdl-prose .bdl-placeholder {
  background: var(--gold-50); border-bottom: 1px dashed var(--gold-400);
  padding: 0 4px; color: var(--gold-800); font-weight: 700;
}

/* ============================================================
   Sections — additional helpers
   ============================================================ */
.bdl-section--white-narrow { background: var(--white); padding: var(--space-9) 0; }
.bdl-section__head--left { text-align: left; max-width: 720px; margin: 0 0 var(--space-7); }
.bdl-section__head--left .bdl-section__title { text-align: left; }
.bdl-section__head--left .bdl-section__lead { margin-left: 0; }

/* Two-column "image + text" rows on About / Story */
.bdl-row-2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-8); align-items: center;
  max-width: 1080px; margin: 0 auto;
}
.bdl-row-2--narrow { gap: var(--space-7); max-width: 980px; }

/* ============================================================
   Responsive — basic
   ============================================================ */
@media (max-width: 960px) {
  .bdl-header__nav { display: none; }
  .bdl-hero__inner { grid-template-columns: 1fr; gap: var(--space-6); }
  .bdl-hero__portrait { max-width: 420px; }
  .bdl-service-grid { grid-template-columns: 1fr; }
  .bdl-team-grid { grid-template-columns: repeat(2, 1fr); }
  .bdl-partners__pyramid-bottom { grid-template-columns: repeat(2, 1fr); }
  .bdl-partners__pyramid-top .bdl-partners__cell { width: 60%; }
  .bdl-value-grid { grid-template-columns: 1fr; }
  .bdl-contact-block { grid-template-columns: 1fr; }
  .bdl-form__row { grid-template-columns: 1fr; }
  .bdl-detail__grid { grid-template-columns: 1fr; }
  .bdl-row-2 { grid-template-columns: 1fr; }
  .bdl-timeline::before { left: 60px; }
  .bdl-timeline__item { grid-template-columns: 50px 18px 1fr; gap: 16px; }
  .bdl-timeline__year { font-size: 20px; }
}
