/* styles.css — Komponenten & Sektionen (BEM). Variablen: tokens.css, Basis: base.css.
   Aufbau: Header · Footer · Buttons/Links · Kicker/Sektionsköpfe · Kurven-Divider ·
   Hero (dunkel/hell) · Arch-Portrait & Badges · Marquee · Bild-Duo · Karten &
   Überzeugungen · Geschäftsführer/Signatur · Schritte · Werte · Gold-CTA · Teaser ·
   Formulare · Prosa/Kontakt */

/* ============================================================
   Header & Navigation
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, .9);
  transition: box-shadow .3s var(--ease);
}
/* Blur liegt auf dem Pseudo-Element: backdrop-filter direkt auf dem Header würde ihn
   zum Containing Block für das fixed positionierte Off-Canvas-Panel machen (Clipping-Bug). */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(10px);
}
.site-header.is-scrolled { box-shadow: 0 1px 0 var(--line), var(--shadow); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 80px;
}

/* Typografische Wortmarke (Platzhalter bis echtes Logo vorliegt) */
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: .1em;
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: .18em;
  text-decoration: none;
  color: var(--ink);
}
.brand__dot { color: var(--gold); letter-spacing: 0; }

.nav { display: flex; align-items: center; gap: 2rem; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav__link {
  position: relative;
  padding-block: .35rem;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  transition: color .2s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--ink); }

.nav__cta { margin-left: .5rem; }

/* Burger (nur mobil sichtbar) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-toggle__bar {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(10, 8, 6, .55);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.nav-backdrop[data-open="true"] { opacity: 1; }

@media (max-width: 879.98px) {
  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    z-index: 45;
    width: min(20rem, 85vw);
    padding: 6rem var(--gutter) 3rem;
    background: var(--grad-ink);
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-y: auto;
  }
  .nav[data-open="true"] { transform: none; visibility: visible; }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    width: 100%;
  }
  .nav__link { font-size: 1.25rem; color: var(--muted-on-ink); }
  .nav__link:hover,
  .nav__link[aria-current="page"] { color: var(--white); }
  .nav__cta { margin: 1.5rem 0 0; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--grad-ink);
  color: var(--muted-on-ink);
  padding-block: 4.5rem 2rem;
  font-size: var(--fs-small);
}

.site-footer .brand { color: var(--white); }

.site-footer__grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-dark);
}

.footer__claim { margin-top: 1rem; max-width: 34ch; }

.footer__title {
  margin-bottom: 1rem;
  font-size: var(--fs-kicker);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer__list li + li { margin-top: .6rem; }

.footer__link {
  color: var(--muted-on-ink);
  text-decoration: none;
  transition: color .2s;
}
.footer__link:hover { color: var(--white); }
.footer__link[aria-current="page"] { color: var(--white); }

.footer__address { font-style: normal; }
.footer__address p + p { margin-top: .6rem; }

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
}
.site-footer__legal ul { display: flex; gap: 1.5rem; }

@media (min-width: 720px) {
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

/* ============================================================
   Buttons & Links
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.9rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .9375rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .25s var(--ease),
              box-shadow .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: none; }

.btn--primary {
  background: var(--grad-gold);
  color: var(--ink);
  box-shadow: 0 6px 22px rgba(200, 161, 90, .28);
}
.btn--primary:hover { box-shadow: var(--shadow-gold); }

.btn--ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }

.section--ink .btn--ghost,
.hero--dark .btn--ghost { border-color: var(--line-dark); color: var(--white); }
.section--ink .btn--ghost:hover,
.hero--dark .btn--ghost:hover { background: var(--white); color: var(--ink); }

.btn--lg { padding: 1.1rem 2.4rem; font-size: 1rem; }

.btn[disabled] { opacity: .6; cursor: default; transform: none; }

/* Pfeil-Textlink */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 600;
  font-size: .9375rem;
  color: var(--ink);
  text-decoration: none;
}
.arrow-link::after {
  content: "\2192"; /* → */
  color: var(--gold-text);
  transition: transform .25s var(--ease);
}
.arrow-link:hover::after { transform: translateX(5px); }
.arrow-link > span { position: relative; }
.arrow-link > span::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.arrow-link:hover > span::after { transform: scaleX(1); }

