/* =========================================================
   Ulrike von den Driesch — Coaching · Beratung · Moderation
   Redesign 2026 · Editorial, warm, präzise · v4
   System: siehe DESIGN.md
   ========================================================= */

/* ==================== FONTS (self-hosted) ==================== */
@font-face {
  font-family: 'Fraunces'; font-style: normal; font-weight: 300 700; font-display: swap;
  src: url(../fonts/fraunces-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces'; font-style: normal; font-weight: 300 700; font-display: swap;
  src: url(../fonts/fraunces-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Fraunces'; font-style: italic; font-weight: 300 700; font-display: swap;
  src: url(../fonts/fraunces-italic-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces'; font-style: italic; font-weight: 300 700; font-display: swap;
  src: url(../fonts/fraunces-italic-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 300 700; font-display: swap;
  src: url(../fonts/inter-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 300 700; font-display: swap;
  src: url(../fonts/inter-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ==================== TOKENS ==================== */
:root {
  --plum: #3d2b3d;
  --plum-700: #2a1c2b;
  --plum-300: #6e556e;

  --cream: #f8f4ed;
  --cream-deep: #f1ebdf;
  --paper: #fffdf9;

  --terra: #c46f4d;
  --terra-700: #a8543a;

  --gold: #d4b68c;
  --sage: #8fa68e;
  --sage-700: #6e8a6d;

  --ink: #1a1418;
  --muted: #5c4e58;
  --line: #e6ddcf;
  --line-dark: rgba(248, 244, 237, .16);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --fs-hero: clamp(3.2rem, 9.5vw, 8rem);
  --fs-h2: clamp(2.2rem, 5vw, 4.3rem);
  --fs-h3: clamp(1.4rem, 2.4vw, 2rem);
  --fs-lead: clamp(1.1rem, 1.5vw, 1.35rem);

  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 7rem;
  --space-8: 10rem;

  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 28px;
  --r-pill: 999px;

  --shadow-1: 0 1px 2px rgba(26,20,24,.05), 0 2px 10px rgba(26,20,24,.05);
  --shadow-2: 0 18px 44px -16px rgba(26,20,24,.20);
  --shadow-3: 0 38px 80px -24px rgba(42,28,43,.34);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --nav-h: 78px;
  --top-bar: 0px; /* Höhe des Promo-Banners; per JS auf has-promo gesetzt */
}

/* ==================== RESET / BASE ==================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--plum); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--terra); }
button { font-family: inherit; }
::selection { background: var(--terra); color: var(--paper); }
[id] { scroll-margin-top: calc(var(--nav-h) + var(--top-bar) + 1.5rem); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 380;
  line-height: 1.04;
  letter-spacing: -.022em;
  color: var(--plum);
  margin: 0 0 .5em;
}
h1 { font-size: var(--fs-hero); line-height: .98; }
h2 { font-size: var(--fs-h2); line-height: 1.02; }
h3 { font-size: var(--fs-h3); }
h4 { font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; color: var(--plum); margin: 0 0 .45em; }
p { margin: 0 0 1em; color: var(--muted); }
.lead { font-size: var(--fs-lead); color: var(--ink); line-height: 1.5; font-weight: 380; }
em.serif { font-family: var(--font-display); font-style: italic; color: var(--terra); letter-spacing: -.01em; }

.container { width: min(1280px, 92%); margin-inline: auto; }
.container-narrow { width: min(760px, 92%); margin-inline: auto; }
.container-wide { width: min(1440px, 95%); margin-inline: auto; }
section { position: relative; }

/* Skip link */
.skip-link {
  position: absolute; top: -56px; left: 8px; z-index: 200;
  background: var(--plum); color: var(--cream); padding: .55rem 1rem;
  border-radius: 6px; font-size: .9rem; transition: top .2s;
}
.skip-link:focus { top: 8px; color: var(--cream); }

/* Focus */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 2px solid var(--terra); outline-offset: 3px; border-radius: 4px;
}

/* ==================== SEKTIONS-GRAMMATIK ==================== */
.sec { padding: var(--space-7) 0; }
.sec-lg { padding: var(--space-8) 0; }
@media (max-width: 720px) { .sec { padding: 4.5rem 0; } .sec-lg { padding: 6rem 0; } }


.sec-head {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(1.5rem, 4vw, 4rem); align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.sec-head h2 { margin-bottom: 0; }
.sec-head .sec-intro { max-width: 44ch; justify-self: end; padding-bottom: .35rem; }
.sec-head .sec-intro p:last-child { margin-bottom: 0; }
@media (max-width: 880px) {
  .sec-head { grid-template-columns: 1fr; align-items: start; }
  .sec-head .sec-intro { justify-self: start; }
}

/* ==================== NAV ==================== */
.nav {
  position: fixed; top: var(--top-bar); left: 0; right: 0; z-index: 120;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.2rem, 4vw, 3rem);
  transition: box-shadow .35s var(--ease), height .35s var(--ease), transform .45s var(--ease);
}
/* Blur liegt auf dem Pseudo-Element: backdrop-filter auf .nav selbst würde
   das fixed positionierte Mobile-Menü (.nav-links) im Nav-Kasten einsperren. */
.nav::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: rgba(248, 244, 237, 0);
  transition: background .35s var(--ease), backdrop-filter .35s var(--ease);
}
.nav.scrolled::before {
  background: rgba(248, 244, 237, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav.scrolled {
  box-shadow: 0 1px 0 var(--line);
  height: 64px;
}
.nav.nav-hidden { transform: translateY(calc(-100% - var(--top-bar) - 4px)); }
.nav-links {
  display: flex; gap: clamp(1.4rem, 2.5vw, 2.6rem); align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.nav-links > li > a {
  font-size: .95rem; font-weight: 500; color: var(--ink);
  position: relative; padding: .3rem 0;
}
.nav-links > li > a::after {
  content: ""; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1.5px; background: var(--terra);
  transition: width .3s var(--ease);
}
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { width: 100%; }

.nav-cta {
  background: var(--plum); color: var(--paper);
  padding: .7rem 1.4rem; border-radius: var(--r-pill);
  font-size: .92rem; font-weight: 500;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.nav-links > li > a.nav-cta { color: var(--paper); padding: .7rem 1.4rem; }
.nav-links > li > a.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--terra); color: var(--paper); transform: translateY(-1px); }

/* Submenu */
.nav-links li.has-sub { position: relative; }
.nav-links .submenu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
  background: var(--paper); padding: .9rem;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-3);
  min-width: 235px;
  opacity: 0; visibility: hidden;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s .25s;
  border: 1px solid var(--line);
}
.nav-links li.has-sub:hover .submenu,
.nav-links li.has-sub:focus-within .submenu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}
.submenu ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .2rem; }
.submenu a {
  display: block; padding: .55rem .9rem; font-size: .92rem;
  color: var(--plum); border-radius: 8px;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.submenu a:hover { background: var(--cream-deep); color: var(--terra); }

/* Burger */
.burger {
  display: none; background: transparent; border: 0; width: 44px; height: 44px;
  position: relative; cursor: pointer;
}
.burger span {
  position: absolute; left: 10px; right: 10px; height: 1.5px; background: var(--ink);
  transition: transform .3s var(--ease), top .3s var(--ease), opacity .25s var(--ease);
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 26px; }
.nav.open .burger span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav.open .burger span:nth-child(2) { opacity: 0; }
.nav.open .burger span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 960px) {
  .burger { display: block; }
  .nav-links {
    position: fixed; inset: 0; padding: calc(var(--nav-h) + var(--top-bar) + 1.5rem) 2rem 2.5rem;
    flex-direction: column; gap: 1.1rem; justify-content: flex-start;
    background: var(--cream);
    transform: translateX(102%); transition: transform .45s var(--ease);
    align-items: flex-start; overflow-y: auto;
  }
  .nav.open { background: var(--cream); }
  .nav.open .nav-links { transform: translateX(0); }
  .nav-links > li { width: 100%; border-bottom: 1px solid var(--line); padding-bottom: 1rem; }
  .nav-links > li > a { font-size: 1.9rem; font-family: var(--font-display); font-weight: 400; }
  .nav-links .submenu {
    position: static; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; padding: .6rem 0 0; min-width: 0;
    background: transparent; border: 0;
  }
  .submenu a { font-size: 1rem; padding: .35rem 0; color: var(--muted); }
  .nav-links > li:last-child { border-bottom: 0; }
  .nav-links > li > a.nav-cta { font-family: var(--font-body); font-size: 1.05rem; padding: 1rem 1.6rem; margin-top: .4rem; }
}

/* ==================== LOGO ==================== */
.logo { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; }
.logo:hover { color: inherit; }
.logo-mark { width: 40px; height: 40px; flex-shrink: 0; display: block; color: var(--plum); transition: transform .7s var(--ease); }
.logo:hover .logo-mark { transform: rotate(40deg); }
.logo-mark svg { width: 100%; height: 100%; display: block; }
.logo-wordmark { display: flex; flex-direction: column; line-height: 1; font-family: var(--font-display); color: var(--plum); }
.logo-wordmark .name { font-size: 1.18rem; letter-spacing: .005em; text-transform: lowercase; line-height: 1.05; }
.logo-wordmark .tag {
  font-family: var(--font-body); font-size: .6rem; letter-spacing: .27em;
  text-transform: uppercase; color: var(--terra); margin-top: 4px; font-weight: 500;
}
@media (max-width: 540px) { .logo-wordmark .tag { display: none; } }

/* ==================== BUTTONS ==================== */
.btn[disabled] { opacity: .6; cursor: not-allowed; pointer-events: none; transform: none !important; }
.btn-spinner {
  width: 1em; height: 1em; border: 2px solid currentColor; border-right-color: transparent;
  border-radius: 50%; display: inline-block; animation: btn-spin .6s linear infinite;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .btn-spinner { animation: none; opacity: .6; }
}
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: 1.05rem 1.9rem; border-radius: var(--r-pill);
  font-weight: 500; font-size: .98rem; letter-spacing: .01em;
  text-decoration: none; border: 1px solid transparent;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease),
              border-color .3s var(--ease), box-shadow .3s var(--ease);
  cursor: pointer; white-space: nowrap; line-height: 1;
}
.btn .ico-svg { transition: transform .3s var(--ease); }
.btn:hover .ico-svg { transform: translateX(4px); }
.btn-primary { background: var(--plum); color: var(--paper); }
.btn-primary:hover { background: var(--terra); color: var(--paper); transform: translateY(-2px); box-shadow: var(--shadow-2); }
.btn-ghost { background: transparent; color: var(--plum); border-color: var(--plum-300); }
.btn-ghost:hover { background: var(--plum); border-color: var(--plum); color: var(--paper); }
.btn-light { background: var(--cream); color: var(--plum); }
.btn-light:hover { background: var(--gold); color: var(--plum-700); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }

.ico-svg { width: 1.1em; height: 1.1em; flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .95rem; font-weight: 500; color: var(--plum);
}
.btn-row { display: flex; gap: 1.4rem; align-items: center; flex-wrap: wrap; margin-top: 2rem; }
.link-arrow .ico-svg { transition: transform .3s var(--ease); }
.link-arrow:hover { color: var(--terra); }
.link-arrow:hover .ico-svg { transform: translateX(4px); }

/* ==================== HERO (Start) ==================== */
.hero {
  min-height: 100svh;
  padding: calc(var(--nav-h) + var(--top-bar) + 3rem) 0 var(--space-6);
  display: flex; align-items: center;
  position: relative; overflow: clip;
  background: var(--cream);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(46% 42% at 102% 2%, rgba(196,111,77,.11), transparent 62%),
    radial-gradient(40% 52% at -4% 104%, rgba(143,166,142,.13), transparent 60%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.04fr .96fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center; position: relative; z-index: 1;
}
.hero h1 { display: flex; flex-direction: column; margin-bottom: .4em; }
.hero h1 .word {
  display: block; overflow: clip;
}
.hero h1 .word > span {
  display: block; transform: translateY(110%);
  animation: word-rise 1s var(--ease) forwards;
}
.hero h1 .word:nth-child(2) > span { animation-delay: .1s; }
.hero h1 .word:nth-child(3) > span { animation-delay: .2s; }
.hero h1 .word.italic > span { font-style: italic; color: var(--terra); }
@keyframes word-rise { to { transform: translateY(0); } }

.hero-sub {
  max-width: 520px; margin-top: 1.4rem;
  animation: soft-in 1.1s .5s var(--ease) both;
}
.hero-ctas {
  display: flex; gap: 1.4rem; align-items: center; margin-top: 2.6rem; flex-wrap: wrap;
  animation: soft-in 1.1s .65s var(--ease) both;
}
@keyframes soft-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

.hero-visual {
  position: relative; aspect-ratio: 1 / 1.12;
  animation: soft-in 1.3s .35s var(--ease) both;
}
.hero-visual .v-main {
  position: absolute; top: 0; right: 0; width: 80%; height: 74%;
  margin: 0; overflow: hidden; border-radius: var(--r-lg);
  box-shadow: var(--shadow-3);
}
.hero-visual .v-main::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}
.hero-visual .v-side {
  position: absolute; bottom: 0; left: 0; width: 52%; height: 46%;
  margin: 0; overflow: hidden; border-radius: var(--r-lg);
  box-shadow: var(--shadow-3);
}
.hero-visual figure img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.hero-visual .v-side img { object-position: 60% 40%; }
.hero-visual .v-ring {
  position: absolute; right: -7%; bottom: 16%; width: 180px; height: 180px;
  border: 1px solid var(--gold); border-radius: 50%; opacity: .8; pointer-events: none;
}
.hero-badge {
  position: absolute; top: -1.1rem; left: 4%; z-index: 3;
  background: var(--paper); padding: .8rem 1.35rem; border-radius: var(--r-pill);
  box-shadow: var(--shadow-2);
  display: inline-flex; align-items: center; gap: .65rem;
  font-size: .82rem; font-weight: 500; color: var(--plum); letter-spacing: .01em;
  animation: soft-in .9s 1s var(--ease) both;
}
.hero-badge::before {
  content: ""; width: 8px; height: 8px; background: var(--sage); border-radius: 50%;
  animation: pulse 2.4s infinite;
}
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(143,166,142,.5); } 50% { box-shadow: 0 0 0 9px rgba(143,166,142,0); } }

