/* Vertrieb im Handwerk - Achim Pressburger
   Palette und Typografie aus der Praesentation uebernommen. */

:root {
  /* Grundpalette: Navy und Gold aus dem Logo. Die Token-Namen (--olive,
     --orange) stammen aus der ersten Fassung und bleiben, damit die
     Bausteine unveraendert weiterlaufen. */
  --paper:      #F6F4EF;
  --paper-warm: #EFECE4;
  --card:       #FFFFFF;
  --ink:        #1B2A47;
  --ink-soft:   #4B5769;
  --ink-mute:   #8892A3;
  --olive:      #22345A;
  --olive-dark: #16233D;
  --olive-tint: #E9EDF4;
  --orange:     #A07E38;
  --line:       #E2DDD1;

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans:  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --wrap: 1140px;
  --gap: clamp(1rem, 2.5vw, 1.75rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);
  --radius: 10px;
  /* Kopfhoehe haengt am Logo und wird an drei Stellen gebraucht:
     Kopfzeile, Sprungmarken-Versatz und Ansatz des mobilen Menues. */
  --kopfhoehe: 88px;
  --shadow: 0 1px 2px rgba(46, 69, 80, .05), 0 8px 24px rgba(46, 69, 80, .06);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--kopfhoehe) + 18px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -.005em;
  margin: 0 0 .5em;
  font-weight: 700;
}
h1 { font-size: clamp(2.5rem, 7vw, 4.25rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--olive-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--orange); }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
@media (max-width: 560px) { .wrap { width: calc(100% - 2rem); } }

/* ---------- Kopfzeile ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  /* Voll deckend, kein backdrop-filter: Das Logo liegt als Bild auf
     weissem Grund und wird per multiply eingeblendet. Bei einem nur zu
     92 % deckenden Kopf schien der weisse Kasten ueber dunklen Abschnitten
     durch. Nebeneffekt: ohne backdrop-filter ist der Kopf kein Bezugspunkt
     mehr fuer position:fixed, das mobile Menue rechnet wieder vom Fenster. */
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 20px rgba(46, 69, 80, .05);
}
.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: var(--kopfhoehe);
}
.brand { display: flex; align-items: center; text-decoration: none; margin-right: auto; }
.brand-logo {
  /* Die vollstaendige Logosperrung, unveraendert aus der Kundendatei:
     Bildmarke oben, Schriftzug darunter. Nur der weisse Rand ist
     weggeschnitten - die Farben selbst sind nicht angefasst.
     Ein Freistellen per Helligkeit haette 65 % der Tinte halbtransparent
     gemacht und die feinen Serifen ausgebleicht. Stattdessen bleibt der
     weisse Grund im Bild und verschwindet hier per multiply auf dem hellen
     Papierton. Sobald eine SVG-Fassung vorliegt, ersetzt sie beides. */
  height: 62px; width: auto; display: block;
  mix-blend-mode: multiply;
}
@media (max-width: 900px) { .brand-logo { height: 50px; } }
@media (max-width: 380px) { .brand-logo { height: 44px; } }

.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav a {
  font-size: .875rem; color: var(--ink-soft); text-decoration: none;
  padding: .35rem 0; position: relative; white-space: nowrap;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--orange); transition: right .25s ease;
}
.nav a:hover, .nav a.is-active { color: var(--ink); }
.nav a:hover::after, .nav a.is-active::after { right: 0; }

/* Der Knopf in der Navigation ist auch ein .nav a - und ".nav a" schlaegt
   ".btn-primary" bei der Textfarbe. Ohne diese Regel steht graue Schrift
   auf Navy, praktisch unlesbar. */