.section--ink .arrow-link,
.hero--dark .arrow-link { color: var(--white); }
.section--ink .arrow-link::after,
.hero--dark .arrow-link::after { color: var(--gold); }

/* ============================================================
   Kicker & Sektionsköpfe
   ============================================================ */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: var(--fs-kicker);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-text); /* AA auf hellen Flächen; Hairline bleibt Brand-Gold */
}
.kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.section--ink .kicker,
.hero--dark .kicker { color: var(--gold); }

.section-head { max-width: 48rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); position: relative; z-index: 1; }
.section-link { margin-top: 2rem; }
.section-head .kicker { margin-bottom: 1.25rem; }
.section-head__title { font-size: var(--fs-h2); }
.section-head__sub { margin-top: 1.25rem; font-size: var(--fs-lead); color: var(--gray-700); }
.section--ink .section-head__sub { color: var(--muted-on-ink); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .kicker { justify-content: center; }

/* ============================================================
   Kurven-Divider (Übergang dunkel <-> hell, wie Referenz)
   ============================================================ */
.curve {
  position: absolute;
  left: 0; right: 0;
  height: clamp(36px, 6vw, 80px);
  pointer-events: none;
  z-index: 2;
}
.curve--bottom { bottom: -1px; }
.curve--top { top: -1px; transform: scaleY(-1); }
.curve svg { width: 100%; height: 100%; display: block; }

/* ============================================================
   Hero — dunkler Auftritt (Start + Karriere)
   ============================================================ */
.hero--dark {
  position: relative;
  background: var(--grad-ink);
  color: var(--text-on-ink);
  overflow: hidden;
  padding-block: clamp(4rem, 7vw, 6.5rem) 0;
}

/* Gold-Glow hinter der Person */
.hero__glow {
  position: absolute;
  width: min(60vw, 760px);
  aspect-ratio: 1;
  right: -8%;
  top: 8%;
  background: var(--glow-gold);
  filter: blur(10px);
  pointer-events: none;
}

.hero--dark .hero__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: end;
  position: relative;
}

.hero--dark .kicker { margin-bottom: 1.5rem; }

.hero__title { font-size: var(--fs-hero); max-width: 15ch; }
.hero--dark .hero__title { color: var(--white); }

.hero__sub {
  margin-top: 1.75rem;
  max-width: 46ch;
  font-size: var(--fs-lead);
  color: var(--muted-on-ink);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: clamp(3.5rem, 6vw, 6rem);
}

/* Person im Rundbogen mit Gold-Ring */
.hero__figure {
  position: relative;
  justify-self: center;
  width: min(100%, 420px);
  margin-top: 1rem;
}
.hero__arch {
  position: relative;
  border-radius: var(--radius-arch);
  overflow: hidden;
  border: 1px solid rgba(230, 199, 131, .45);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5), 0 0 0 10px rgba(200, 161, 90, .07);
}
.hero__arch img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
/* Goldener Schleier am unteren Bildrand — verankert die Person im Verlauf */
.hero__arch::after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(to top, rgba(14, 12, 9, .8), transparent);
}

/* Schwebende Badges am Portrait */
.badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.1rem;
  border-radius: 999px;
  background: rgba(20, 16, 11, .82);
  border: 1px solid rgba(230, 199, 131, .4);
  color: var(--text-on-ink);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .02em;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}
.badge::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--grad-gold);
  flex-shrink: 0;
}
.badge--tl { top: 12%; left: -14%; }
.badge--br { bottom: 16%; right: -12%; }