@media (max-width: 1000px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 720px) {
  .hero { padding: calc(var(--nav-h) + var(--top-bar) + 2.2rem) 0 3.6rem; }
  .hero-sub { margin-top: 1.2rem; }
  .hero-ctas .btn-primary { width: 100%; justify-content: center; }
  .hero-visual { aspect-ratio: auto; }
  .hero-visual .v-main { position: relative; width: 100%; height: auto; aspect-ratio: 4 / 5; }
  .hero-visual .v-side, .hero-visual .v-ring { display: none; }
  /* zentriert ohne translateX: die soft-in-Animation (fill both) würde den
     X-Versatz sonst dauerhaft überschreiben */
  .hero-badge { top: auto; bottom: 1rem; left: 0; right: 0; margin-inline: auto; width: max-content; max-width: calc(100% - 2rem); font-size: .76rem; padding: .6rem 1.1rem; }
}

/* ==================== TRUST ==================== */
.trust { padding: 3.2rem 0; background: var(--paper); border-block: 1px solid var(--line); overflow: hidden; }
.trust-head {
  display: flex; align-items: center; gap: 1.2rem;
  margin-bottom: 2.2rem;
}
.trust-head p {
  margin: 0; font-size: .76rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
}
.trust-head::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.trust-track-wrap {
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  overflow: hidden;
}
.trust-track {
  display: flex; align-items: center; width: max-content;
  animation: slide 46s linear infinite;
}
.trust-track:hover { animation-play-state: paused; }
.trust-track img {
  height: 120px; width: auto; max-width: 300px; object-fit: contain;
  margin: 0 clamp(1.8rem, 4vw, 3.2rem); flex-shrink: 0;
  opacity: .72; transition: opacity .35s var(--ease);
}
.trust-track img:hover { opacity: 1; }
@media (max-width: 720px) {
  .trust { padding: 2.4rem 0; }
  .trust-track img { height: 88px; max-width: 220px; margin: 0 1.4rem; }
}
@keyframes slide { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }

/* ==================== LEISTUNGS-ROWS ==================== */
.svc-rows { border-top: 1px solid var(--line); }
.svc-row {
  display: grid;
  grid-template-columns: clamp(70px, 9vw, 130px) 1.05fr 1fr 56px;
  gap: clamp(1rem, 3vw, 2.5rem); align-items: center;
  padding: clamp(1.8rem, 3.5vw, 2.8rem) clamp(.5rem, 1.5vw, 1.5rem);
  border-bottom: 1px solid var(--line);
  position: relative; text-decoration: none;
  transition: background .35s var(--ease);
}
.svc-row:hover { background: var(--paper); }
.svc-row .svc-num {
  font-family: var(--font-display); font-style: italic; font-weight: 340;
  font-size: clamp(2.2rem, 4.5vw, 4rem); line-height: 1; color: var(--plum-300);
  transition: color .35s var(--ease);
}
.svc-row:hover .svc-num { color: var(--terra); }
.svc-row h3 { margin: 0 0 .3rem; font-size: clamp(1.5rem, 2.6vw, 2.2rem); transition: transform .35s var(--ease); }
.svc-row:hover h3 { transform: translateX(6px); }
.svc-row .svc-tags { font-size: .82rem; color: var(--muted); letter-spacing: .02em; }
.svc-row .svc-desc { font-size: .96rem; color: var(--muted); margin: 0; max-width: 46ch; }
.svc-row .svc-arrow {
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--plum); justify-self: end;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .35s var(--ease);
}
.svc-row:hover .svc-arrow { background: var(--plum); border-color: var(--plum); color: var(--paper); transform: rotate(-45deg); }
.svc-row .svc-img {
  position: absolute; right: 16%; top: 50%;
  width: 190px; aspect-ratio: 4 / 5; border-radius: var(--r-md);
  overflow: hidden; box-shadow: var(--shadow-3);
  transform: translateY(-46%) rotate(4deg) scale(.85); opacity: 0;
  transition: opacity .4s var(--ease), transform .5s var(--ease);
  pointer-events: none; z-index: 2;
}
.svc-row .svc-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-row:hover .svc-img { opacity: 1; transform: translateY(-54%) rotate(-2.5deg) scale(1); }
@media (max-width: 880px) {
  .svc-row { grid-template-columns: clamp(54px, 12vw, 80px) 1fr 44px; }
  .svc-row .svc-desc { display: none; }
  .svc-row .svc-img { display: none; }
  .svc-row .svc-arrow { width: 44px; height: 44px; }
}

/* ==================== PHOTO-BAND ==================== */
.photo-band {
  position: relative; height: clamp(420px, 64vh, 660px); overflow: clip;
}
.photo-band img {
  width: 100%; height: 100%; object-fit: cover;
}
.photo-band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(12deg, rgba(42,28,43,.62) 0%, rgba(42,28,43,.18) 45%, transparent 70%);
}
.photo-band .band-quote {
  position: absolute; left: 0; right: 0; bottom: clamp(2rem, 5vw, 3.8rem); z-index: 2;
}
.photo-band blockquote {
  margin: 0; max-width: 21ch;
  font-family: var(--font-display); font-style: italic; font-weight: 350;
  font-size: clamp(1.7rem, 3.6vw, 3rem); line-height: 1.18; color: var(--cream);
  text-wrap: balance;
}
.photo-band cite {
  display: block; margin-top: 1rem; font-family: var(--font-body); font-style: normal;
  font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(248,244,237,.75);
}

/* ==================== FRAME / BILD-KOMPOSITIONEN ==================== */
.frame-offset { position: relative; }
.frame-offset .frame {
  border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 1 / 1.18;
  box-shadow: var(--shadow-2); position: relative; z-index: 1;
}
.frame-offset .frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.frame-offset::before {
  content: ""; position: absolute; inset: 7% -5% -5% 7%;
  border: 1px solid var(--gold); border-radius: var(--r-lg); z-index: 0;
}
.frame-offset .quote-card {
  position: absolute; right: -18px; bottom: 34px; max-width: 300px; z-index: 2;
  background: var(--paper); padding: 1.4rem 1.6rem;
  border-radius: var(--r-md); box-shadow: var(--shadow-2);
  font-family: var(--font-display); font-style: italic; color: var(--plum);
  font-size: 1.08rem; line-height: 1.4;
}
.frame-offset .quote-card cite {
  display: block; margin-top: .55rem; font-family: var(--font-body); font-style: normal;
  font-size: .76rem; color: var(--muted); letter-spacing: .04em;
}
@media (max-width: 560px) {
  .frame-offset .quote-card { right: 8px; left: 8px; max-width: none; }
  .frame-offset::before { display: none; }
}