.nav a.btn-primary, .nav a.btn-primary:hover { color: #fff; }
.nav a.btn::after { display: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--sans); font-size: .9375rem; font-weight: 500;
  padding: .8rem 1.5rem; border-radius: var(--radius);
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: transform .18s, background-color .18s, color .18s, border-color .18s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--olive); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--olive-dark); color: #fff; }
.btn-ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--olive); color: var(--olive-dark); background: var(--olive-tint); }
.btn-sm { padding: .6rem 1.1rem; font-size: .875rem; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  border-radius: var(--radius); background: transparent; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 18px; height: 1.5px; background: var(--ink);
  transition: transform .25s, opacity .2s;
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after  { transform: translateY(4.5px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: rotate(-45deg) translateY(0); }

@media (max-width: 900px) {
  :root { --kopfhoehe: 74px; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: var(--kopfhoehe) 0 auto; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--paper); border-bottom: 1px solid var(--line);
    padding: .5rem 1.25rem 1.5rem; transform: translateY(-120%);
    box-shadow: 0 20px 40px rgba(46,69,80,.08);
    /* Der Kopf hat backdrop-filter und wird dadurch zum Bezugspunkt fuer
       position:fixed. Ein prozentualer Versatz schiebt das Menue deshalb
       nicht zuverlaessig aus dem Bild - visibility erledigt das sicher,
       und nebenbei ist das geschlossene Menue nicht mehr per Tab erreichbar. */
    visibility: hidden;
    transition: transform .3s ease, visibility 0s linear .3s;
  }
  .nav.is-open {
    transform: translateY(0);
    visibility: visible;
    transition: transform .3s ease, visibility 0s;
  }
  .nav a { padding: .9rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav a::after { display: none; }
  .nav .btn { margin-top: 1rem; }

  /* Rechtsseiten haben nur einen Link und keinen Menue-Knopf -
     ihre Navigation bleibt deshalb immer sichtbar. */
  .nav--plain {
    position: static; transform: none; flex-direction: row; padding: 0;
    background: none; border: 0; box-shadow: none;
  }
  .nav--plain a { padding: .35rem 0; border-bottom: 0; font-size: .875rem; }
}

/* ---------- Bausteine ---------- */

.section { padding-block: var(--section-y); }
.section--tint { background: var(--paper-warm); }
.section--olive { background: var(--olive); color: rgba(255,255,255,.85); }
.section--olive h2, .section--olive h3 { color: #fff; }
.section--olive .eyebrow { color: rgba(255,255,255,.6); }

.eyebrow {
  font-size: .6875rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-mute); margin: 0 0 1rem; font-weight: 500;
}
.rule { width: 68px; height: 3px; background: var(--orange); border: 0; margin: 0 0 1.75rem; }
.lead { font-size: clamp(1.0625rem, 1.6vw, 1.25rem); color: var(--ink-soft); max-width: 62ch; }
.section-head { max-width: 68ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }

.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1000px) { .grid-5, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px)  { .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 620px)  { .grid-2, .grid-4, .grid-5 { grid-template-columns: 1fr; } }

.card {
  background: var(--card); border-radius: var(--radius);
  border-top: 3px solid var(--orange);
  padding: 1.5rem 1.35rem; box-shadow: var(--shadow);
}
.card h3 { margin-bottom: .35rem; }
.card p { font-size: .9375rem; color: var(--ink-soft); }
.card .num {
  display: block; font-family: var(--serif); font-size: .8125rem; font-weight: 700;
  color: var(--orange); letter-spacing: .08em; margin-bottom: .6rem;
}

.card--olive {
  background: var(--olive); border-top-color: var(--orange); color: rgba(255,255,255,.82);
}
.card--olive h3 { color: #fff; }
.card--olive p { color: rgba(255,255,255,.8); }
.card--olive .num { color: rgba(255,255,255,.65); }

/* ---------- Hero ---------- */

.hero {
  position: relative; padding-block: clamp(4rem, 11vw, 8.5rem) clamp(3.5rem, 8vw, 6rem);
  border-left: 4px solid var(--orange); overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; right: -12%; top: -20%;
  width: 46vw; height: 46vw; max-width: 620px; max-height: 620px;
  background: radial-gradient(circle at 50% 50%, rgba(110,127,78,.14), transparent 68%);
  border-radius: 50%; pointer-events: none;
}
/* Achtung: .hero-inner traegt auch .wrap, und .wrap zentriert sich per
   margin-inline:auto. Eine max-width hier wuerde nicht den Text schmaler
   machen, sondern den ganzen Kasten schrumpfen und mittig schieben - der
   Kopfbereich stuende dann weiter rechts als jeder Abschnitt darunter.
   Deshalb begrenzen die Kinder ihre Breite selbst. */
.hero-inner { position: relative; }
.hero-inner > * { max-width: 46rem; }
.hero h1 { margin-bottom: .35em; }
.hero .claim {
  font-family: var(--serif); font-size: clamp(1.25rem, 2.6vw, 1.65rem);
  color: var(--olive-dark); margin-bottom: 1.25rem;
}
.hero .claim em { font-style: normal; color: var(--orange); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: .5rem 2rem; margin-top: 2.75rem;
  padding-top: 1.5rem; border-top: 1px solid var(--line);
  font-size: .8125rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute);
}

/* ---------- Kennzahlen ---------- */

.facts { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--gap); max-width: 640px; }
@media (max-width: 520px) { .facts { grid-template-columns: 1fr; } }
.fact {
  background: var(--olive); color: #fff; border-radius: var(--radius);
  padding: 1.4rem 1.5rem; box-shadow: var(--shadow);
}
.fact span {
  display: block; font-size: .6875rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.68); margin-bottom: .3rem;
}
.fact strong { font-family: var(--serif); font-size: clamp(1.25rem, 2.4vw, 1.6rem); font-weight: 700; }