@media (min-width: 880px) {
  .hero--dark .hero__grid { grid-template-columns: 7fr 5fr; }
  .hero--dark .hero__figure { margin-top: 0; }
}
@media (max-width: 879.98px) {
  .badge--tl { left: 0; }
  .badge--br { right: 0; }
}

/* Ladeanimation Hero (nur beim ersten Aufbau, CSS-only) */
@keyframes hero-in {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
.hero--dark [data-hero-seq],
.hero--light [data-hero-seq] { animation: hero-in .9s var(--ease) both; }
[data-hero-seq="1"] { animation-delay: .05s; }
[data-hero-seq="2"] { animation-delay: .15s; }
[data-hero-seq="3"] { animation-delay: .25s; }
[data-hero-seq="4"] { animation-delay: .35s; }
[data-hero-seq="5"] { animation-delay: .45s; }

/* Heller Unterseiten-Kopf */
.hero--light {
  position: relative;
  padding-block: clamp(3.5rem, 6vw, 5.5rem) 0;
  overflow: hidden;
}
.hero--light .hero__title { max-width: 18ch; }
.hero--light .hero__sub { color: var(--gray-700); }
.hero--light .kicker { margin-bottom: 1.25rem; }
/* Ghost-Wortmarke als Hintergrund-Textur */
.hero__ghostword {
  position: absolute;
  right: -2%;
  top: 8%;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(6rem, 16vw, 13rem);
  color: rgba(200, 161, 90, .1);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* ============================================================
   Split — zweispaltiges Text/Bild-Layout
   ============================================================ */
.split {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
@media (min-width: 880px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-text { grid-template-columns: 7fr 5fr; }
}

/* ============================================================
   Marquee — laufendes Wortband
   ============================================================ */
.marquee {
  overflow: hidden;
  padding-block: 1.4rem;
  background: var(--ink);
  border-block: 1px solid var(--line-dark);
}
.marquee__track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.marquee__item {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  color: var(--gold);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
}
.marquee__item::after {
  content: "✦";
  font-size: .7em;
  color: rgba(230, 199, 131, .5);
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ============================================================
   Bild-Duo — zwei überlappende Bilder mit Gold-Deko
   ============================================================ */
.img-duo {
  position: relative;
  min-height: 420px;
}
.img-duo__main {
  width: 78%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.img-duo__main img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.img-duo__second {
  position: absolute;
  right: 0;
  bottom: -8%;
  width: 52%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-lift);
}
.section--sand .img-duo__second { border-color: var(--sand); }
.img-duo__second img { aspect-ratio: 1; object-fit: cover; width: 100%; }
/* Gold-Rahmen als Deko hinter dem Hauptbild */
.img-duo::before {
  content: "";
  position: absolute;
  top: -5%;
  left: -5%;
  width: 45%;
  aspect-ratio: 1;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  opacity: .55;
}

/* ============================================================
   Karten & Überzeugungen
   ============================================================ */
.card-grid { display: grid; gap: 1.5rem; position: relative; z-index: 1; }
@media (min-width: 720px)  { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  position: relative;
  padding: 2.25rem 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }

.card--principle { border-top: 3px solid var(--gold); }

.card__title { font-size: var(--fs-h3); margin-bottom: .75rem; position: relative; z-index: 1; }
.card__text { color: var(--gray-700); font-size: 1rem; position: relative; z-index: 1; }

/* Ghost-Nummer hinter der Karte */
.ghost-num {
  position: absolute;
  top: -1.5rem;
  right: -.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: var(--fs-ghost);
  line-height: 1;
  color: rgba(200, 161, 90, .14);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Überzeugungen: dunkle Karten auf Ink-Sektion (Referenz „6 Denkfehler") */
.conviction {
  position: relative;
  padding: 2.25rem 2rem;
  background: rgba(255, 251, 243, .045);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}
.conviction:hover {
  transform: translateY(-6px);
  background: rgba(255, 251, 243, .07);
  border-color: rgba(230, 199, 131, .45);
}
.conviction .ghost-num { color: rgba(230, 199, 131, .12); }
.conviction__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -.01em;
  color: var(--white);
  margin-bottom: .75rem;
  position: relative;
  z-index: 1;
}
.conviction__text { color: var(--muted-on-ink); font-size: 1rem; position: relative; z-index: 1; }

/* ============================================================
   Geschäftsführer-Sektion & Signatur
   ============================================================ */
.founder {
  position: relative;
  overflow: hidden;
}
.founder__glow {
  position: absolute;
  width: min(55vw, 700px);
  aspect-ratio: 1;
  left: -12%;
  bottom: -18%;
  background: var(--glow-gold);
  filter: blur(12px);
  pointer-events: none;
  opacity: .7;
}

.founder__grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.founder__quote {
  font-size: var(--fs-h2);
  max-width: 18ch;
}

.founder__body { margin-top: 1.75rem; max-width: 52ch; color: var(--muted-on-ink); }
.founder__body p + p { margin-top: 1rem; }

.founder__media {
  border-radius: var(--radius-arch);
  overflow: hidden;
  border: 1px solid rgba(230, 199, 131, .4);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
}
.founder__media img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }

.founder__name { margin-top: 1rem; font-weight: 600; color: var(--white); }
.founder__role { font-size: var(--fs-small); color: var(--muted-on-ink); }

/* Varianten für helle Sektionen (ueber-uns) */
.founder__bio { margin-top: 1.5rem; max-width: 52ch; color: var(--gray-700); }
.founder__name--dark { color: var(--ink); }
.founder__role--dark { color: var(--gray-700); }
.founder__media--light {
  border-color: var(--line);
  box-shadow: var(--shadow-lift);
}

@media (min-width: 880px) {
  .founder__grid { grid-template-columns: 7fr 5fr; }
}

/* Signatur: echte Unterschrift, zeichnet sich scroll-getrieben (js/signature.js).
   Tinte = currentColor → Gold über Elternelement. */
.signature-wrap {
  color: var(--gold);
  max-width: 320px;
  margin-top: 2.25rem;
}
.signature { width: 100%; height: auto; }
.sig-path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pen-tip { fill: currentColor; opacity: 0; }

/* Statische kleine Signatur (ueber-uns, ohne Effekt, als <img>) */
.signature-wrap--static { max-width: 220px; margin-top: 1.75rem; }

/* ============================================================
   Schritte (nummerierte Sequenzen)
   ============================================================ */
.steps {
  display: grid;
  gap: 1.5rem;
  counter-reset: step;
  position: relative;
  z-index: 1;
}
@media (min-width: 720px) { .steps { grid-template-columns: repeat(3, 1fr); } }

.step {
  position: relative;
  padding: 2.5rem 1.75rem 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }

.step__title { font-size: 1.15rem; margin-bottom: .5rem; position: relative; z-index: 1; }
.step__text { color: var(--gray-700); font-size: 1rem; position: relative; z-index: 1; }

/* ============================================================
   Werte-Blöcke (Mission/Vision/Werte auf Ink)
   ============================================================ */
.values { display: grid; gap: 0; position: relative; z-index: 1; }

.value {
  display: grid;
  gap: 1rem;
  padding-block: 2.5rem;
  border-top: 1px solid var(--line-dark);
}
.value:last-child { border-bottom: 1px solid var(--line-dark); }

.value__label {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--gold);
}

.value__text { max-width: 56ch; color: var(--text-on-ink); font-size: var(--fs-lead); }

@media (min-width: 880px) {
  .value { grid-template-columns: 1fr 2fr; align-items: baseline; }
}

/* ============================================================
   Gold-CTA-Panel (Karriere-Teaser als Fläche)
   ============================================================ */
.cta-panel {
  position: relative;
  border-radius: calc(var(--radius) * 1.6);
  background: var(--grad-gold);
  color: var(--ink);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}
/* dezente Licht-Textur */
.cta-panel::before {
  content: "";
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  right: -25%;
  top: -45%;
  background: radial-gradient(closest-side, rgba(255, 255, 255, .35), transparent 70%);
  pointer-events: none;
}
.cta-panel__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-panel .kicker { color: var(--ink); }
.cta-panel .kicker::before { background: var(--ink); }
.cta-panel .kicker + .cta-panel__title { margin-top: 1rem; }
.cta-panel__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-h2);
  letter-spacing: -.02em;
  line-height: 1.08;
  max-width: 16ch;
}
.cta-panel__title em {
  font-style: italic;
  font-weight: 400;
}
.cta-panel__text { margin-top: 1rem; max-width: 46ch; color: rgba(14, 12, 9, .78); font-size: var(--fs-lead); }
.cta-panel .btn--dark {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 14px 34px rgba(14, 12, 9, .35);
}
.cta-panel .btn--dark:hover { background: #000; }
@media (min-width: 880px) {
  .cta-panel__grid { grid-template-columns: 1.5fr 1fr; }
  .cta-panel__action { justify-self: end; }
}

/* ============================================================
   Finale-CTA (Startseite): dunkle Bühne für die offene Position
   ============================================================ */
.cta-final {
  position: relative;
  border-radius: calc(var(--radius) * 1.6);
  background: var(--grad-ink);
  color: var(--text-on-ink);
  padding: clamp(2.75rem, 7vw, 5.5rem);
  overflow: hidden;
  border: 1px solid rgba(230, 199, 131, .35);
  box-shadow: 0 30px 80px rgba(14, 12, 9, .35);
}
.cta-final__glow {
  position: absolute;
  width: min(60%, 560px);
  aspect-ratio: 1;
  right: -15%;
  top: -30%;
  background: var(--glow-gold);
  filter: blur(10px);
  pointer-events: none;
}
.cta-final__ghost {
  position: absolute;
  left: -1%;
  bottom: -14%;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(4.5rem, 13vw, 10rem);
  line-height: 1;
  color: rgba(230, 199, 131, .08);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.cta-final__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.75rem;
}
.cta-final .kicker { color: var(--gold); }
.cta-final .kicker::before { background: var(--gold); }
.cta-final .accent { color: var(--gold); }
.cta-final .arrow-link { color: var(--white); }
.cta-final .arrow-link::after { color: var(--gold); }

.cta-final__title {
  margin-top: 1rem;
  font-size: var(--fs-h2);
  color: var(--white);
  max-width: 18ch;
}
.cta-final__text {
  margin-top: 1.1rem;
  max-width: 46ch;
  color: var(--muted-on-ink);
  font-size: var(--fs-lead);
}

.cta-final__points {
  margin-top: 1.9rem;
  display: grid;
  gap: .7rem;
  list-style: none;
}
.cta-final__points li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--muted-on-ink);
}
.cta-final__points li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold-bright);
}
.cta-final__points strong { color: var(--white); font-weight: 600; }