/* ==================== SPLIT ==================== */
.split-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem); align-items: center;
}
@media (max-width: 900px) { .split-grid { grid-template-columns: 1fr; gap: 3rem; } }
.split-grid .split-copy p { max-width: 58ch; }

/* Inline-Stats (Über mich) */
.figures { display: flex; gap: clamp(1.6rem, 4vw, 3.2rem); margin: 2.2rem 0 .4rem; flex-wrap: wrap; }
.figures .fig .num {
  font-family: var(--font-display); font-weight: 360; font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  line-height: 1; color: var(--plum);
}
.figures .fig .num em { color: var(--terra); font-style: italic; }
.figures .fig .lbl { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: .5rem; }

/* ==================== DRENCH (Plum-Manifest) ==================== */
.drench { background: var(--plum); color: var(--cream); overflow: clip; }
.drench::after {
  content: ""; position: absolute; right: -12%; top: -24%; width: 640px; height: 640px;
  border-radius: 50%; background: radial-gradient(circle, rgba(212,182,140,.14), transparent 62%);
  pointer-events: none;
}
.drench h2 { color: var(--cream); }
.drench p { color: rgba(248, 244, 237, .76); }
.drench .lead { color: rgba(248, 244, 237, .9); }
.values-list { margin-top: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid var(--line-dark); position: relative; z-index: 1; }
.value-row {
  display: grid; grid-template-columns: clamp(64px, 8vw, 120px) minmax(180px, .65fr) 1fr;
  gap: clamp(1rem, 3vw, 3rem); align-items: baseline;
  padding: clamp(1.6rem, 3vw, 2.4rem) 0; border-bottom: 1px solid var(--line-dark);
}
.value-row .v-num { font-family: var(--font-display); font-style: italic; color: var(--gold); font-size: 1.2rem; }
.value-row h3 {
  color: var(--cream); margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem); font-weight: 360;
}
.value-row p { margin: 0; font-size: .98rem; line-height: 1.7; max-width: 52ch; }
@media (max-width: 760px) {
  .value-row { grid-template-columns: 48px 1fr; }
  .value-row p { grid-column: 2; }
}

/* ==================== ANTI-PITCH ==================== */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); }
@media (max-width: 800px) { .fit-grid { grid-template-columns: 1fr; gap: 2.6rem; } }
.fit-col h3 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); margin-bottom: 1rem; }
.fit-col h3 em { font-style: italic; }
.fit-col.no h3 { color: var(--plum-300); }
.fit-col ul { list-style: none; padding: 0; margin: 0; }
.fit-col li {
  padding: 1.15rem 0; border-top: 1px solid var(--line);
  font-family: var(--font-display); font-size: clamp(1.05rem, 1.6vw, 1.3rem); font-weight: 380;
  color: var(--plum); line-height: 1.45;
  display: flex; gap: 1rem; align-items: baseline;
  transition: transform .3s var(--ease), color .3s var(--ease);
}
.fit-col li:hover { transform: translateX(6px); color: var(--terra-700); }
.fit-col li::before {
  font-family: var(--font-body); font-size: 1rem; font-weight: 600; flex-shrink: 0;
}
.fit-col.yes li::before { content: "✓"; color: var(--sage-700); }
.fit-col.no li::before { content: "—"; color: var(--plum-300); }
.fit-col.no li { color: var(--muted); }

/* ==================== BENTO (Methoden) ==================== */
.bento {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(190px, auto);
}
.bento-item {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.9rem 1.7rem;
  display: flex; flex-direction: column; justify-content: flex-end; gap: .4rem;
  position: relative; overflow: hidden;
  transition: border-color .3s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.bento-item:hover { border-color: var(--terra); transform: translateY(-4px); box-shadow: var(--shadow-2); }
.bento-item .b-num {
  position: absolute; top: 1.2rem; right: 1.4rem;
  font-family: var(--font-display); font-style: italic; font-size: 1.5rem;
  color: var(--plum-300); opacity: .7;
}
.bento-item h3 { font-size: 1.3rem; margin: 0 0 .15rem; }
.bento-item p { font-size: .88rem; margin: 0; line-height: 1.55; }
.bento-item.b-photo { padding: 0; border: 0; grid-row: span 2; grid-column: span 2; }
.bento-item.b-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.bento-item.b-photo figure { margin: 0; height: 100%; position: relative; }
.bento-item.b-photo figcaption {
  position: absolute; left: 1.4rem; bottom: 1.2rem; right: 1.4rem; z-index: 2;
  font-family: var(--font-display); font-style: italic; color: var(--cream); font-size: 1.15rem;
}
.bento-item.b-photo figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(8deg, rgba(42,28,43,.55), transparent 45%);
}
.bento-item.b-dark { background: var(--plum); border-color: var(--plum); }
.bento-item.b-dark h3 { color: var(--cream); }
.bento-item.b-dark p { color: rgba(248,244,237,.8); }
.bento-item.b-dark .b-num { color: var(--gold); }
.bento-item.b-terra { background: var(--terra); border-color: var(--terra); }
.bento-item.b-terra h3, .bento-item.b-terra .b-num { color: var(--paper); }
.bento-item.b-terra p { color: rgba(255,253,249,.88); }
.bento-item.b-wide { grid-column: span 2; }
@media (max-width: 960px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-item.b-photo { grid-column: span 2; grid-row: span 1; min-height: 280px; }
  .bento-item.b-wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .bento-item.b-photo, .bento-item.b-wide { grid-column: span 1; }
  .bento-item { min-height: 0; }
}

/* ==================== MARQUEE ==================== */
.marquee-wrap {
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-block: 1px solid var(--line);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  overflow: hidden;
}
.marquee { display: flex; width: max-content; animation: slide 60s linear infinite; }
.marquee span {
  font-family: var(--font-display); font-weight: 350; font-style: italic;
  font-size: clamp(2.4rem, 5vw, 4.4rem); color: var(--plum);
  display: inline-flex; align-items: center;
  padding-right: 1.6rem; white-space: nowrap;
}
.marquee span::after { content: "·"; color: var(--terra); padding-left: 1.6rem; font-style: normal; }

/* ==================== RAIL (Prozess) ==================== */
.rail { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); position: relative; }
.rail::before {
  content: ""; position: absolute; left: 0; right: 0; top: 7px; height: 1px;
  background: var(--line);
}
.rail-step { position: relative; padding-top: 2.2rem; }
.rail-step::before {
  content: ""; position: absolute; left: 1px; top: 0;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--cream); border: 1.5px solid var(--terra);
  transition: background .3s var(--ease);
}
.rail-step:hover::before { background: var(--terra); }
.rail-step .r-num { font-family: var(--font-display); font-style: italic; color: var(--terra); font-size: 1.4rem; display: block; margin-bottom: .5rem; }
.rail-step h3 { font-size: 1.35rem; margin-bottom: .45rem; }
.rail-step p { font-size: .93rem; margin: 0; }
@media (max-width: 880px) {
  .rail { grid-template-columns: 1fr; gap: 0; }
  .rail::before { left: 7px; right: auto; top: 0; bottom: 0; width: 1px; height: auto; }
  .rail-step { padding: 0 0 2.4rem 2.4rem; }
  .rail-step:last-child { padding-bottom: .5rem; }
  .rail-step::before { left: 0; top: 6px; }
}

/* ==================== FAQ ==================== */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: grid; grid-template-columns: clamp(40px, 6vw, 70px) 1fr 36px;
  align-items: center; gap: 1rem;
  padding: 1.5rem 0;
  font-family: var(--font-display); font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 380;
  color: var(--plum);
  transition: color .25s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--terra); }
.faq-item summary .f-num { font-style: italic; color: var(--plum-300); font-size: .9em; }
.faq-item summary .plus {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--plum-300);
  display: grid; place-items: center; position: relative; justify-self: end;
  transition: transform .35s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
  color: var(--plum);
}
.faq-item summary .plus::before, .faq-item summary .plus::after { content: ""; position: absolute; background: currentColor; }
.faq-item summary .plus::before { width: 12px; height: 1.5px; }
.faq-item summary .plus::after { width: 1.5px; height: 12px; }
.faq-item[open] summary .plus { background: var(--terra); border-color: var(--terra); color: var(--paper); transform: rotate(45deg); }
.faq-item .answer { padding: 0 0 1.7rem; }
.faq-item .answer p { margin: 0; max-width: 65ch; }
.faq-item[open] .answer { animation: soft-in .45s var(--ease) both; }
@media (min-width: 721px) { .faq-item .answer { padding-left: clamp(40px, 6vw, 70px); padding-right: 3rem; } }

/* ==================== BLOG ==================== */
.post-feature {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 4vw, 4rem);
  align-items: center; margin-bottom: clamp(3rem, 6vw, 5rem);
  text-decoration: none;
}
.post-feature .pf-img { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16 / 11; box-shadow: var(--shadow-2); }
.post-feature .pf-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; transition: transform .9s var(--ease); }
.post-feature:hover .pf-img img { transform: scale(1.04); }
.post-feature h3 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); margin: .6rem 0 .8rem; transition: color .3s var(--ease); }
.post-feature:hover h3 { color: var(--terra); }
.post-feature p { max-width: 50ch; }
@media (max-width: 880px) { .post-feature { grid-template-columns: 1fr; gap: 1.4rem; } }

.post-meta { font-size: .8rem; color: var(--muted); letter-spacing: .06em; display: inline-flex; gap: .6rem; align-items: center; }
.post-meta .pm-cat {
  color: var(--terra); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; font-size: .72rem;
}

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 3vw, 2.6rem) clamp(1.4rem, 2.5vw, 2rem); }
@media (max-width: 960px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { display: flex; flex-direction: column; text-decoration: none; }
.blog-card .thumb {
  aspect-ratio: 16 / 10; overflow: hidden; border-radius: var(--r-md); margin-bottom: 1.1rem;
}
.blog-card .thumb img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 25%;
  transition: transform .8s var(--ease);
}
.blog-card:hover .thumb img { transform: scale(1.05); }
.blog-card h3 { font-size: 1.4rem; line-height: 1.16; margin: .5rem 0 .55rem; transition: color .3s var(--ease); }
.blog-card:hover h3 { color: var(--terra); }
.blog-card .excerpt { font-size: .92rem; margin: 0; }
.blog-card.hidden-by-filter, .post-feature.hidden-by-filter { display: none; }

/* Blog-Filter */
.blog-filter { display: flex; flex-direction: column; gap: 1.3rem; }
.blog-search { position: relative; max-width: 540px; width: 100%; }
.blog-search .ico-svg {
  position: absolute; left: 1.1rem; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; color: var(--muted);
}
.blog-search input {
  width: 100%; padding: .95rem 3rem;
  border: 1px solid var(--line); background: var(--paper);
  border-radius: var(--r-pill); font: inherit; font-size: 1rem; color: var(--ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.blog-search input:focus { outline: none; border-color: var(--terra); box-shadow: 0 0 0 4px rgba(196,111,77,.12); }
.blog-search-clear {
  position: absolute; right: .9rem; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--cream-deep); border: 0; color: var(--plum);
  cursor: pointer; font-size: 1.05rem; line-height: 1; display: grid; place-items: center;
}
.blog-search-clear:hover { background: var(--terra); color: var(--paper); }
.blog-search-clear[hidden] { display: none; }
.blog-cats { display: flex; gap: .5rem; flex-wrap: wrap; }
.cat-chip {
  background: transparent; border: 1px solid var(--line);
  padding: .5rem 1.1rem; border-radius: var(--r-pill);
  font-size: .86rem; color: var(--plum); cursor: pointer; font-family: inherit;
  transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.cat-chip:hover { border-color: var(--terra); color: var(--terra); }
.cat-chip.active { background: var(--plum); color: var(--paper); border-color: var(--plum); }
.blog-result-count { font-size: .85rem; color: var(--muted); margin: 0; }
.blog-no-results {
  grid-column: 1 / -1; text-align: center; padding: 4rem 2rem;
  font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--plum);
}

/* ==================== POST (Artikel) ==================== */
.post-hero { padding: calc(var(--nav-h) + var(--top-bar) + 3.5rem) 0 0; }
.post-hero .post-meta { margin-bottom: 1.3rem; }
.post-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); line-height: 1.02; max-width: 18ch; }
.post-hero .lead { max-width: 56ch; }
.post-image {
  margin: clamp(2rem, 5vw, 3.5rem) auto 0; border-radius: var(--r-lg);
  overflow: hidden; aspect-ratio: 5 / 3; box-shadow: var(--shadow-2); max-width: 980px;
}
.post-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.post-content { font-size: 1.08rem; line-height: 1.8; padding: clamp(2.5rem, 6vw, 4.5rem) 0 var(--space-7); }
.post-content h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 2.4em 0 .6em; }
.post-content h2:first-child { margin-top: 0; }
.post-content p { color: var(--ink); }
.post-content blockquote {
  margin: 2.4rem 0; padding: 0 0 0 clamp(1.5rem, 4vw, 2.5rem); position: relative;
  font-family: var(--font-display); font-style: italic; font-weight: 350;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem); line-height: 1.35; color: var(--plum);
  border: 0;
}
.post-content blockquote::before {
  content: "\201E"; position: absolute; left: -.1em; top: -.45em;
  font-size: 3.2em; line-height: 1; color: var(--terra); opacity: .35;
}
.post-content ul, .post-content ol { padding-left: 1.4rem; color: var(--ink); margin: 1rem 0 1.5rem; }
.post-content li { margin-bottom: .55rem; }
.post-content a { color: var(--terra); text-decoration: underline; text-underline-offset: 3px; }
.author-card {
  margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--line);
  display: flex; gap: 1.1rem; align-items: center;
}
.author-card .avatar { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.author-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-card .name { font-family: var(--font-display); color: var(--plum); font-size: 1.25rem; }
.author-card .role { font-size: .86rem; color: var(--muted); }

/* ==================== PERSONAL / ZITAT ==================== */
.pull-quote {
  position: relative; background: var(--paper);
  padding: clamp(2.2rem, 4vw, 3.4rem); border-radius: var(--r-lg);
  box-shadow: var(--shadow-2); border: 1px solid var(--line);
  font-family: var(--font-display); font-style: italic; font-weight: 350;
  font-size: clamp(1.25rem, 1.9vw, 1.55rem); line-height: 1.55; color: var(--plum);
}
.pull-quote::before {
  content: "\201E"; position: absolute; top: -.35em; left: 1.2rem;
  font-size: 5rem; color: var(--terra); opacity: .25; line-height: 1;
}
.pull-quote cite {
  display: flex; align-items: center; gap: .85rem; margin-top: 1.6rem;
  font-family: var(--font-body); font-style: normal; font-size: .9rem;
  color: var(--muted); padding-top: 1.3rem; border-top: 1px solid var(--line);
}
.pull-quote cite img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.pull-quote cite strong { color: var(--plum); display: block; font-weight: 600; }

.fact-list { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: .7rem 1.6rem; }
@media (max-width: 560px) { .fact-list { grid-template-columns: 1fr; } }
.fact-list li {
  padding: .8rem 0; border-bottom: 1px solid var(--line);
  display: flex; align-items: baseline; gap: .8rem;
  color: var(--plum); font-size: .96rem;
}
.fact-list li::before { content: "·"; font-family: var(--font-display); color: var(--terra); font-size: 1.6em; line-height: 0; }

/* ==================== GALERIE ==================== */
.masonry-grid { column-count: 3; column-gap: 1.1rem; }
@media (max-width: 900px) { .masonry-grid { column-count: 2; column-gap: .9rem; } }
@media (max-width: 560px) { .masonry-grid { column-count: 1; } }
.masonry-grid figure {
  margin: 0 0 1.1rem; break-inside: avoid;
  border-radius: var(--r-md); overflow: hidden; position: relative;
}
.masonry-grid figure img {
  width: 100%; height: auto; display: block;
  filter: saturate(.94) sepia(.04);
  transition: transform .8s var(--ease), filter .5s var(--ease);
}
.masonry-grid figure:hover img { transform: scale(1.04); filter: none; }

.gallery-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 900px) { .gallery-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .gallery-3 { grid-template-columns: 1fr; } }
.gallery-3 figure {
  margin: 0; overflow: hidden; border-radius: var(--r-md); aspect-ratio: 1 / 1.12;
}
.gallery-3 figure img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
  filter: saturate(.94) sepia(.04);
  transition: transform .8s var(--ease), filter .5s var(--ease);
}
.gallery-3 figure:hover img { transform: scale(1.04); filter: none; }

/* ==================== CV ==================== */
.cv-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.cv-item { display: grid; grid-template-columns: 150px 1fr; gap: 2rem; padding: 1.9rem 0; border-bottom: 1px solid var(--line); }
.cv-item .cv-year { font-family: var(--font-display); font-style: italic; color: var(--terra); font-size: 1.15rem; padding-top: .15rem; }
.cv-item h3 { font-size: 1.45rem; margin: 0 0 .4rem; }
.cv-item p { margin: 0 0 .65em; max-width: 60ch; }
.cv-item p:last-child { margin-bottom: 0; }
@media (max-width: 640px) { .cv-item { grid-template-columns: 1fr; gap: .3rem; } }

/* ==================== CTA-BAND ==================== */
.cta-band {
  background: linear-gradient(120deg, var(--plum) 0%, #4a3650 62%, var(--plum-700) 100%);
  color: var(--cream); padding: clamp(5rem, 10vw, 8.5rem) 0;
  position: relative; overflow: clip; text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; width: 480px; height: 480px; border-radius: 50%;
  background: rgba(196,111,77,.16); top: -240px; left: -160px; pointer-events: none;
}
.cta-band::after {
  content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: rgba(212,182,140,.13); bottom: -190px; right: -130px; pointer-events: none;
}
.cta-band h2 {
  color: var(--cream); font-size: clamp(2.4rem, 6vw, 5rem);
  max-width: 17ch; margin-inline: auto;
}
.cta-band p { color: rgba(248,244,237,.85); max-width: 56ch; margin: 0 auto 2.4rem; position: relative; z-index: 1; }
.cta-band .btn { position: relative; z-index: 1; }
.cta-band .cta-note { margin-top: 1.4rem; font-size: .85rem; color: rgba(248,244,237,.62); }
.cta-band .cta-note a { color: var(--gold); }

/* ==================== PAGE-HEADER (Unterseiten) ==================== */
.page-header {
  padding: calc(var(--nav-h) + var(--top-bar) + clamp(3rem, 7vw, 5.5rem)) 0 clamp(2.5rem, 6vw, 4.5rem);
  background: var(--cream); position: relative; overflow: clip;
}
.page-header::before {
  content: ""; position: absolute; right: -12%; top: -55%; width: 58%; aspect-ratio: 1;
  border-radius: 50%; background: radial-gradient(circle, rgba(196,111,77,.09), transparent 62%);
  pointer-events: none;
}
.page-header h1 { font-size: clamp(2.8rem, 7vw, 6rem); max-width: 16ch; }
.page-header .lead { max-width: 54ch; }
.page-header .ph-grid {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: end;
}
.page-header .ph-grid .lead { justify-self: end; padding-bottom: .4rem; }
@media (max-width: 880px) {
  .page-header .ph-grid { grid-template-columns: 1fr; }
  .page-header .ph-grid .lead { justify-self: start; }
}

/* ==================== SUBNAV (Anker-Pills) ==================== */
.subnav {
  display: flex; gap: .55rem; flex-wrap: wrap;
  padding: 1rem 0 0;
}
.subnav a {
  padding: .55rem 1.2rem; border-radius: var(--r-pill);
  border: 1px solid var(--line); background: var(--paper);
  font-size: .88rem; font-weight: 500; color: var(--plum);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.subnav a:hover { background: var(--plum); border-color: var(--plum); color: var(--paper); }

/* ==================== PROSE (Recht) ==================== */
.prose { padding-bottom: var(--space-7); }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin: 2.2em 0 .5em; }
.prose h3 { font-size: 1.25rem; margin: 1.8em 0 .4em; }
.prose p, .prose li { color: var(--muted); max-width: 70ch; }
.prose ul { padding-left: 1.3rem; }
.prose a { color: var(--terra); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--plum); }

/* ==================== KONTAKT ==================== */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.contact-info h2 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); }
.contact-info .row { display: flex; align-items: flex-start; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.contact-info .row .ico {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px;
  background: var(--cream-deep); display: grid; place-items: center; color: var(--terra);
}
.contact-info .row .ico svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.contact-info .row strong { display: block; color: var(--plum); font-weight: 600; margin-bottom: .15rem; }
.contact-info .row a, .contact-info .row span { color: var(--muted); font-size: .95rem; }

form.contact-form {
  background: var(--paper); padding: clamp(1.8rem, 3vw, 2.6rem);
  border-radius: var(--r-lg); border: 1px solid var(--line); box-shadow: var(--shadow-1);
}
form.contact-form h2 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); margin-bottom: .4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 1.1rem; }
.form-field label {
  font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--plum);
  font-weight: 600; display: block; margin-bottom: .4rem;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: .95rem 1rem; border: 1px solid var(--line);
  border-radius: var(--r-sm); background: var(--cream);
  font-family: inherit; font-size: 1rem; color: var(--ink);
  transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--terra); background: var(--paper);
  box-shadow: 0 0 0 4px rgba(196,111,77,.12);
}
.form-check { display: flex; gap: .7rem; align-items: flex-start; font-size: .85rem; color: var(--muted); margin: 1.2rem 0; }
.form-check input { margin-top: .25rem; accent-color: var(--terra); }
.form-status { margin-top: 1rem; font-size: .9rem; min-height: 1.4rem; }
.form-status.ok { color: var(--sage-700); }
.form-status.err { color: var(--terra-700); }
.form-status.ok::before { content: "\2713  "; }
.form-status.err::before { content: "\26A0  "; }
.hp-field {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
  border: 0; padding: 0; margin: -1px;
}
.field-msg { display: block; font-size: .78rem; line-height: 1.4; color: var(--muted); margin-top: .4rem; min-height: 1em; }
.field-msg.err { color: var(--terra-700); }
.field-msg.ok { color: var(--sage-700); }
.field-msg.err::before { content: "\26A0  "; }
.field-msg.ok::before { content: "\2713  "; }
.form-field.has-error input, .form-field.has-error textarea, .form-field.has-error select {
  border-color: var(--terra-700); box-shadow: 0 0 0 3px rgba(196,111,77,.12); background: rgba(196,111,77,.04);
}
.form-field.is-valid input, .form-field.is-valid textarea, .form-field.is-valid select {
  border-color: var(--sage-700); background: rgba(143,166,142,.05);
}
.char-count.warn { color: var(--terra-700); font-weight: 600; }

/* ==================== FOOTER ==================== */
footer { background: var(--plum-700); color: rgba(248,244,237,.7); padding: 5rem 0 2rem; }
footer h4 { color: var(--gold); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: .9em; }
footer a { color: rgba(248,244,237,.7); }
footer a:hover { color: var(--gold); }
.footer-cookie-btn {
  background: none; border: none; padding: 0; margin: 0; cursor: pointer;
  font: inherit; font-size: .82rem; color: rgba(248,244,237,.7);
}
.footer-cookie-btn:hover { color: var(--gold); }
footer .logo-mark { color: var(--cream); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 3rem; border-bottom: 1px solid var(--line-dark);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { padding: .35rem 0; font-size: .92rem; }
.footer-brand .logo-wordmark .name { color: var(--cream); }
.footer-brand .logo-wordmark .tag { color: var(--gold); }
.footer-brand p { color: rgba(248,244,237,.6); font-size: .92rem; margin-top: 1rem; max-width: 300px; }
.socials { display: flex; gap: .6rem; margin-top: 1.4rem; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(248,244,237,.08);
  display: grid; place-items: center; color: var(--cream);
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.socials a:hover { background: var(--terra); color: var(--cream); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.socials a.fb svg, .socials a.in svg { fill: currentColor; stroke: none; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  padding-top: 1.5rem; font-size: .82rem;
}
.made-by { text-align: center; margin-top: 1.4rem; opacity: .35; transition: opacity .3s var(--ease); }
.made-by:hover { opacity: .8; }
.made-by a {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .72rem; color: rgba(248,244,237,.7); text-decoration: none;
}
.made-by .ico-svg { width: 12px; height: 12px; }
.made-by svg { vertical-align: middle; }
@media (max-width: 720px) {
  footer { padding: 3.5rem 0 1.5rem; }
  .footer-grid { gap: 2rem; padding-bottom: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .6rem; }
}

/* ==================== COOKIE ==================== */
.cookie {
  position: fixed; left: 1.5rem; bottom: 1.5rem; z-index: 100;
  max-width: 440px; background: var(--paper);
  border-radius: var(--r-md); padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-3); border: 1px solid var(--line);
  transform: translateY(140%); opacity: 0;
  transition: transform .5s var(--ease), opacity .5s var(--ease);
  pointer-events: none;
}
.cookie.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
@media (max-width: 540px) { .cookie { left: .8rem; right: .8rem; bottom: .8rem; padding: 1.1rem 1.2rem; } }
.cookie h4 {
  font-family: var(--font-display); color: var(--plum); font-weight: 400;
  font-size: 1.2rem; margin: 0 0 .5rem;
  display: flex; align-items: center; gap: .5rem; text-transform: none; letter-spacing: 0;
}
.cookie h4 svg { width: 20px; height: 20px; stroke: var(--terra); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.cookie p { font-size: .86rem; margin: 0 0 1rem; color: var(--muted); }
.cookie-actions { display: flex; gap: .55rem; flex-wrap: wrap; }
.cookie-actions button {
  padding: .6rem 1.1rem; border-radius: var(--r-pill);
  font-size: .85rem; cursor: pointer; transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  border: 1px solid var(--plum); font-family: inherit;
}
.cookie-actions .accept, .cookie-actions .save { background: var(--plum); color: var(--paper); }
.cookie-actions .accept:hover, .cookie-actions .save:hover { background: var(--terra); border-color: var(--terra); }
.cookie-actions .decline { background: transparent; color: var(--plum); }
.cookie-actions .decline:hover { background: var(--cream-deep); }
.cookie-actions .settings { background: transparent; color: var(--muted); border-color: var(--line); }

.cookie-settings {
  display: flex; flex-direction: column; gap: .6rem;
  margin: 0 0 1rem; padding: .9rem 1rem;
  background: var(--cream-deep); border-radius: var(--r-sm);
}
.cookie-settings[hidden] { display: none; }
.cookie-toggle { display: flex; align-items: center; gap: .6rem; font-size: .85rem; color: var(--ink); cursor: pointer; }
.cookie-toggle input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--plum); flex: none; }
.cookie-toggle input:disabled { opacity: .6; cursor: not-allowed; }
.cookie-toggle em { font-style: normal; color: var(--muted); font-size: .78rem; margin-left: .3rem; }

/* ==================== FAB (Mobile) ==================== */
.fab {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 90;
  background: var(--plum); color: var(--paper);
  width: 56px; height: 56px; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  box-shadow: var(--shadow-3);
  transform: translateY(160%); opacity: 0;
  transition: transform .35s var(--ease), opacity .35s var(--ease), background .25s var(--ease);
}
.fab.show { transform: translateY(0); opacity: 1; }
.fab:active { background: var(--terra); }
@media (max-width: 720px) { .fab { display: inline-flex; } }

/* ==================== 404 ==================== */
.error-page {
  min-height: 100svh; display: grid; place-items: center;
  background:
    radial-gradient(50% 60% at 20% 80%, rgba(196,111,77,.11), transparent 60%),
    radial-gradient(50% 60% at 80% 20%, rgba(143,166,142,.12), transparent 60%),
    var(--cream);
  text-align: center; padding: 6rem 2rem 3rem;
}
.error-page .big-404 {
  font-family: var(--font-display); font-style: italic; font-weight: 340;
  font-size: clamp(8rem, 22vw, 17rem); line-height: 1; color: var(--plum);
}
.error-page h1 { margin-top: 1.2rem; font-size: clamp(1.9rem, 4vw, 2.8rem); }
.error-page p { font-size: 1.1rem; max-width: 520px; margin: 0 auto 2rem; }
.error-page .quick-links { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 2rem; }

/* ==================== REVEAL (ein System) ==================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

.img-reveal { clip-path: inset(0 0 16% 0); transition: clip-path 1s var(--ease); }
.img-reveal img { transform: scale(1.07); transition: transform 1.2s var(--ease); }
.img-reveal.in { clip-path: inset(0); }
.img-reveal.in img { transform: scale(1); }

/* ==================== UTILITY ==================== */
.text-center { text-align: center; }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.hidden { display: none !important; }
.bg-paper { background: var(--paper); }
.bg-deep { background: var(--cream-deep); }
main { display: block; }

/* ==================== TOUCH TARGETS ==================== */
@media (hover: none) and (pointer: coarse), (max-width: 720px) {
  .btn { padding: 1.1rem 1.9rem; min-height: 48px; }
  .nav-cta { min-height: 44px; }
  .cat-chip { padding: .65rem 1.2rem; min-height: 44px; }
  .cookie-actions button { padding: .75rem 1.2rem; min-height: 44px; }
  .faq-item summary { min-height: 56px; }
  .form-field input, .form-field select { min-height: 52px; font-size: 1.02rem; }
  .form-field textarea { min-height: 150px; font-size: 1.02rem; }
  .nav-links > li > a { min-height: 44px; display: flex; align-items: center; }
}

/* ==================== MOBILE TYPO ==================== */
@media (max-width: 720px) {
  body { font-size: 16px; }
  .lead { font-size: 1.05rem; line-height: 1.6; }
  .container, .container-narrow, .container-wide { width: 90%; }
  .trust-head p { font-size: .78rem; letter-spacing: .16em; white-space: normal; }
  .marquee span { font-size: 1.9rem; }
  .post-meta { font-size: .82rem; }
}

/* ==================== PERFORMANCE ==================== */
/* Offscreen-Sektionen erst bei Bedarf rendern: spart Layout/Paint beim Laden */
.sec-lg, .photo-band, .cta-band, footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 700px;
}

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .img-reveal { opacity: 1; transform: none; clip-path: none; }
  .img-reveal img { transform: none; }
  .hero h1 .word > span { transform: none; }
  .marquee, .trust-track { animation: none; }
}

/* ==================== SELBSTTEST-CTA-BAND (siteweit) ==================== */
.st-band { background: var(--cream-deep); }
.st-band-inner {
  display: grid; grid-template-columns: 1.6fr auto;
  gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3.5vw, 2.8rem) clamp(1.6rem, 4vw, 3rem);
  box-shadow: var(--shadow-1);
}
.st-band .st-eyebrow {
  display: inline-block;
  font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--terra-700); margin-bottom: .7rem;
}
.st-band h2 { font-size: clamp(1.7rem, 3.4vw, 2.7rem); margin: 0 0 .5rem; }
.st-band p { max-width: 56ch; margin: 0; color: var(--muted); }
.st-band .btn { white-space: nowrap; }
@media (max-width: 760px) {
  .st-band-inner { grid-template-columns: 1fr; gap: 1.4rem; }
  .st-band .btn { width: 100%; justify-content: center; }
}

/* ==================== SELBSTTEST-POPUP (Blog-Beiträge) ==================== */
.st-popup-backdrop {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  background: rgba(29, 20, 29, 0);
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease), background .4s var(--ease);
}
.st-popup-backdrop.show { opacity: 1; pointer-events: auto; background: rgba(29, 20, 29, .55); }
.st-popup {
  position: relative; max-width: 460px; width: 100%;
  background: var(--paper); border-radius: var(--r-lg);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-3);
  transform: translateY(16px) scale(.98);
  transition: transform .4s var(--ease);
}
.st-popup-backdrop.show .st-popup { transform: translateY(0) scale(1); }
.st-popup .st-eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--terra-700); margin-bottom: .6rem;
}
.st-popup h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 0 0 .6rem; }
.st-popup p { color: var(--muted); margin: 0 0 1.4rem; }
.st-popup-close {
  position: absolute; top: .9rem; right: .9rem;
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line);
  background: transparent; color: var(--plum); font-size: 1.3rem; line-height: 1; font-family: inherit;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s var(--ease);
}
.st-popup-close:hover { background: var(--cream-deep); }
@media (max-width: 480px) {
  .st-popup { padding: 1.6rem; }
}
@media (prefers-reduced-motion: reduce) {
  .st-popup-backdrop, .st-popup { transition: opacity .15s linear; transform: none !important; }
}

/* ==================== PROMO-BANNER (Leadmagnet) ==================== */
html.has-promo { --top-bar: 44px; }
.promo-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 115;
  height: var(--top-bar);
  display: flex; align-items: center; justify-content: center; gap: .9rem;
  background: var(--plum); color: var(--cream); padding: 0 2.6rem 0 1rem;
}
.promo-bar p { margin: 0; font-size: .88rem; line-height: 1.2; color: rgba(248,244,237,.92); }
.promo-bar p strong { color: var(--gold); font-weight: 600; }
.promo-bar .promo-cta {
  display: inline-flex; align-items: center; gap: .35rem; white-space: nowrap;
  font-size: .85rem; font-weight: 600; color: var(--cream);
  background: var(--terra); padding: .42rem .95rem; border-radius: var(--r-pill);
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.promo-bar .promo-cta:hover { background: var(--terra-700); color: var(--cream); transform: translateY(-1px); }
.promo-bar .promo-cta .ico-svg { width: 1em; height: 1em; }
.promo-bar .promo-close {
  position: absolute; right: .55rem; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border: 0; background: transparent; cursor: pointer;
  color: rgba(248,244,237,.7); font-size: 1.2rem; line-height: 1; border-radius: 50%;
  display: grid; place-items: center;
}
.promo-bar .promo-close:hover { color: var(--cream); background: rgba(255,255,255,.12); }
@media (max-width: 600px) {
  .promo-bar .promo-long { display: none; }
  .promo-bar { gap: .6rem; padding: 0 2rem 0 .8rem; }
  .promo-bar p { font-size: .8rem; }
  .promo-bar .promo-cta { padding: .34rem .7rem; font-size: .76rem; }
}