/* ---------- Bildsprache ----------
   Alles selbst gezeichnet und inline im HTML: keine fremden Dateien,
   keine Lizenzfragen, und die Grafiken nehmen die Farbe der jeweiligen
   Farbwelt automatisch an. */

.icon {
  width: 26px; height: 26px; flex: 0 0 auto;
  color: var(--orange); stroke: currentColor; fill: none;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.card--olive .icon, .section--olive .icon { color: rgba(255,255,255,.9); }

.kartenkopf {
  display: flex; align-items: center; justify-content: space-between;
  gap: .75rem; margin-bottom: .9rem;
}
.kartenkopf .num { margin-bottom: 0; }

/* Grosse Grafik im Kopfbereich - reine Dekoration, deshalb auf
   kleinen Schirmen ausgeblendet. */
.hero-deko {
  position: absolute; top: 50%; transform: translateY(-50%);
  /* Buendig mit der rechten Kante des Rasters, nicht mit dem Fensterrand -
     sonst haengt die Zeichnung halb ausserhalb. */
  right: max(1.25rem, calc((100% - var(--wrap)) / 2));
  width: 330px; height: auto; opacity: .85; pointer-events: none;
  color: var(--olive);
}
/* Der Text ist bis 46rem breit. Erst ab dieser Fensterbreite bleibt daneben
   genug Platz, vorher wuerde die Zeichnung in die Schlagzeile laufen. */
@media (max-width: 1149px) { .hero-deko { display: none; } }

/* Erklaerende Zeichnung: aus vielen Anfragen werden wenige Auftraege. */
.diagramm {
  display: block; width: 100%; max-width: 560px; height: auto;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.diagramm text {
  font-family: var(--sans); font-size: 14px; fill: var(--ink-mute);
  letter-spacing: .14em;
}
/* Die Zeichnung skaliert mit ihrer Breite. Auf dem Telefon schrumpft sie
   auf etwa zwei Drittel - die Beschriftung waere dann nur noch neun Pixel
   hoch, also waechst sie hier im Koordinatensystem mit. */
@media (max-width: 680px) { .diagramm text { font-size: 20px; } }
.diagramm .zahl { font-family: var(--serif); font-size: 22px; fill: var(--ink); letter-spacing: 0; text-transform: none; }
.diagramm .viele { fill: var(--olive); opacity: .8; }
.diagramm .wenige { fill: var(--orange); }
.diagramm .verloren { fill: var(--ink-mute); opacity: .35; }
.diagramm .trichter { fill: var(--card); stroke: var(--ink-mute); stroke-width: 1.5; opacity: .55; }
.diagramm .leck { stroke: var(--ink-mute); stroke-width: 1.4; stroke-dasharray: 3 4; opacity: .6; fill: none; }
.diagramm .leckspitze {
  stroke: var(--ink-mute); stroke-width: 1.4; opacity: .6; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ---------- Fliesstext-Abschnitte (Kundentext vom 13.9.) ---------- */

.prosa { max-width: 68ch; }

/* Text links, Zeichnung rechts - sonst bleibt neben dem auf Lesebreite
   begrenzten Text die halbe Seite leer. */
.text-und-bild {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.text-und-bild .diagramm { margin-top: 0; max-width: none; }
@media (max-width: 900px) {
  .text-und-bild { grid-template-columns: 1fr; }
  .text-und-bild .diagramm { max-width: 560px; margin-top: 1rem; }
}
.prosa p { color: var(--ink-soft); }
.prosa p + p { margin-top: 1.1em; }

/* Zwei Spalten fuer die sieben Leistungsbausteine - Liste, kein Kartenraster. */
.leistungen {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .25rem var(--gap);
  counter-reset: leistung;
}
@media (max-width: 720px) { .leistungen { grid-template-columns: 1fr; } }
.leistungen li {
  counter-increment: leistung;
  display: flex; gap: 1rem; align-items: baseline;
  padding: .95rem 0; border-bottom: 1px solid var(--line);
  color: var(--ink); font-size: 1rem; line-height: 1.5;
}
.leistungen li::before {
  content: counter(leistung, decimal-leading-zero);
  font-family: var(--serif); font-weight: 700; font-size: .8125rem;
  color: var(--orange); letter-spacing: .08em; flex: 0 0 2rem;
}

/* ---------- Erfolgsgeschichten ---------- */

.erfolg {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.erfolg + .erfolg { margin-top: clamp(3rem, 7vw, 5.5rem); }
.erfolg--gespiegelt .erfolg-bild { order: 2; }
@media (max-width: 860px) {
  .erfolg { grid-template-columns: 1fr; }
  .erfolg--gespiegelt .erfolg-bild { order: 0; }
}

.erfolg-bild { margin: 0; }
.erfolg-bild img, .erfolg-bild .bildslot {
  /* height:auto ist noetig, sonst gewinnt das height-Attribut des <img>
     gegen aspect-ratio und das Bild wird in die Hoehe gezogen. */
  width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow); display: block;
}
/* Solange das Foto fehlt: ruhige Flaeche in der Akzentfarbe, nicht leer. */
.erfolg-bild .bildslot {
  background:
    linear-gradient(135deg, rgba(255,255,255,.06) 25%, transparent 25%, transparent 50%,
      rgba(255,255,255,.06) 50%, rgba(255,255,255,.06) 75%, transparent 75%) 0 0 / 28px 28px,
    var(--olive);
  display: grid; place-items: center; color: rgba(255,255,255,.75);
  font-size: .8125rem; letter-spacing: .14em; text-transform: uppercase; text-align: center;
  padding: 1rem;
}
.erfolg-bild figcaption {
  margin-top: .6rem; font-size: .75rem; color: var(--ink-mute); letter-spacing: .04em;
}

.erfolg-text h3 { font-size: clamp(1.4rem, 2.6vw, 1.85rem); margin-bottom: .75rem; }
.erfolg-text p { font-size: .9875rem; }

.kennzahl {
  display: inline-flex; flex-direction: column; gap: .1rem;
  border-left: 3px solid var(--orange); padding: .35rem 0 .35rem 1rem;
  margin: 0 0 1.25rem;
}
.kennzahl strong { font-family: var(--serif); font-size: clamp(1.6rem, 3.2vw, 2.2rem); color: var(--ink); line-height: 1.1; }
.kennzahl span { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); }

/* Kontakt-Kacheln fuer Telefon, E-Mail, Anschrift */
.kontaktdaten { list-style: none; margin: 1.75rem 0 0; padding: 0; display: grid; gap: .9rem; }
.kontaktdaten li { display: flex; gap: .85rem; align-items: baseline; font-size: 1rem; }
.kontaktdaten .k { flex: 0 0 5.5rem; font-size: .6875rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-mute); }
.kontaktdaten a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); }
.kontaktdaten a:hover { color: var(--orange); border-color: var(--orange); }

/* ---------- Zitate / Ausreden ---------- */

.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; margin-top: 2.5rem; }
@media (max-width: 720px) { .quotes { grid-template-columns: 1fr; } }
.quote {
  background: var(--card); border-left: 3px solid var(--orange);
  padding: .95rem 1.15rem; border-radius: 0 6px 6px 0;
  font-size: .9375rem; color: var(--ink); box-shadow: 0 1px 2px rgba(46,69,80,.04);
}

.pullquote {
  border-left: 4px solid var(--orange); padding: .35rem 0 .35rem 1.75rem;
  margin: clamp(3rem, 6vw, 4.5rem) 0 0; max-width: 40rem;
}
.pullquote p {
  font-family: var(--serif); font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.25; color: var(--ink); margin-bottom: .5rem;
}
.pullquote p em { font-style: normal; color: var(--orange); display: block; }
.pullquote cite { font-style: normal; font-size: .9375rem; color: var(--ink-mute); }

/* ---------- Ablauf / Kette ---------- */

.chain .card { position: relative; }
@media (min-width: 861px) {
  .chain .card:not(:last-child)::after {
    content: ""; position: absolute; top: 50%; right: calc(var(--gap) * -1);
    width: var(--gap); height: 1px; background: var(--line);
  }
}

.statement {
  background: var(--card); border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 1.75rem; box-shadow: var(--shadow);
  font-family: var(--serif); font-size: clamp(1.1rem, 2.1vw, 1.4rem);
  line-height: 1.45; color: var(--ink); max-width: 48rem;
}

/* ---------- Frueher / Heute ---------- */

.split { display: grid; grid-template-columns: 1.15fr .85fr; gap: var(--gap); align-items: stretch; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split .panel {
  background: var(--card); border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 1.6rem 1.75rem; box-shadow: var(--shadow);
}
.split .panel--olive {
  background: var(--olive); border-left-color: var(--orange); color: rgba(255,255,255,.85);
  display: flex; flex-direction: column; justify-content: center;
}
.split .panel--olive span {
  font-size: .6875rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.65); margin-bottom: .4rem; display: block;
}
.split .panel--olive strong {
  font-family: var(--serif); font-size: clamp(1.3rem, 2.6vw, 1.75rem); color: #fff; line-height: 1.25;
}

/* ---------- Agenda ---------- */

.agenda { list-style: none; margin: 0; padding: 0; display: grid; gap: .85rem; }
.agenda li { display: flex; gap: 1rem; align-items: flex-start; }
.agenda .n {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%;
  background: var(--orange); color: #fff; font-size: .75rem; font-weight: 600;
  display: grid; place-items: center; margin-top: .15rem;
}
.agenda .t { color: var(--ink); }
.section--olive .agenda .t { color: rgba(255,255,255,.9); }

.callout {
  background: var(--olive); color: #fff; border-radius: var(--radius);
  padding: 2rem 1.9rem; box-shadow: var(--shadow);
  display: flex; flex-direction: column; justify-content: center;
}
.callout span {
  font-size: .6875rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.callout strong { font-family: var(--serif); font-size: clamp(1.8rem, 3.4vw, 2.4rem); display: block; margin: .2rem 0 .1rem; }
.callout small { color: rgba(255,255,255,.72); font-size: .9375rem; }

/* Auf olivem Grund braucht die Karte den Gegenklang: helles Papier. */
.section--olive .callout {
  background: var(--paper); color: var(--ink);
  border-top: 3px solid var(--orange);
}
.section--olive .callout span { color: var(--ink-mute); }
.section--olive .callout strong { color: var(--ink); }
.section--olive .callout small { color: var(--ink-soft); }

/* ---------- Ueber mich ---------- */

.about { display: grid; grid-template-columns: 300px 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 820px) { .about { grid-template-columns: 1fr; } }
.portrait {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  background: var(--olive-tint);
  /* Das gelieferte Foto ist quadratisch (640 px). Quadrat statt 3:4,
     damit nichts vom Gesicht beschnitten wird. */
  aspect-ratio: 1 / 1;
  display: grid; place-items: center; border-top: 3px solid var(--orange);
  max-width: 340px;
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait .ph { text-align: center; color: var(--olive-dark); font-size: .8125rem; padding: 1rem; }
.about .name { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); margin-bottom: .1rem; }
.about .role { font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 1.4rem; }

.platzhalter {
  border: 1px dashed var(--olive); border-radius: 6px; background: var(--olive-tint);
  padding: .9rem 1.1rem; font-size: .875rem; color: var(--olive-dark); margin-top: 1.25rem;
}
.platzhalter b { display: block; font-size: .6875rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: .25rem; }

/* ---------- Kontakt ---------- */

.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 860px) { .contact { grid-template-columns: 1fr; } }
.contact-list { list-style: none; margin: 1.75rem 0 0; padding: 0; display: grid; gap: .9rem; }
.contact-list li { display: flex; gap: .85rem; align-items: baseline; font-size: .9375rem; }
.contact-list .k {
  flex: 0 0 5.5rem; font-size: .6875rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-mute);
}
.contact-list a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); }
.contact-list a:hover { color: var(--orange); border-color: var(--orange); }

.form { background: var(--card); border-top: 3px solid var(--orange); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow); }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: .35rem; }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: .9375rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line); border-radius: 6px;
  padding: .7rem .85rem; transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--olive); box-shadow: 0 0 0 3px rgba(110,127,78,.14);
}
.form .hint { font-size: .8125rem; color: var(--ink-mute); margin-top: .9rem; }

/* ---------- Fusszeile ---------- */

.site-footer { background: var(--ink); color: rgba(255,255,255,.62); padding-block: 2.75rem; font-size: .875rem; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; }
.footer-inner .brand-f { font-family: var(--serif); color: #fff; font-size: 1rem; margin-right: auto; }
.site-footer a { color: rgba(255,255,255,.72); text-decoration: none; }
.site-footer a:hover { color: var(--orange); }

/* ---------- Alternative Farbwelt: Oliv/Orange aus der Praesentation ----------
   Nur noch ueber ?farbe=oliv erreichbar, falls der Kunde vergleichen will. */

:root[data-farbe="oliv"] {
  --paper:      #F4F1E8;
  --paper-warm: #EFEBDE;
  --ink:        #2E4550;
  --ink-soft:   #5B6970;
  --ink-mute:   #8A9299;
  --olive:      #6E7F4E;
  --olive-dark: #5C6B40;
  --olive-tint: #EDF0E4;
  --orange:     #D2762C;
  --line:       #E0DACB;
}

/* ---------- Variante 2: Seitenkopf der Unterseiten ---------- */

.pagehead {
  border-left: 4px solid var(--orange);
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
.pagehead h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
.pagehead .lead { margin-top: .25rem; }

/* Kacheln auf der Startseite: vier Flaechen, jede ganz anklickbar. */
.kacheln { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
@media (max-width: 760px) { .kacheln { grid-template-columns: 1fr; } }

.kachel {
  display: flex; flex-direction: column;
  background: var(--card); border-top: 3px solid var(--orange);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  text-decoration: none; color: inherit; min-height: 190px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.kachel:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 4px rgba(46,69,80,.06), 0 16px 36px rgba(46,69,80,.11);
}
.kachel .num {
  font-family: var(--serif); font-size: .8125rem; font-weight: 700;
  color: var(--orange); letter-spacing: .08em; margin-bottom: .6rem;
}
.kachel h3 { margin-bottom: .4rem; font-size: clamp(1.25rem, 2.2vw, 1.5rem); }
.kachel p { font-size: .9375rem; color: var(--ink-soft); flex: 1; margin-bottom: 1.25rem; }
.kachel .pfeil {
  font-size: .8125rem; color: var(--olive-dark);
  display: inline-flex; align-items: center; gap: .45rem;
}
.kachel:hover .pfeil { color: var(--orange); }
.kachel .pfeil::after { content: "\2192"; transition: transform .2s ease; }
.kachel:hover .pfeil::after { transform: translateX(4px); }

/* Weiterfuehrender Hinweis am Seitenende */
.weiter {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem; border-top: 1px solid var(--line); padding-top: 1.75rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.weiter p { font-size: .9375rem; margin: 0; }

/* ---------- Variante 3: kompakt ---------- */

.hero--kompakt {
  background: var(--olive); color: rgba(255,255,255,.85);
  border-left: 4px solid var(--orange);
  padding-block: clamp(3.5rem, 9vw, 6.5rem);
}
.hero--kompakt::after { display: none; }
.hero--kompakt h1, .hero--kompakt .claim { color: #fff; }
.hero--kompakt .claim em { color: #F6D3A8; }
.hero--kompakt .eyebrow { color: rgba(255,255,255,.6); }
.hero--kompakt .lead { color: rgba(255,255,255,.82); }
.hero--kompakt .rule { background: var(--orange); }
.hero--kompakt .btn-primary { background: var(--paper); color: var(--ink); }
.hero--kompakt .btn-primary:hover { background: #fff; color: var(--ink); }
.hero--kompakt .btn-ghost { border-color: rgba(255,255,255,.35); color: #fff; }
.hero--kompakt .btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }
.hero--kompakt .hero-meta { border-top-color: rgba(255,255,255,.2); color: rgba(255,255,255,.55); }

.hero--kompakt .hero-grid {
  display: grid; grid-template-columns: 1fr 260px; gap: clamp(2rem, 5vw, 4rem);
  align-items: center; max-width: none;
}
@media (max-width: 860px) { .hero--kompakt .hero-grid { grid-template-columns: 1fr; } }
.hero--kompakt .portrait { background: rgba(255,255,255,.12); border-top-color: var(--orange); }
.hero--kompakt .portrait .ph { color: rgba(255,255,255,.75); }

/* Kurzfassung: Aussagen als schmale Liste statt als Kartenraster. */
.punkte { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; background: var(--line); border-radius: var(--radius); overflow: hidden; }
.punkte li { background: var(--card); padding: 1.15rem 1.4rem; display: flex; gap: 1.1rem; align-items: baseline; }
.punkte .num {
  flex: 0 0 auto; font-family: var(--serif); font-weight: 700; font-size: .8125rem;
  color: var(--orange); letter-spacing: .08em;
}
.punkte b { display: block; font-family: var(--serif); font-size: 1.0625rem; color: var(--ink); margin-bottom: .1rem; }
.punkte span.t { font-size: .9375rem; color: var(--ink-soft); }

/* ---------- Rechtsseiten ---------- */

/* Gleiche Falle wie beim Kopfbereich: .legal ist ebenfalls ein .wrap. */
.legal { padding-block: clamp(3rem, 7vw, 5rem); }
.legal > * { max-width: 46rem; }
.legal h2 { font-size: clamp(1.25rem, 2.4vw, 1.5rem); margin-top: 2.25rem; }
.legal p, .legal li { font-size: .9375rem; }

/* ---------- Animation ---------- */

/* Nur wenn JavaScript laeuft, wird eingeblendet - ohne JS ist alles sofort da. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
}

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--olive); color: #fff;
  padding: .7rem 1.1rem; z-index: 100; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; color: #fff; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 3px; }