.cta-final__action {
  display: grid;
  gap: 1.4rem;
  justify-items: center;
  text-align: center;
}

/* Rotierender Stempel: Kreis-Schriftzug um Pfeil (SVG-textPath) */
.stamp {
  width: clamp(120px, 15vw, 164px);
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
}
.stamp__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: stamp-spin 26s linear infinite;
}
.stamp__ring text {
  fill: var(--gold-bright);
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.stamp__arrow {
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1;
  color: var(--gold-bright);
}
@keyframes stamp-spin {
  to { transform: rotate(1turn); }
}

@media (min-width: 880px) {
  .cta-final__grid { grid-template-columns: 1.5fr 1fr; align-items: center; }
}

/* ============================================================
   Klartext-Lexikon (Startseite): Wörterbucheintrag als Typo-Objekt
   ============================================================ */
.lexikon {
  max-width: 46rem;
  margin-inline: auto;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: calc(var(--radius) * 1.6);
  box-shadow: var(--shadow-lift);
  position: relative;
  overflow: hidden;
}
.lexikon::before {
  content: "";
  position: absolute;
  width: 60%;
  aspect-ratio: 1;
  right: -30%;
  top: -35%;
  background: radial-gradient(closest-side, rgba(200, 161, 90, .12), transparent 70%);
  pointer-events: none;
}

.lexikon__word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: -.02em;
  line-height: 1.05;
  position: relative;
  z-index: 1;
}
.lexikon__meta {
  margin-top: .6rem;
  font-size: var(--fs-small);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-700);
  position: relative;
  z-index: 1;
}

