/* =====================================================================
   Andreas Link — Personalberatung
   Design system: "Hanseatic Editorial"
   Palette: Elbe-Ink / Teal / Brass on cool fog paper
   Type: Fraunces (display) · Instrument Sans (body) · IBM Plex Mono (labels)
   Signature: recurring Hamburg coordinate marker + fine brass rule
   ===================================================================== */

:root {
  --ink: #0F1E28;
  --ink-2: #16303b;
  --elbe: #1c5a63;
  --brass: #b0894e;
  --brass-lt: #cbab7d;
  --fog: #e8ebe6;
  --paper: #fbfbf8;
  --text: #1a2830;
  --muted: #59666d;
  --line: #d9ddd6;
  --line-dk: rgba(255, 255, 255, .16);

  --maxw: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4rem, 9vw, 8rem);
  --radius: 4px;

  --f-display: "Fraunces", Georgia, "Times New Roman", serif;
  --f-body: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;
}

/* ============ THEMES (klassisch / modern / persönlich) ============
   :root oben = die aktuell entwickelte Version = "modern" (Standard).
   Die folgenden Klassen überschreiben nur Design-Tokens -> das gesamte
   Layout wird umgefärbt/-gesetzt, Struktur bleibt identisch. */
.theme-modern { /* nutzt die :root-Defaults (aktuelles Design) */ }

/* Klassisch: hanseatisch-formell — Navy & Gold, klassische Buch-Serife, kantiger */
.theme-classic {
  --ink: #14263d; --ink-2: #1e3550; --elbe: #1d3a5f; --brass: #a9863f;
  --fog: #efe9dc; --paper: #fbf9f3; --text: #1b2733; --muted: #586170; --line: #e3dccb;
  --f-display: "Newsreader", Georgia, "Times New Roman", serif;
  --radius: 2px;
}
.theme-classic h1, .theme-classic h2, .theme-classic h3 { font-weight: 400; }

/* Persönlich: wärmer & nahbarer — Petrol/Grün, Kupfer, Creme, weichere Rundungen */
.theme-personal {
  --ink: #22403a; --ink-2: #2c524a; --elbe: #2f6e5e; --brass: #b06a3b;
  --fog: #f1eae0; --paper: #fbf7f0; --text: #28312c; --muted: #5f665d; --line: #e6ddcd;
  --radius: 12px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;                 /* Safety-Net gegen horizontales Scrollen */
}

h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 380;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-optical-sizing: auto;
  margin: 0;
  overflow-wrap: break-word;
  hyphens: auto;                      /* lange dt. Komposita brechen sauber */
}

p { margin: 0 0 1rem; }
a { color: var(--elbe); text-decoration-thickness: 1px; text-underline-offset: 3px; }
img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--brass); color: #fff; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; border-radius: 2px; }

.container { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--ink); color: #fff; padding: .7rem 1.1rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---- Eyebrow label (mono, brass tick) ---- */
.eyebrow {
  font-family: var(--f-mono);
  font-size: .72rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--elbe);
  display: flex; align-items: center; gap: .6rem; flex-wrap: wrap;
  margin: 0 0 1.2rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--brass);
  display: inline-block; flex: none;
}

/* ---- Coordinate signature marker ---- */
.coord {
  font-family: var(--f-mono); font-size: .7rem; letter-spacing: .1em;
  color: var(--muted); display: inline-flex; align-items: center; gap: .55rem;
}
.coord::before { content: "◈"; color: var(--brass); font-size: .8em; }

/* =====================  HEADER  ===================== */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
}
.brand { display: flex; align-items: baseline; gap: .6rem; text-decoration: none; color: var(--ink); }
.brand b { font-family: var(--f-display); font-weight: 500; font-size: 1.28rem; letter-spacing: -.02em; }
.brand span { font-family: var(--f-mono); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a { font-size: .95rem; color: var(--ink); text-decoration: none; opacity: .82; transition: opacity .2s; }
.nav a:hover { opacity: 1; }
.nav .nav-cta {
  font-family: var(--f-mono); font-size: .78rem; letter-spacing: .04em;
  border: 1px solid var(--ink); border-radius: 999px; padding: .5rem 1.1rem; opacity: 1;
  transition: background .2s, color .2s;
}
.nav .nav-cta:hover { background: var(--ink); color: var(--paper); }
.nav-toggle { display: none; }

/* =====================  BUTTONS  ===================== */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--f-mono); font-size: .82rem; letter-spacing: .03em;
  padding: .95rem 1.5rem; border-radius: 999px; text-decoration: none;
  border: 1px solid transparent; cursor: pointer; transition: transform .18s ease, background .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--elbe); }
.btn-ghost { border-color: color-mix(in srgb, var(--ink) 55%, transparent); color: var(--ink);
  background: color-mix(in srgb, var(--paper) 55%, transparent); backdrop-filter: blur(2px); }
.btn-ghost:hover { border-color: var(--ink); background: var(--paper); }
.btn-brass { background: var(--brass); color: #fff; }
.cta-short { display: none; }   /* nur auf Mobile sichtbar (siehe Media-Query) */

/* =====================  HERO  ===================== */
.hero { position: relative; overflow: hidden; }
.hero-inner {
  display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center; padding-block: clamp(3.5rem, 7vw, 6.5rem) clamp(2.5rem, 5vw, 4rem);
}
.hero h1 { font-size: clamp(2.1rem, 4.8vw, 3.7rem); font-weight: 340; margin-bottom: 1.3rem; }
.hero h1 em { font-style: italic; color: var(--elbe); }
.hero .subline { font-size: 1.16rem; color: var(--muted); max-width: 34rem; margin-bottom: 2rem; }
.hero .cta-row { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-bottom: 1.8rem; }
.hero .coord { margin-top: .3rem; }

/* Portrait – bewusst dezent gehalten */
.portrait-frame { position: relative; max-width: 280px; margin-left: auto; }
.portrait-frame img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius);
  filter: grayscale(.12) contrast(1.02);
}
.portrait-frame::after {
  content: ""; position: absolute; inset: 10px -10px -10px 10px; z-index: -1;
  border: 1px solid var(--brass); border-radius: var(--radius);
}

/* ---- Hero-Bild — Variante B: Bild als rechtes Panel NEBEN dem Text (ohne Personenfoto) ---- */
.hero-b { position: relative; overflow: hidden; }
.hero-b .hero-bg { position: absolute; top: 0; bottom: 0; right: 0; width: 58%; z-index: 0; }
.hero-b .hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 40%;
  filter: saturate(.6) contrast(.9) brightness(1.06); opacity: .82; }
/* weicher Übergang: linke Bildkante blendet ins Papier, damit keine harte Naht entsteht */
.hero-b::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, var(--paper) 44%, color-mix(in srgb, var(--paper) 72%, transparent) 56%, transparent 74%);
}
.hero-b .hero-inner {
  position: relative; z-index: 2; grid-template-columns: 1fr;
  min-height: clamp(440px, 56vh, 640px); align-content: center;
}
.hero-b .hero-inner > .reveal { max-width: 44rem; }
@media (max-width: 900px) {
  .hero-b .hero-bg { position: absolute; inset: 0; width: 100%; }
  .hero-b::before { background: linear-gradient(180deg, var(--paper) 52%, color-mix(in srgb, var(--paper) 55%, transparent) 100%); }
  .hero-b .hero-inner { min-height: 0; }
}

/* ---- Hero-Bild — Variante C: schmaler Zierstreifen unten ---- */
.hero-strip { position: relative; margin-top: 1rem; border-top: 1px solid var(--line); }
.hero-strip img { width: 100%; height: clamp(120px, 15vw, 180px); object-fit: cover; object-position: center 45%; display: block; }
.hero-strip .coord { position: absolute; right: var(--gutter); bottom: .8rem; z-index: 2;
  background: color-mix(in srgb, var(--paper) 80%, transparent); padding: .3rem .75rem; border-radius: 999px; }

/* =====================  FACTS STRIP  ===================== */
.facts {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.fact { padding: 1.6rem var(--gutter); }
.fact + .fact { border-left: 1px solid var(--line); }
.fact .v { font-family: var(--f-display); font-size: 1.5rem; color: var(--ink); line-height: 1.1; }
.fact .l { font-family: var(--f-mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: .35rem; }

/* =====================  SECTIONS  ===================== */
section { scroll-margin-top: 84px; }
.section { padding-block: var(--section-y); }
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.section-head .lead { font-size: 1.2rem; color: var(--muted); margin-top: 1rem; }

.alt { background: var(--fog); }

/* ---- About ---- */
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.about-portrait img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); }
.about-lead {
  font-family: var(--f-display); font-size: clamp(1.4rem, 2.6vw, 2rem); font-style: italic;
  color: var(--ink); line-height: 1.3; margin-bottom: 1.5rem; text-wrap: balance;
}
.about-body p { color: var(--text); }
.about-sign { margin-top: 1.5rem; }
.about-sign .name { font-family: var(--f-display); font-size: 1.35rem; color: var(--ink); }
.about-sign .role { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* ---- Werdegang (timeline) ---- */
.timeline { display: grid; gap: 0; border-left: 1px solid var(--line); }
.tl-item { position: relative; padding: 1.6rem 0 1.6rem 2rem; border-bottom: 1px solid var(--line); }
.tl-item:last-child { border-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: -5px; top: 2.05rem; width: 9px; height: 9px;
  border-radius: 50%; background: var(--paper); border: 1.5px solid var(--brass);
}
.tl-item.alt-bg::before { background: var(--fog); }
.tl-period { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--elbe); }
.tl-role { font-family: var(--f-display); font-size: 1.3rem; color: var(--ink); margin: .3rem 0 .5rem; }
.tl-detail { color: var(--muted); max-width: 44rem; margin: 0; }

/* ============ Leistungen — 3 Darstellungen ============ */
/* gemeinsame Index-Ziffer */
.svc-rows .idx, .svc-cards .idx { font-family: var(--f-mono); font-size: .74rem; color: var(--brass); letter-spacing: .14em; }

/* Variante A: Editorial-Zeilen */
.svc-rows { display: grid; }
.svc-row { display: grid; grid-template-columns: minmax(15rem, 21rem) 1fr; gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: baseline; padding: clamp(1.6rem, 3vw, 2.4rem) 0; border-top: 1px solid var(--line); }
.svc-rows .svc-row:last-child { border-bottom: 1px solid var(--line); }
.svc-row-head { display: flex; align-items: baseline; gap: 1rem; }
.svc-row-head h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
.svc-row > p { color: var(--muted); margin: 0; font-size: 1.05rem; }
@media (max-width: 760px) { .svc-row { grid-template-columns: 1fr; gap: .8rem; } }

/* Variante B: großzügige, gehobene Karten */
.svc-cards { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 2.2rem); }
.svc-card { position: relative; background: var(--paper); border: 1px solid var(--line);
  border-radius: 14px; padding: clamp(2rem, 3.5vw, 3rem); padding-top: clamp(2.2rem, 3.5vw, 3.2rem);
  transition: transform .18s ease, box-shadow .22s ease, border-color .2s; }
.svc-card::before { content: ""; position: absolute; left: clamp(2rem,3.5vw,3rem); top: 0; width: 40px; height: 3px; background: var(--brass); }
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 20px 46px rgba(15, 30, 40, .1); border-color: transparent; }
.svc-card h3 { font-size: 1.5rem; margin: .8rem 0 .9rem; }
.svc-card p { color: var(--muted); margin: 0; }
@media (max-width: 760px) { .svc-cards { grid-template-columns: 1fr; } }

/* Variante C: Zwei-Spalten mit großer Zierziffer */
.svc-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem) clamp(2.5rem, 5vw, 4.5rem); }
.svc-col { position: relative; padding-left: 4.5rem; }
.svc-col .ghost { position: absolute; left: 0; top: -.4rem; font-family: var(--f-display);
  font-size: 3.4rem; font-weight: 300; color: var(--line); line-height: 1; }
.svc-col h3 { font-size: 1.4rem; margin: 0 0 .7rem; }
.svc-col p { color: var(--muted); margin: 0; }
@media (max-width: 760px) { .svc-cols { grid-template-columns: 1fr; } }

/* ---- Branchen — Variante A: Sektoren-Index ---- */
.sector-index { display: grid; }
.sx-row { display: grid; grid-template-columns: 3rem minmax(11rem, 18rem) 1fr; gap: 1.4rem;
  align-items: baseline; padding: 1.3rem 0; border-top: 1px solid var(--line); }
.sector-index .sx-row:last-child { border-bottom: 1px solid var(--line); }
.sx-no { font-family: var(--f-mono); font-size: .78rem; color: var(--brass); letter-spacing: .1em; }
.sx-name { font-family: var(--f-display); font-size: 1.32rem; color: var(--ink); line-height: 1.2; }
.sx-note { color: var(--muted); }
@media (max-width: 760px) {
  .sx-row { grid-template-columns: 2.2rem 1fr; row-gap: .5rem; }
  .sx-note { grid-column: 2; }
}

/* ---- Branchen — Variante B: Illustrierte Kacheln (2 pro Reihe, Desktop) ---- */
.sector-cards { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.2rem, 2.5vw, 1.8rem); }
.sector-card { display: grid; grid-template-columns: auto 1fr; column-gap: 1.1rem; align-items: start;
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  padding: clamp(1.5rem, 2.5vw, 2rem); transition: transform .18s ease, box-shadow .22s ease, border-color .2s; }
.sector-card .ic { grid-row: span 2; }
@media (max-width: 680px) { .sector-cards { grid-template-columns: 1fr; } }
.sector-card:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgba(15, 30, 40, .08); border-color: transparent; }
.sector-card .ic { color: var(--brass); display: block; margin-top: .1rem; }
.sector-card h3 { font-size: 1.18rem; line-height: 1.25; margin: 0 0 .5rem; }
.sector-card p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---- Branchen — Variante C: Atmosphäre + Schlagworte ---- */
.sector-band { border-radius: 14px; overflow: hidden; margin: 0 0 2.2rem;
  border: 1px solid var(--line); }
.sector-band img { width: 100%; height: clamp(200px, 28vw, 360px); object-fit: cover; display: block; }
.sector-flow { display: flex; flex-wrap: wrap; align-items: baseline; }
.sector-flow .sf { font-family: var(--f-display); font-size: clamp(1.1rem, 2.1vw, 1.7rem); color: var(--ink); line-height: 1.5; }
.sector-flow .dot { color: var(--brass); margin: 0 .85rem; font-size: .6em; position: relative; top: -.2em; }

/* ---- Industries ---- */
.chips { display: flex; flex-wrap: wrap; gap: .7rem; }
.chips li {
  list-style: none;
  font-size: .95rem; padding: .55rem 1.1rem; border: 1px solid var(--line);
  border-radius: 999px; background: var(--paper); color: var(--ink);
}
.alt .chips li { background: var(--paper); }

/* ---- Approach ---- */
.approach-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.principles { list-style: none; padding: 0; margin: 0; }
.principles li { position: relative; padding: 1rem 0 1rem 2.2rem; border-top: 1px solid var(--line); font-size: 1.15rem; color: var(--ink); }
.principles li:last-child { border-bottom: 1px solid var(--line); }
.principles li::before {
  content: ""; position: absolute; left: 0; top: 1.5rem; width: 18px; height: 1px; background: var(--brass);
}
.pullquote {
  font-family: var(--f-display); font-style: italic; font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.32; color: var(--ink); text-wrap: balance;
}
.pullquote .mark { color: var(--brass); }

/* ---- Audiences ---- */
.aud-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.aud { background: var(--paper); padding: clamp(1.8rem, 3vw, 2.8rem); }
.alt .aud { background: var(--fog); }
.aud h3 { font-size: 1.5rem; margin-bottom: 1.2rem; }
.aud ul { list-style: none; margin: 0; padding: 0; }
.aud li { position: relative; padding: .6rem 0 .6rem 1.6rem; border-top: 1px solid var(--line); color: var(--text); }
.aud li::before { content: "→"; position: absolute; left: 0; color: var(--brass); }

/* ---- FAQ ---- */
.faq { display: grid; gap: 0; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.4rem 2.5rem 1.4rem 0; position: relative;
  font-family: var(--f-display); font-size: 1.28rem; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: .3rem; top: 1.25rem; font-family: var(--f-body);
  font-size: 1.5rem; color: var(--brass); transition: transform .25s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer { padding: 0 3rem 1.5rem 0; color: var(--muted); margin: 0; max-width: 52rem; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-card address { font-style: normal; display: grid; gap: .6rem; }
.contact-card .line { display: flex; gap: .8rem; align-items: baseline; flex-wrap: wrap; }
.contact-card .k { font-family: var(--f-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); min-width: 4.5rem; flex: none; }
.contact-card .line > span, .contact-card .line > a { min-width: 0; overflow-wrap: anywhere; }
.contact-card a { color: var(--ink); text-decoration: none; }
.contact-card a:hover { color: var(--elbe); }
.contact-detail { margin-top: 1.8rem; border-radius: var(--radius); overflow: hidden; }
.contact-detail img { width: 100%; height: 160px; object-fit: cover; }

.form { display: grid; gap: 1.1rem; }
.form label { display: grid; gap: .4rem; font-family: var(--f-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.form input, .form textarea {
  font-family: var(--f-body); font-size: 1rem; color: var(--text);
  padding: .85rem 1rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); transition: border-color .2s;
}
.alt .form input, .alt .form textarea { background: var(--paper); }
.form input:focus, .form textarea:focus { border-color: var(--elbe); outline: none; }
.form button { justify-self: start; margin-top: .4rem; }
.form .hint { font-family: var(--f-body); font-size: .82rem; letter-spacing: 0; text-transform: none; color: var(--muted); }

/* =====================  FOOTER  ===================== */
.site-footer { background: var(--ink); color: #cdd8dc; }
.site-footer .container { padding-block: clamp(3rem, 6vw, 5rem); }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line-dk); }
.site-footer .brand b { color: #fff; }
.site-footer .brand span { color: #8aa0a7; }
.site-footer h4 { font-family: var(--f-mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: #8aa0a7; margin: 0 0 1rem; }
.site-footer a { color: #cdd8dc; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.foot-links { display: grid; gap: .55rem; }
.foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.6rem; font-size: .82rem; color: #8aa0a7; }
.foot-bottom .coord { color: #8aa0a7; }
.foot-bottom .coord::before { color: var(--brass); }

/* =====================  SIMPLE / LEGAL PAGES  ===================== */
.prose { padding-block: clamp(3rem, 7vw, 6rem); }
.prose .container { max-width: 46rem; }
.prose h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.prose h2 { font-size: 1.4rem; margin: 2rem 0 .8rem; }
.prose p { color: var(--muted); }
.prose a { color: var(--elbe); }
.prose .back { display: inline-block; margin-top: 2rem; font-family: var(--f-mono); font-size: .8rem; letter-spacing: .04em; }
.prose.center { min-height: 52vh; display: grid; place-items: center; text-align: center; }
.prose.center .btn { margin-top: 1.5rem; }

/* =====================  MOTION (reveal)  =====================
   CSS-only entrance: content is ALWAYS visible (animation ends visible and
   is skipped entirely if unsupported or reduced-motion). No JS dependency. */
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.reveal { animation: rise .7s cubic-bezier(.22,.61,.36,1) both; }
@media (prefers-reduced-motion: reduce) { .reveal { animation: none; } }

/* =====================  RESPONSIVE  ===================== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .portrait-frame { max-width: 340px; }
  .about-grid, .approach-grid, .contact-grid { grid-template-columns: 1fr; }
  .svc-grid, .aud-grid { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .fact + .fact { border-left: 0; border-top: 1px solid var(--line); }
  .foot-top { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .nav { position: fixed; inset: 68px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    transform: translateY(-120%); transition: transform .3s ease; padding: .5rem var(--gutter) 1.2rem; }
  .nav.open { transform: translateY(0); }
  .nav a { padding: .9rem 0; border-bottom: 1px solid var(--line); opacity: 1; }
  .nav .nav-cta { border: 1px solid var(--ink); text-align: center; margin-top: .8rem; }
  .nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: .4rem; }
  .nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: .25s; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 560px) {
  .cta-full { display: none; }
  .cta-short { display: inline; }   /* "Gespräch vereinbaren" statt langer Text -> keine 2. Zeile */
}
@media (max-width: 420px) {
  .hero h1 { font-size: 1.85rem; overflow-wrap: anywhere; }
  .fact { padding: 1.2rem var(--gutter); }
}
