  :root {
    --paper: #E4ECF1;
    --paper-2: #DCE6EC;
    --paper-deep: #CFDDE4;
    --ink: #1A2735;
    --ink-soft: #495565;
    --ink-mute: #7A8693;
    --stone-deep: #233649;
    --stone: #2B4159;
    --sage: #D17F5A;        /* warmer Coral/Apricot — der Wärme-Akzent */
    --sage-soft: #F2D7C7;   /* helles Apricot — für Tags & Soft-Highlights */
    --accent: #D17F5A;
    --rule: rgba(26, 39, 53, 0.14);
    --rule-soft: rgba(26, 39, 53, 0.07);
    --rule-strong: rgba(26, 39, 53, 0.38);
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--paper);
    color: var(--ink);
    font-family: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }

  /* ─── Animated background orbs ─── */
  .bg-orbs {
    position: fixed;
    inset: -10%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    filter: blur(80px) saturate(1.05);
  }
  .orb {
    position: absolute;
    width: 70vw; height: 70vw;
    max-width: 1100px; max-height: 1100px;
    border-radius: 50%;
    mix-blend-mode: soft-light;
    will-change: transform;
  }
  .orb-1 {
    top: -20%; left: -15%;
    background: radial-gradient(circle at 50% 50%, rgba(168, 196, 214, 0.85), rgba(168, 196, 214, 0) 60%);
    animation: orb1 38s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  }
  .orb-2 {
    bottom: -25%; right: -20%;
    background: radial-gradient(circle at 50% 50%, rgba(60, 95, 130, 0.55), rgba(60, 95, 130, 0) 60%);
    animation: orb2 46s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  }
  .orb-3 {
    top: 25%; left: 30%;
    width: 55vw; height: 55vw;
    background: radial-gradient(circle at 50% 50%, rgba(242, 215, 199, 0.85), rgba(242, 215, 199, 0) 62%);
    mix-blend-mode: multiply;
    opacity: 0.55;
    animation: orb3 32s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  }
  @keyframes orb1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(18%, 14%) scale(1.10); }
    66%      { transform: translate(-8%, 28%) scale(0.95); }
  }
  @keyframes orb2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(-14%, -22%) scale(1.18); }
  }
  @keyframes orb3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    40%      { transform: translate(-25%, 12%) scale(0.85); }
    75%      { transform: translate(18%, -18%) scale(1.12); }
  }
  @media (prefers-reduced-motion: reduce) {
    .orb { animation: none !important; }
  }
  body::before {
    content: "";
    position: fixed; inset: 0;
    pointer-events: none;
    opacity: 0.30;
    mix-blend-mode: multiply;
    z-index: 1;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.06 0 0 0 0 0.10 0 0 0 0 0.14 0 0 0 0.11 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  }

  ::selection { background: var(--stone-deep); color: var(--paper); }

  /* ─── Typography ─── */
  .display {
    font-family: "Hanken Grotesk", -apple-system, sans-serif;
    font-weight: 300;
    letter-spacing: -0.035em;
  }
  .display em {
    font-style: normal;
    font-weight: 500;
    color: var(--sage);
  }
  .italic {
    font-style: normal;
    font-weight: 500;
    letter-spacing: -0.01em;
  }
  .mono {
    font-family: "JetBrains Mono", ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }

  /* ─── Container ─── */
  .container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
  }

  /* ─── Topbar ─── */
  nav.topbar {
    position: sticky; top: 0;
    z-index: 50;
    background: rgba(228, 236, 241, 0.78);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid var(--rule);
  }
  .topbar-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 18px 40px;
    gap: 32px;
    max-width: 1360px;
    margin: 0 auto;
  }
  .brand { display: flex; align-items: center; gap: 12px; }
  .brand-mark {
    width: 38px; height: 38px;
    display: grid; place-items: center;
    overflow: hidden;
  }
  .brand-mark img {
    width: 100%; height: 100%;
    object-fit: contain;
  }
  .brand-text { display: flex; flex-direction: column; gap: 1px; line-height: 1.1; }
  .brand-name { font-family: "Hanken Grotesk", sans-serif; font-weight: 350; font-size: 16px; letter-spacing: -0.01em; }
  .brand-sub { font-family: "JetBrains Mono", monospace; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); }

  .topnav { display: flex; gap: 36px; justify-content: center; align-items: center; font-size: 14px; }
  .topnav .has-sub { display: inline-flex; align-items: center; padding: 6px 0; }
  .topnav .has-sub > a { padding: 0; }
  .topnav a {
    color: var(--ink); text-decoration: none;
    position: relative; padding: 6px 0;
  }
  .topnav a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 2px;
    height: 1px; background: var(--ink);
    transform: scaleX(0); transform-origin: right;
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
  }
  .topnav a:hover::after { transform: scaleX(1); transform-origin: left; }

  .topbar-cta { justify-self: end; display: flex; align-items: center; gap: 16px; }
  .phone-mini { font-size: 13px; color: var(--ink-soft); text-decoration: none; letter-spacing: 0.01em; }
  .phone-mini:hover { color: var(--ink); }

  .btn-pill {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 11px 20px 11px 22px;
    background: var(--stone-deep);
    color: var(--paper);
    border-radius: 999px;
    font-size: 13.5px;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.65, 0, 0.35, 1);
    border: 1px solid var(--stone-deep);
  }
  .btn-pill:hover { background: var(--ink); border-color: var(--ink); }
  .btn-pill .arrow { display: inline-block; transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1); }
  .btn-pill:hover .arrow { transform: translate(3px, -3px); }

  .btn-ghost {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 11px 20px;
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--rule-strong);
    border-radius: 999px;
    font-size: 13.5px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

  /* ─── Hero ─── */
  section.hero {
    padding: 56px 0 100px;
    position: relative;
  }
  .hero-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 0;
    color: var(--ink-soft);
    font-size: 14px;
  }
  .hero-meta .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--sage);
    box-shadow: 0 0 0 4px rgba(209, 127, 90, 0.18);
  }

  .hero-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: end;
    margin-top: 36px;
  }

  .hero-headline {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 320;
    font-size: clamp(52px, 7.6vw, 116px);
    line-height: 0.96;
    letter-spacing: -0.034em;
    max-width: 14ch;
  }

  .hero-portrait {
    aspect-ratio: 4/5;
    background: var(--paper-deep);
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 60px rgba(26, 39, 53, 0.10);
  }
  .hero-portrait picture,
  .hero-portrait img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    display: block;
  }
  .hero-portrait img {
    object-fit: cover;
    object-position: center 14%;
    filter: contrast(0.98) saturate(0.95);
  }
  .hero-portrait::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26, 39, 53, 0.20) 100%);
    pointer-events: none;
  }
  .hero-portrait-tag {
    position: absolute;
    left: 18px; bottom: 18px;
    z-index: 2;
    background: var(--paper);
    padding: 10px 18px 10px 14px;
    border-radius: 999px;
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 13px;
    box-shadow: 0 8px 24px rgba(26, 39, 53, 0.18);
  }
  .hero-portrait-tag::before {
    content: "";
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--sage);
    box-shadow: 0 0 0 4px rgba(209, 127, 90, 0.20);
  }
  .hero-portrait-tag .role { color: var(--ink-mute); }
  .hero-headline em {
    font-weight: 500;
    color: var(--sage);
    padding: 0 0.04em;
    letter-spacing: -0.025em;
  }
  .hero-headline .punc { color: var(--sage); }

  /* "mit" — calm, doctor-grade emphasis: slow stroke draw + gentle 6s breath */
  .hero-headline em.alive {
    position: relative;
    display: inline-block;
    transform-origin: center 60%;
    animation: aliveBreathe 6s 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }
  .hero-headline em.alive::before {
    content: "";
    position: absolute;
    left: 0.06em; right: 0.06em;
    bottom: 0.04em;
    height: 0.10em;
    background: var(--sage);
    border-radius: 0.10em;
    transform: scaleX(0);
    transform-origin: left center;
    opacity: 0.55;
    animation: aliveStroke 1.6s 1.4s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  }
  .hero-headline em.alive::after {
    content: "";
    position: absolute;
    inset: -0.08em -0.05em;
    border-radius: 0.4em;
    background: radial-gradient(closest-side, rgba(209, 127, 90, 0.18), transparent 70%);
    opacity: 0;
    z-index: -1;
    animation: aliveGlow 6s 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }
  @keyframes aliveBreathe {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.025); }
  }
  @keyframes aliveStroke {
    0%   { transform: scaleX(0); }
    100% { transform: scaleX(1); }
  }
  @keyframes aliveGlow {
    0%, 100% { opacity: 0.25; }
    50%      { opacity: 0.85; }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-headline em.alive { animation: none; }
    .hero-headline em.alive::before { transform: scaleX(1); animation: none; }
    .hero-headline em.alive::after { animation: none; opacity: 0.4; }
  }

  /* "für" — leiser Gegen-Atemzug, startet nach dem Stroke-Aufbau von "mit" */
  .hero-headline em.faint {
    display: inline-block;
    transform-origin: center 60%;
    animation: faintPulse 6s 3.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    will-change: opacity, transform;
  }
  @keyframes faintPulse {
    0%, 100% { opacity: 1;    transform: scale(1); }
    50%      { opacity: 0.45; transform: scale(0.97); }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-headline em.faint { animation: none; }
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 80px;
    padding-top: 56px;
    border-top: 1px solid var(--rule);
  }
  .hero-quickinfo {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid var(--rule);
    border-radius: var(--r-lg);
    padding: 8px 28px;
    backdrop-filter: blur(6px);
  }
  .qi-row {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid var(--rule-soft);
    align-items: baseline;
  }
  .qi-row:last-child { border-bottom: none; }
  .qi-label {
    font-size: 12px;
    color: var(--ink-mute);
    letter-spacing: 0.04em;
  }
  .qi-value {
    font-size: 16px;
    color: var(--ink);
    font-weight: 500;
    line-height: 1.4;
  }
  .qi-value a { color: var(--ink); text-decoration: none; transition: color 0.3s; }
  .qi-value a:hover { color: var(--sage); }
  .qi-sub {
    font-weight: 400;
    color: var(--ink-soft);
    font-size: 14px;
  }
  .hero-lead {
    font-size: 19px;
    line-height: 1.55;
    max-width: 46ch;
    color: var(--ink-soft);
  }
  .hero-lead strong {
    color: var(--ink);
    font-weight: 500;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 21px;
    font-weight: 350;
  }
  .hero-cta-row {
    display: flex; gap: 14px; flex-wrap: wrap;
    margin-top: 36px;
    align-items: center;
  }
  .hero-cta-row .label { font-size: 13px; color: var(--ink-mute); margin-right: 4px; }

  .hero-stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .stat {
    border-top: 1px solid var(--rule-strong);
    padding-top: 18px;
  }
  .stat .num {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 340;
    font-size: 56px;
    line-height: 1;
    letter-spacing: -0.03em;
  }
  .stat .num em { color: var(--sage); }
  .stat .label {
    font-size: 12.5px; color: var(--ink-soft);
    line-height: 1.4;
    margin-top: 14px;
    max-width: 22ch;
  }

  /* ─── Manifest ─── */
  section.manifest {
    padding: 120px 0;
    border-top: 1px solid var(--rule);
    position: relative;
  }
  .manifest-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
  }
  .section-num {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--sage);
    display: inline-flex; align-items: center; gap: 10px;
  }
  .section-num::before {
    content: ""; width: 7px; height: 7px; border-radius: 50%;
    background: var(--sage);
    box-shadow: 0 0 0 4px rgba(209, 127, 90, 0.16);
  }
  .section-eyebrow { display: flex; flex-direction: column; gap: 12px; }
  .section-eyebrow h3 {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 320;
    font-size: 22px;
    letter-spacing: -0.01em;
    margin-top: 6px;
  }

  .manifest-body {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 320;
    font-size: clamp(28px, 3.6vw, 52px);
    line-height: 1.18;
    letter-spacing: -0.022em;
    color: var(--ink);
  }
  .manifest-body em {
    font-weight: 300;
    color: var(--sage);
  }
  .manifest-sign {
    display: flex; align-items: center; gap: 14px;
    margin-top: 42px;
    color: var(--ink-soft);
    font-size: 14px;
  }
  .manifest-sign .line { width: 56px; height: 1px; background: var(--rule-strong); }

  /* ─── Sprechstunde ─── */
  section.sprechstunde {
    padding: 120px 0;
    border-top: 1px solid var(--rule);
  }
  .section-heading {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: end;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--rule);
  }
  .section-heading h2 {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 310;
    font-size: clamp(48px, 7vw, 104px);
    line-height: 0.95;
    letter-spacing: -0.035em;
  }
  .section-heading h2 em {
    color: inherit;
    font-weight: inherit;
    font-style: normal;
  }

  .spec-list { display: flex; flex-direction: column; }
  .spec-row {
    display: grid;
    grid-template-columns: 80px 1.1fr 2fr 80px;
    gap: 32px;
    padding: 36px 0;
    border-bottom: 1px solid var(--rule);
    align-items: start;
    cursor: pointer;
    position: relative;
  }
  .spec-row::before {
    content: ""; position: absolute; inset: 0;
    background: rgba(255, 255, 255, 0.55);
    opacity: 0;
    transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1;
    margin: 0 -24px;
    border-radius: var(--r-md);
    will-change: opacity;
  }
  .spec-row:hover::before { opacity: 1; }
  .spec-num {
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
    color: var(--ink-mute);
    letter-spacing: 0.08em;
    padding-top: 8px;
  }
  .spec-mark {
    width: 38px;
    height: 38px;
    padding-top: 4px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .spec-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .spec-row:hover .spec-mark img {
    transform: scale(1.08);
  }
  .spec-title {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 340;
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -0.015em;
  }
  .spec-title em { font-weight: inherit; color: inherit; letter-spacing: inherit; font-style: normal; }
  .spec-desc {
    font-size: 15.5px;
    color: var(--ink-soft);
    line-height: 1.55;
    max-width: 48ch;
    padding-top: 8px;
  }
  .spec-arrow {
    justify-self: end;
    padding-top: 8px;
    color: var(--ink-soft);
    transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1), color 0.9s ease;
    will-change: transform;
  }
  .spec-row:hover .spec-arrow { color: var(--sage); transform: translate(8px, -8px); }

  /* ─── Untersuchungen ─── */
  section.untersuchungen {
    padding: 120px 0;
    border-top: 1px solid var(--rule);
    background: var(--paper-2);
    position: relative;
  }
  .unt-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
  }
  .unt-intro h2 {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 310;
    font-size: clamp(40px, 5.4vw, 72px);
    line-height: 0.98;
    letter-spacing: -0.03em;
    margin-top: 18px;
  }
  .unt-intro h2 em { font-weight: 500; color: var(--sage); letter-spacing: -0.01em; }
  .unt-intro p {
    margin-top: 28px;
    color: var(--ink-soft);
    max-width: 32ch;
  }

  .unt-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 48px;
  }
  .unt-item {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 14px;
    padding: 22px 0;
    border-bottom: 1px solid var(--rule);
    align-items: baseline;
  }
  .unt-num {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    color: var(--ink-mute);
    letter-spacing: 0.08em;
  }
  .unt-mark {
    width: 24px;
    height: 24px;
    align-self: center;
    opacity: 0.85;
  }
  .unt-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .unt-name {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 340;
    font-size: 19px;
    letter-spacing: -0.005em;
  }

  /* ─── Vita ─── */
  section.vita {
    padding: 130px 0;
    border-top: 1px solid var(--rule);
  }
  .vita-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: start;
  }
  .portrait-frame {
    aspect-ratio: 2/3;
    background: var(--paper-deep);
    border: 1px solid var(--rule);
    position: relative;
    overflow: hidden;
    border-radius: var(--r-lg);
  }
  .portrait-frame picture,
  .portrait-frame img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    display: block;
  }
  .portrait-frame img {
    object-fit: cover;
    object-position: center 22%;
    filter: contrast(0.98) saturate(0.92);
  }
  .portrait-frame::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(15,26,36,0.05) 0%, rgba(44,79,110,0.10) 100%);
    pointer-events: none;
  }
  .portrait-meta {
    position: absolute;
    left: 18px; bottom: 18px;
    z-index: 2;
    background: var(--paper);
    padding: 12px 18px;
    border-radius: 999px;
    display: flex; flex-direction: row; align-items: center; gap: 10px;
    box-shadow: 0 8px 24px rgba(26, 39, 53, 0.10);
  }
  .portrait-meta .name { font-weight: 500; }
  .portrait-meta::before {
    content: ""; width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--sage);
    box-shadow: 0 0 0 4px rgba(209, 127, 90, 0.18);
  }
  .portrait-meta .name { font-family: "Hanken Grotesk", sans-serif; font-weight: 350; font-size: 15px; }
  .portrait-meta .role { font-family: "JetBrains Mono", monospace; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); }

  .portrait-caption {
    margin-top: 18px;
    display: flex; justify-content: space-between;
    font-size: 12px;
    color: var(--ink-mute);
    font-family: "JetBrains Mono", monospace;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .vita-text h2 {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 310;
    font-size: clamp(44px, 5.6vw, 80px);
    line-height: 0.98;
    letter-spacing: -0.032em;
    margin-bottom: 32px;
  }
  .vita-text h2 em { font-weight: 500; color: var(--sage); letter-spacing: -0.01em; }
  .vita-text p {
    font-size: 18px;
    color: var(--ink-soft);
    line-height: 1.6;
    max-width: 56ch;
    margin-bottom: 16px;
  }
  .vita-text p strong { color: var(--ink); font-weight: 500; }

  .vita-timeline {
    margin-top: 56px;
    border-top: 1px solid var(--rule);
  }
  .vita-row {
    display: grid;
    grid-template-columns: 110px 1fr 200px;
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid var(--rule);
    align-items: baseline;
  }
  .vita-year {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    color: var(--ink-mute);
    letter-spacing: 0.08em;
  }
  .vita-role { font-family: "Hanken Grotesk", sans-serif; font-weight: 350; font-size: 18px; }
  .vita-role em { font-weight: inherit; color: inherit; letter-spacing: inherit; font-style: normal; }
  .vita-place { font-size: 14px; color: var(--ink-soft); text-align: right; }

  /* ─── Reviews ─── */
  section.reviews {
    padding: 130px 0;
    border-top: 1px solid var(--rule);
  }
  .reviews-head {
    display: grid;
    grid-template-columns: 1.4fr auto;
    gap: 40px;
    align-items: end;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--rule);
  }
  .reviews-head h2 {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 320;
    font-size: clamp(44px, 6.4vw, 92px);
    line-height: 0.98;
    letter-spacing: -0.034em;
    margin-top: 18px;
  }
  .reviews-head h2 em {
    font-weight: 500;
    color: var(--sage);
    letter-spacing: -0.02em;
  }
  .reviews-head p {
    margin-top: 18px;
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.55;
    max-width: 38ch;
  }
  .reviews-head .btn-ghost { align-self: end; white-space: nowrap; }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
    align-items: stretch;
  }
  .review-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--rule);
    border-radius: var(--r-lg);
    padding: 32px 30px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.7s ease, border-color 0.7s ease;
    will-change: transform;
  }
  .review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(26, 39, 53, 0.10);
    border-color: var(--rule-strong);
  }
  .review-stars {
    color: var(--sage);
    font-size: 17px;
    letter-spacing: 0.20em;
    line-height: 1;
  }
  .review-card blockquote {
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--ink);
    font-weight: 400;
    flex-grow: 1;
    position: relative;
    margin: 0;
  }
  .review-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 18px;
    border-top: 1px solid var(--rule);
    font-size: 13px;
    color: var(--ink-mute);
  }
  .review-meta cite {
    font-style: normal;
    color: var(--ink);
    font-weight: 500;
  }
  .review-meta .source {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: 0.65;
  }
  .review-meta .source::before {
    content: "G";
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--sage);
    color: white;
    display: grid; place-items: center;
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0;
  }

  /* ─── Außerhalb der Praxis ─── */
  section.private {
    padding: 0 0 130px;
  }
  .private-band {
    background: var(--stone-deep);
    color: var(--paper);
    padding: 110px 0;
    border-radius: var(--r-xl);
    position: relative;
    overflow: hidden;
    margin: 0 24px;
  }
  .private-band::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.55 0 0 0 0 0.68 0 0 0 0 0.78 0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    pointer-events: none;
  }
  .private-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .private-text h2 {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 310;
    font-size: clamp(40px, 5.4vw, 76px);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--paper);
  }
  .private-text h2 em { font-weight: 500; color: var(--sage-soft); letter-spacing: -0.01em; }
  .private-text p {
    margin-top: 28px;
    color: rgba(228, 236, 241, 0.75);
    font-size: 18px;
    line-height: 1.6;
    max-width: 46ch;
  }
  .private-tags {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-top: 36px;
  }
  .tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 16px;
    border: 1px solid rgba(228, 236, 241, 0.25);
    border-radius: 999px;
    color: var(--paper);
    font-size: 13px;
    letter-spacing: 0.01em;
  }
  .tag::before {
    content: "·"; color: var(--sage); font-size: 18px; line-height: 0.5;
  }

  .private-img {
    aspect-ratio: 4/5;
    background-image:
      linear-gradient(180deg, rgba(35,54,73,0.18), rgba(35,54,73,0.05)),
      url("https://images.unsplash.com/photo-1502082553048-f009c37129b9?w=900&q=80&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(228, 236, 241, 0.18);
    border-radius: var(--r-lg);
    filter: saturate(0.92) contrast(0.98);
  }

  /* ─── Praxis ─── */
  section.praxis {
    padding: 130px 0;
    border-top: 1px solid var(--rule);
  }
  .praxis-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .praxis-info h2 {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 310;
    font-size: clamp(48px, 6.6vw, 96px);
    line-height: 0.96;
    letter-spacing: -0.034em;
    margin-top: 18px;
  }
  .praxis-info h2 em { font-weight: inherit; color: inherit; letter-spacing: inherit; font-style: normal; }

  .praxis-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 56px;
  }
  .praxis-block h4 {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
    padding-bottom: 14px;
    border-bottom: 1px solid var(--rule-strong);
    margin-bottom: 18px;
  }
  .praxis-block p, .praxis-block li {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 340;
    font-size: 18px;
    line-height: 1.45;
  }
  .praxis-block ul { list-style: none; }
  .hour-row {
    display: flex; justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--rule);
    font-size: 16px;
  }
  .hour-row:last-child { border-bottom: none; }
  .hour-row .day { font-family: "Hanken Grotesk", sans-serif; font-weight: 350; }
  .hour-row .time { color: var(--ink-soft); font-family: "JetBrains Mono", monospace; font-size: 13px; letter-spacing: 0.04em; }

  .praxis-img {
    aspect-ratio: 4/5;
    background: var(--paper-deep);
    border: 1px solid var(--rule);
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
  }
  .praxis-img picture,
  .praxis-img img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    display: block;
  }
  .praxis-img img {
    object-fit: cover;
    object-position: center 28%;
    filter: saturate(0.96) contrast(0.98);
  }
  .praxis-img::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(35,54,73,0.10) 100%);
    pointer-events: none;
  }
  .praxis-img-meta {
    position: absolute;
    left: 18px; top: 18px;
    z-index: 2;
    background: var(--paper);
    padding: 8px 16px;
    border-radius: 999px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
    box-shadow: 0 6px 18px rgba(26, 39, 53, 0.08);
  }

  /* ─── Briefing Wizard ─── */
  section.briefing {
    padding: 130px 0;
    border-top: 1px solid var(--rule);
    position: relative;
  }
  .briefing-head {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: end;
    padding-bottom: 56px;
  }
  .briefing-head h2 {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 320;
    font-size: clamp(40px, 5.6vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.032em;
    margin-top: 16px;
  }
  .briefing-head h2 em { font-weight: 500; color: var(--sage); letter-spacing: -0.02em; }
  .briefing-head p {
    color: var(--ink-soft);
    font-size: 17px;
    max-width: 52ch;
    line-height: 1.6;
  }

  .briefing-banner {
    margin-bottom: 28px;
    border-radius: var(--r-xl);
    overflow: hidden;
    aspect-ratio: 21/8;
    background: var(--paper-deep);
    position: relative;
    box-shadow: 0 20px 50px rgba(26, 39, 53, 0.10);
  }
  .briefing-banner picture,
  .briefing-banner img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    display: block;
  }
  .briefing-banner img {
    object-fit: cover;
    object-position: center 35%;
    filter: contrast(0.98) saturate(0.92);
  }
  .briefing-banner::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(228, 236, 241, 0.40) 100%);
    pointer-events: none;
  }

  .briefing-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--rule);
    border-radius: var(--r-xl);
    box-shadow: 0 24px 60px rgba(26, 39, 53, 0.10);
    padding: 48px 56px 44px;
    position: relative;
    overflow: hidden;
  }
  .briefing-progress {
    display: flex; align-items: center;
    justify-content: space-between;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 40px;
  }
  .progress-dots { display: flex; align-items: center; gap: 10px; }
  .pdot {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--paper-2);
    border: 1px solid var(--rule);
    display: grid; place-items: center;
    font-size: 13px; font-weight: 500;
    color: var(--ink-mute);
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  }
  .pdot.active {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
    transform: scale(1.05);
  }
  .pdot.done {
    background: var(--sage);
    color: white;
    border-color: var(--sage);
  }
  .progress-line {
    flex: 1;
    height: 1px;
    background: var(--rule);
    margin: 0 4px;
    position: relative;
  }
  .progress-line::after {
    content: "";
    position: absolute; left: 0; top: 0;
    height: 100%;
    background: var(--sage);
    transition: width 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  }
  .progress-line.filled::after { width: 100%; }
  .progress-label {
    font-size: 13px;
    color: var(--ink-mute);
  }

  .step-stage { position: relative; min-height: 320px; }
  .step {
    position: absolute; inset: 0;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .step.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
  }
  .step h3 {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 400;
    font-size: 30px;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 8px;
  }
  .step h3 em { font-weight: 500; color: var(--sage); }
  .step .step-sub {
    color: var(--ink-soft);
    font-size: 15.5px;
    margin-bottom: 28px;
    max-width: 60ch;
  }
  .field { margin-bottom: 22px; }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .field label {
    display: block;
    font-size: 13px;
    color: var(--ink-mute);
    margin-bottom: 8px;
    letter-spacing: 0.01em;
  }
  .field input,
  .field textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--r-md);
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 15px;
    color: var(--ink);
    transition: all 0.3s ease;
  }
  .field input:focus,
  .field textarea:focus {
    outline: none;
    border-color: var(--sage);
    background: var(--paper);
    box-shadow: 0 0 0 4px rgba(209, 127, 90, 0.14);
  }
  .field input::placeholder,
  .field textarea::placeholder { color: var(--ink-mute); opacity: 0.7; }
  .field textarea { resize: vertical; min-height: 84px; line-height: 1.5; }

  .chip-grid {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 18px;
  }
  .chip {
    padding: 10px 18px;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 999px;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 14px;
    color: var(--ink);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.65, 0, 0.35, 1);
    display: inline-flex; align-items: center; gap: 8px;
  }
  .chip:hover { border-color: var(--rule-strong); transform: translateY(-1px); }
  .chip[aria-pressed="true"] {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--paper);
  }
  .chip[aria-pressed="true"]::before {
    content: "✓";
    font-size: 12px;
    color: var(--sage-soft);
  }

  .scale-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .scale-opt {
    padding: 14px 10px;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--r-md);
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 14px;
    color: var(--ink);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
  }
  .scale-opt:hover { border-color: var(--rule-strong); }
  .scale-opt[aria-pressed="true"] {
    background: var(--sage);
    color: white;
    border-color: var(--sage);
  }

  .briefing-nav {
    display: flex; justify-content: space-between;
    align-items: center;
    padding-top: 36px;
    margin-top: 36px;
    border-top: 1px solid var(--rule);
  }
  .briefing-nav .btn-ghost[disabled] {
    opacity: 0.4;
    cursor: not-allowed;
  }
  .nav-help {
    font-size: 12.5px;
    color: var(--ink-mute);
  }

  .step-quote {
    margin-top: 40px;
    padding: 14px 0 14px 26px;
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 60ch;
    letter-spacing: -0.005em;
    position: relative;
  }
  .step-quote::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 2px;
    background: var(--sage);
    transform: scaleY(0);
    transform-origin: top center;
  }
  .step-quote::after {
    content: "";
    position: absolute;
    left: -3px; top: -3px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--sage);
    box-shadow: 0 0 0 4px rgba(209, 127, 90, 0.18);
    opacity: 0;
  }
  .step-quote em {
    font-style: italic;
    color: var(--sage);
    font-weight: 500;
    letter-spacing: -0.01em;
  }
  .step-quote .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(6px);
    filter: blur(5px);
    will-change: opacity, transform, filter;
  }
  .step-quote .signature {
    display: block;
    margin-top: 12px;
    font-size: 12.5px;
    color: var(--ink-mute);
    letter-spacing: 0.02em;
    opacity: 0;
  }

  /* On-step-active: orchestrated, calm reveal */
  .step.active .step-quote::before {
    animation: barGrow 1.4s 0.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  .step.active .step-quote::after {
    animation: pulseDot 3s 1.6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }
  .step.active .step-quote .word {
    animation: wordRise 1s var(--delay, 0s) cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  .step.active .step-quote .signature {
    animation: sigFade 1s var(--sig-delay, 2s) cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  @keyframes barGrow {
    to { transform: scaleY(1); }
  }
  @keyframes wordRise {
    0%   { opacity: 0; transform: translateY(6px); filter: blur(5px); }
    60%  { opacity: 1; }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
  }
  @keyframes sigFade {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 0.85; transform: translateY(0); }
  }
  @keyframes pulseDot {
    0%, 100% { opacity: 0.30; transform: scale(1); }
    50%      { opacity: 1;    transform: scale(1.18); }
  }
  @media (prefers-reduced-motion: reduce) {
    .step-quote .word, .step-quote .signature { opacity: 1; transform: none; filter: none; animation: none; }
    .step-quote::before { transform: scaleY(1); }
    .step-quote::after { animation: none; opacity: 0.6; }
  }

  .thanks {
    text-align: center;
    padding: 24px 0 12px;
    max-width: 52ch;
    margin: 0 auto;
  }
  .thanks-mark {
    width: 60px; height: 60px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--sage-soft);
    display: grid; place-items: center;
    color: var(--sage);
    font-size: 28px;
    font-weight: 500;
    box-shadow: 0 0 0 8px rgba(209, 127, 90, 0.10);
  }
  .thanks h3 {
    font-size: 38px;
    font-weight: 320;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
  }
  .thanks p {
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.55;
    margin-bottom: 32px;
  }
  .thanks-actions {
    display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  }

  /* ─── Termin ─── */
  section.termin {
    padding: 130px 0 140px;
    border-top: 1px solid var(--rule);
    background: var(--paper-deep);
    position: relative;
    overflow: hidden;
  }
  .termin-deco {
    position: absolute;
    right: -8%; top: -10%;
    width: 70%; height: 120%;
    background: radial-gradient(closest-side, rgba(44, 79, 110, 0.20), transparent 70%);
    pointer-events: none;
  }
  .termin-inner { position: relative; z-index: 2; }
  .termin-headline {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 300;
    font-size: clamp(56px, 9vw, 144px);
    line-height: 0.92;
    letter-spacing: -0.038em;
    max-width: 14ch;
    margin: 36px 0 60px;
  }
  .termin-headline em { font-weight: 500; color: var(--sage); letter-spacing: -0.02em; }

  .termin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
    border-top: 1px solid var(--rule-strong);
    padding-top: 48px;
  }
  .contact-card {
    display: flex; flex-direction: column;
    gap: 8px;
    padding: 8px 0;
  }
  .contact-card .ctype {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--sage);
    font-weight: 500;
    margin-bottom: 4px;
  }
  .contact-card .cval {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 340;
    font-size: 28px;
    letter-spacing: -0.01em;
    color: var(--ink);
    text-decoration: none;
    line-height: 1.15;
  }
  .contact-card .cval em { font-weight: inherit; color: inherit; letter-spacing: inherit; font-style: normal; }
  .contact-card .cnote {
    font-size: 13.5px;
    color: var(--ink-soft);
    margin-top: 4px;
    max-width: 36ch;
  }
  .contact-card .clink {
    margin-top: 14px;
    align-self: flex-start;
  }

  .termin-note {
    margin-top: 72px;
    padding: 32px 36px;
    border: 1px solid var(--rule);
    background: rgba(255, 255, 255, 0.55);
    border-radius: var(--r-lg);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: start;
    box-shadow: 0 12px 32px rgba(26, 39, 53, 0.06);
  }
  .termin-note .ico {
    width: 44px; height: 44px;
    border: 1px solid var(--rule-strong);
    border-radius: 50%;
    display: grid; place-items: center;
    color: var(--sage);
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 22px;
  }
  .termin-note p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--ink-soft);
  }
  .termin-note p strong { color: var(--ink); font-weight: 500; }

  /* ─── Footer ─── */
  footer.footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--rule);
    color: var(--ink-soft);
    font-size: 13px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--rule);
  }
  .footer-brand .brand-name { font-size: 22px; }
  .footer-brand p { margin-top: 12px; max-width: 32ch; font-size: 13.5px; }
  .footer-col h5 {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 18px;
  }
  .footer-col a {
    display: block;
    color: var(--ink-soft);
    text-decoration: none;
    padding: 4px 0;
    font-size: 13.5px;
    transition: color 0.3s;
  }
  .footer-col a:hover { color: var(--ink); }
  .footer-foot {
    display: flex; justify-content: space-between;
    padding-top: 28px;
    font-size: 12px;
    color: var(--ink-mute);
  }

  /* ─── Animations ─── */
  @keyframes rise {
    from { opacity: 0; transform: translateY(32px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .reveal { opacity: 0; animation: rise 1s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
  .d1 { animation-delay: 0.1s; } .d2 { animation-delay: 0.25s; }
  .d3 { animation-delay: 0.4s; } .d4 { animation-delay: 0.55s; }
  .d5 { animation-delay: 0.7s; } .d6 { animation-delay: 0.85s; }

  .fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
  .fade-up.in { opacity: 1; transform: translateY(0); }

  /* ─── Responsive ─── */
  @media (max-width: 980px) {
    .container { padding: 0 24px; }
    .topbar-inner { grid-template-columns: 1fr auto; padding: 14px 24px; gap: 12px; }
    .topnav { display: none; }
    .phone-mini { display: none; }
    .hero-meta { grid-template-columns: 1fr; gap: 14px; padding-bottom: 36px; }
    .meta-rule { display: none; }
    .hero-grid { grid-template-columns: 1fr; gap: 56px; margin-top: 64px; }
    .hero-stats { grid-template-columns: 1fr; gap: 18px; }
    .stat { padding-top: 14px; }
    .manifest-grid, .vita-grid, .praxis-grid, .private-grid, .unt-grid { grid-template-columns: 1fr; gap: 40px; }
    .section-heading { grid-template-columns: 1fr; gap: 24px; padding-bottom: 48px; }
    .spec-row { grid-template-columns: 60px 1fr; gap: 16px; padding: 24px 0; }
    .spec-row > .spec-desc, .spec-row > .spec-arrow { grid-column: 1 / -1; padding-left: 76px; }
    .spec-row > .spec-arrow { display: none; }
    .unt-list { grid-template-columns: 1fr; gap: 0; }
    .vita-row { grid-template-columns: 80px 1fr; gap: 16px; }
    .vita-place { grid-column: 1 / -1; padding-left: 96px; text-align: left; }
    .praxis-detail { grid-template-columns: 1fr; gap: 36px; }
    .termin-grid { grid-template-columns: 1fr; }
    .termin-note { grid-template-columns: 1fr; gap: 16px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    section { padding: 80px 0 !important; }
    .private-band { padding: 80px 0; margin: 0; border-radius: 0; }
    .briefing-head { grid-template-columns: 1fr; gap: 24px; padding-bottom: 36px; }
    .briefing-banner { aspect-ratio: 16/10; margin-bottom: 18px; border-radius: var(--r-lg); }
    .briefing-card { padding: 28px 22px 24px; border-radius: var(--r-lg); }
    .briefing-progress { flex-direction: column; gap: 14px; align-items: flex-start; padding-bottom: 24px; margin-bottom: 28px; }
    .progress-dots { width: 100%; }
    .scale-options { grid-template-columns: 1fr 1fr; }
    .field-row { grid-template-columns: 1fr; gap: 0; }
    .briefing-nav { flex-wrap: wrap; gap: 12px; }
    .briefing-nav .nav-help { width: 100%; order: 3; text-align: center; }
    .step-stage { min-height: 480px; }
    .hero-top { grid-template-columns: 1fr; gap: 36px; }
    .hero-portrait { max-width: 320px; }
    .reviews-head { grid-template-columns: 1fr; gap: 24px; padding-bottom: 36px; }
    .reviews-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 32px; }
    .review-card { padding: 24px 22px 22px; }
  }

/* ─── Sub-Pages (Leistungsseiten) ─── */
.page-breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 0;
}
.page-breadcrumb a {
  color: var(--sage);
  text-decoration: none;
  font-weight: 500;
}
.page-breadcrumb a:hover { text-decoration: underline; }
.page-breadcrumb .sep { color: var(--ink-mute); }

.page-lead {
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-top: 36px;
}
.page-lead strong { color: var(--ink); font-weight: 500; }

.page-section {
  padding: 80px 0;
  border-top: 1px solid var(--rule);
}
.page-section.first { border-top: none; padding-top: 40px; }

.page-section h2 {
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 320;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 36px;
  max-width: 22ch;
}

.page-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
  align-items: start;
}
.page-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  max-width: 64ch;
}
.page-text p { margin-bottom: 18px; }
.page-text p:last-child { margin-bottom: 0; }
.page-text ul {
  list-style: none;
  padding: 0;
  margin: 18px 0;
}
.page-text ul li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 8px 0;
  line-height: 1.6;
}
.page-text ul li::before {
  content: "";
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  background: url("img/logo-blue-dark.svg") no-repeat center / contain;
  margin-top: 6px;
  opacity: 0.85;
}
.page-text strong { color: var(--ink); font-weight: 500; }

.page-quote {
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 320;
  font-size: 21px;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--ink);
  position: relative;
  backdrop-filter: blur(6px);
  box-shadow: 0 14px 36px rgba(26,39,53,0.08);
}
.page-quote::before {
  content: "";
  position: absolute;
  left: 0; top: 24px; bottom: 24px;
  width: 3px;
  border-radius: 3px;
  background: var(--sage);
}

.page-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.page-card {
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  overflow: hidden;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.7s ease,
              border-color 0.7s ease,
              background 0.7s ease;
  will-change: transform;
}
.page-card::after {
  content: "";
  position: absolute;
  left: -40%;
  top: -40%;
  width: 100%;
  height: 100%;
  background: radial-gradient(closest-side, rgba(209,127,90,0.10), transparent 70%);
  opacity: 0;
  transition: opacity 0.9s ease, transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.page-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(26, 39, 53, 0.10);
  border-color: var(--rule-strong);
  background: rgba(255,255,255,0.78);
}
.page-card:hover::after {
  opacity: 1;
  transform: translate(20%, 10%);
}
.page-card h3 {
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.015em;
  position: relative;
  z-index: 1;
}
.page-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  position: relative;
  z-index: 1;
}
.page-card .card-mark {
  width: 28px; height: 28px;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-card:hover .card-mark { transform: scale(1.1) rotate(-2deg); }
.page-card .card-mark img { width: 100%; height: 100%; object-fit: contain; }

.page-section.cross {
  background: var(--paper-2);
}
.cross-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.cross-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 22px 22px 24px;
  text-decoration: none;
  color: var(--ink);
  display: flex; flex-direction: column;
  gap: 10px;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.7s ease;
}
.cross-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(26,39,53,0.10);
}
.cross-card .cross-mark { width: 24px; height: 24px; opacity: 0.85; }
.cross-card .cross-mark img { width: 100%; height: 100%; object-fit: contain; }
.cross-card h4 {
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.cross-card .cross-arrow {
  margin-top: auto;
  color: var(--sage);
  font-size: 14px;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.cross-card:hover .cross-arrow { transform: translate(4px, -4px); }

@media (max-width: 980px) {
  .page-section { padding: 56px 0; }
  .page-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-cards { grid-template-columns: 1fr; }
  .cross-grid { grid-template-columns: 1fr 1fr; }
  .page-quote { padding: 22px 24px; font-size: 18px; }
}

/* ─── Topnav Dropdown ─── */
.topnav .has-sub {
  position: relative;
}
.topnav .submenu {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 8px;
  min-width: 240px;
  box-shadow: 0 18px 50px rgba(26,39,53,0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 60;
  display: flex; flex-direction: column;
}
.topnav .has-sub:hover .submenu,
.topnav .has-sub:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.topnav .submenu a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  font-size: 14px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.2s;
}
.topnav .submenu a::after { content: none; }
.topnav .submenu a:hover { background: var(--paper-2); }
.topnav .submenu a img {
  width: 18px; height: 18px;
  opacity: 0.85;
  flex-shrink: 0;
}
.topnav .has-sub > a::before {
  content: "";
  position: absolute;
  bottom: -16px; left: 0; right: 0;
  height: 16px;
}
@media (max-width: 980px) {
  .topnav .submenu { display: none; }
}

/* ─── FAQ-Sektion auf Sub-Pages ─── */
.faq-section { padding: 96px 0 100px; border-top: 1px solid var(--rule); }
.faq-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: end;
  padding-bottom: 48px;
}
.faq-head h2 {
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 320;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-top: 16px;
}
.faq-head h2 em { font-weight: 500; color: var(--sage); letter-spacing: -0.02em; }
.faq-head p { color: var(--ink-soft); max-width: 48ch; line-height: 1.55; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 880px;
}
.faq-item {
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: background 0.6s ease, border-color 0.6s ease;
  backdrop-filter: blur(6px);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.005em;
  color: var(--ink);
  transition: color 0.4s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 26px;
  font-weight: 300;
  color: var(--sage);
  line-height: 1;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] {
  background: rgba(255,255,255,0.85);
  border-color: var(--rule-strong);
}
.faq-item[open] summary { color: var(--ink); }
.faq-answer {
  padding: 0 28px 24px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.65;
}
.faq-answer p { margin-bottom: 10px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer strong { color: var(--ink); font-weight: 500; }
.faq-answer a { color: var(--sage); text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 980px) {
  .faq-head { grid-template-columns: 1fr; gap: 16px; padding-bottom: 32px; }
  .faq-item summary { padding: 18px 22px; font-size: 16px; }
  .faq-answer { padding: 0 22px 20px; font-size: 15px; }
}