.lexikon__defs {
  margin-top: 2rem;
  display: grid;
  gap: 1.1rem;
  list-style: none;
  counter-reset: def;
  position: relative;
  z-index: 1;
}
.lexikon__defs li {
  position: relative;
  padding-left: 2.6rem;
  color: var(--gray-700);
  font-size: var(--fs-lead);
}
.lexikon__defs li::before {
  counter-increment: def;
  content: counter(def);
  position: absolute;
  left: 0;
  top: .15em;
  width: 1.6rem;
  height: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold-tint);
  border: 1px solid var(--gold);
  color: var(--gold-text);
  font-size: .8rem;
  font-weight: 700;
}

.lexikon__syn {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--line);
  color: var(--gray-700);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem .6rem;
  position: relative;
  z-index: 1;
}
.lexikon__tag {
  display: inline-block;
  padding: .3rem .85rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: var(--gold-tint);
  color: var(--gold-text);
  font-weight: 600;
  font-size: var(--fs-small);
  white-space: nowrap;
}

/* ============================================================
   Kontrast-Sektion: Beratung wie üblich vs. Alpcron
   ============================================================ */
.contrast {
  max-width: 62rem;
  margin-inline: auto;
  display: grid;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.contrast__row {
  display: grid;
  gap: .85rem 3rem;
  padding: 1.6rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.contrast__row:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.contrast__old,
.contrast__new {
  position: relative;
  padding-left: 2.1rem;
}
.contrast__old { color: var(--gray-700); }
.contrast__new { color: var(--ink); font-weight: 600; }

.contrast__old::before,
.contrast__new::before {
  position: absolute;
  left: 0;
  top: .1em;
  width: 1.35rem;
  height: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 700;
}
.contrast__old::before {
  content: "✕";
  border: 1px solid var(--line);
  background: var(--sand);
  color: var(--gray-700);
}
.contrast__new::before {
  content: "✓";
  border: 1px solid var(--gold);
  background: var(--gold-tint);
  color: var(--gold-text);
}

@media (min-width: 880px) {
  .contrast__row { grid-template-columns: 1fr 1fr; align-items: start; }
  /* Pfeil als Übergang zwischen „anderswo" und „bei uns" */
  .contrast__new::after {
    content: "→";
    position: absolute;
    left: -2.05rem;
    top: -.05em;
    color: var(--gold-dark);
    font-size: 1.15rem;
  }
}

/* Zitat-Zwischensektion */
.statement {
  max-width: 32ch;
  margin-inline: auto;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-h2);
  line-height: 1.2;
  letter-spacing: -.02em;
  position: relative;
  z-index: 1;
}
/* große Anführungszeichen als Deko */
.statement::before {
  content: "„";
  display: block;
  font-size: 2.2em;
  line-height: .6;
  color: var(--gold);
  margin-bottom: .25em;
}

/* Profil-Liste (Karriere) */
.profil-list {
  max-width: 46rem;
  display: grid;
  gap: 1rem;
}
.profil-list li {
  position: relative;
  padding: 1.1rem 1.25rem 1.1rem 2.9rem;
  color: var(--gray-700);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.profil-list li::before {
  content: "✓";
  position: absolute;
  left: 1.1rem;
  top: 1.05rem;
  width: 1.35rem;
  height: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold-tint);
  border: 1px solid var(--gold);
  color: var(--gold-text);
  font-size: .75rem;
  font-weight: 700;
}

/* ============================================================
   Formulare (Karriere + Kontakt, gemeinsame Styles)
   ============================================================ */
.form-card {
  max-width: 44rem;
  padding: clamp(1.75rem, 4vw, 3rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  position: relative;
  z-index: 1;
}

.form { display: grid; gap: 1.4rem; }

.form__row { display: grid; gap: 1.4rem; }
@media (min-width: 720px) { .form__row { grid-template-columns: 1fr 1fr; } }

.form__field { display: grid; gap: .45rem; }

.form__label { font-weight: 500; font-size: .9375rem; }
.form__optional { color: var(--gray-700); font-weight: 400; }

.form__input {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  transition: border-color .2s, background .2s;
}
.form__input:focus { border-color: var(--gold); background: var(--white); outline: none; }
.form__input:focus-visible { outline: 2px solid var(--gold); outline-offset: 1px; }

textarea.form__input { min-height: 8.5rem; resize: vertical; }

.form__fieldset { border: 0; padding: 0; margin: 0; display: grid; gap: .6rem; }
.form__fieldset legend { font-weight: 500; font-size: .9375rem; padding: 0; margin-bottom: .2rem; }

.form__radios { display: flex; gap: 1.5rem; }
.form__radio { display: inline-flex; align-items: center; gap: .5rem; cursor: pointer; }
.form__radio input { accent-color: var(--gold-dark); width: 1.1rem; height: 1.1rem; }

.form__file { font-size: .9375rem; }
.form__file::file-selector-button {
  margin-right: 1rem;
  padding: .55rem 1.1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  font-weight: 600;
  font-size: .875rem;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.form__file::file-selector-button:hover { background: var(--ink); color: var(--cream); }

.form__consent { display: flex; gap: .75rem; align-items: flex-start; font-size: var(--fs-small); color: var(--gray-700); }
.form__consent input { margin-top: .2rem; width: 1.05rem; height: 1.05rem; accent-color: var(--gold-dark); flex-shrink: 0; }
.form__consent a { color: var(--ink); }

.form__error {
  padding: .8rem 1rem;
  border-radius: 12px;
  background: #FBEFEA;
  border: 1px solid #E5B8A5;
  color: #7A2E12;
  font-size: .9375rem;
}

.form__hint { font-size: var(--fs-small); color: var(--gray-700); }

/* Erfolgs-Zustand */
.form__done { text-align: center; padding-block: 2rem; }
.form__done:focus { outline: none; }
.form__done-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: var(--gold-tint);
  border: 1px solid var(--gold);
  color: var(--gold-text);
  font-size: 1.4rem;
}
.form__done-title { font-family: var(--font-display); font-weight: 600; font-size: 1.6rem; margin-bottom: .75rem; }
.form__done p { color: var(--gray-700); max-width: 40ch; margin-inline: auto; }

/* ============================================================
   Prosa (Rechtstexte, Geschichte) & Kontakt
   ============================================================ */
.prose { max-width: 46rem; }
.prose h2 { font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: .9rem; }
.prose h3 { font-size: 1.15rem; margin-top: 1.75rem; margin-bottom: .6rem; }
.prose p + p { margin-top: 1rem; }
.prose ul { margin-top: .75rem; padding-left: 1.25rem; list-style: disc; }
.prose li + li { margin-top: .4rem; }
.prose a { color: var(--ink); }
.prose .note { color: var(--gray-700); font-size: var(--fs-small); }

.contact-grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); align-items: start; }
@media (min-width: 880px) { .contact-grid { grid-template-columns: 5fr 7fr; } }

.contact-info { display: grid; gap: 1.75rem; font-style: normal; }
.contact-info__label {
  font-size: var(--fs-kicker);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: .35rem;
}
.contact-info a { color: var(--ink); text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }
