/* cyrillic-ext */
/* cyrillic */
/* greek-ext */
/* greek */
/* vietnamese */
/* latin-ext */
/* latin */
/* cyrillic-ext */
/* cyrillic */
/* greek-ext */
/* greek */
/* vietnamese */
/* latin-ext */
/* latin */
/* cyrillic-ext */
/* cyrillic */
/* greek-ext */
/* greek */
/* vietnamese */
/* latin-ext */
/* latin */
/* cyrillic-ext */
/* cyrillic */
/* greek-ext */
/* greek */
/* vietnamese */
/* latin-ext */
/* latin */
/* cyrillic-ext */
/* cyrillic */
/* greek-ext */
/* greek */
/* vietnamese */
/* latin-ext */
/* latin */
/* ============================================================
     AUGUSTA ADVISORY · OnePager
     Corporate Design: Navy #0a2864 · Weiß · Hellgrau · Inter
     Klar strukturiert für spätere Portierung nach Blade + Tailwind.
     ============================================================ */

  :root {
    --navy:        #0a2864;
    --navy-700:    #14336f;
    --navy-900:    #061a44;
    --ink:         #11192b;   /* Headlines auf Weiß */
    --body:        #4a5568;   /* Fließtext */
    --body-soft:   #717b8c;
    --white:       #ffffff;
    --gray-bg:     #f5f6f8;   /* abgesetzte Sections */
    --gray-100:    #eef0f4;
    --hairline:    #e3e6ec;   /* dünne Linien */
    --hairline-dk: rgba(255,255,255,0.14);
    --placeholder: #dfe3ea;

    --maxw: 1200px;
    --pad:  clamp(20px, 5vw, 40px);
    --sec-pad: clamp(72px, 11vh, 132px);
    --radius: 4px;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

    /* === Mittelband-System: x-Position der zwei vertikalen Linien === */
    --gl-1: 30%;   /* linke Linie */
    --gl-2: 74%;   /* rechte Linie */
    --band-pad: 44px;  /* KONSTANTER Innenabstand Content -> Linie (gleich links & oben, größenunabhängig) */
  }
  @media (max-width: 1280px) { :root { --gl-1: 22%; --gl-2: 80%; } }
  @media (max-width: 1000px) { :root { --gl-1: 15%; --gl-2: 85%; } }
  @media (max-width: 760px)  { :root { --gl-1: 0%;  --gl-2: 100%; --band-pad: var(--pad); } }

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

  html {
    scroll-behavior: auto;   /* Navigation läuft über expliziten JS-scrollTo (smooth) */
    -webkit-text-size-adjust: 100%;
  }
  main#top, section[id] { scroll-margin-top: 24px; }

  body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--body);
    background: var(--white);
    font-size: 17px;
    line-height: 1.65;
    font-weight: 400;
    letter-spacing: -0.005em;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  h1, h2, h3, h4 {
    color: var(--ink);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin: 0;
    text-wrap: balance;
  }

  p { margin: 0; }
  a { color: inherit; text-decoration: none; }

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

  /* ---- Layout-Helfer ---- */
  .container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding-inline: var(--pad);
  }

  .section { padding-block: var(--sec-pad); }
  .section--gray { background: var(--gray-bg); }
  .section--navy { background: var(--navy); }
  #vorgehen { padding-block: clamp(104px, 15vh, 176px); }
  /* Oben wie unten derselbe Abstand — die Section soll ruhig atmen. */
  #kontakt { padding-block: clamp(128px, 19vh, 224px); }
  #warum { padding-block: clamp(180px, 26vh, 320px); }
  #branchen { padding-block: clamp(104px, 15vh, 176px); }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--navy);
    margin: 0 0 22px;
  }
  .eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--navy);
    opacity: 0.5;
  }
  .section--navy .eyebrow { color: #9db4e0; }
  .section--navy .eyebrow::before { background: #9db4e0; }

  .lead { font-size: clamp(17px, 1.4vw, 19px); color: var(--body); max-width: 56ch; }
  .section--navy h2, .section--navy h3 { color: #fff; }
  .section--navy p { color: rgba(255,255,255,0.74); }

  /* ============================================================
     BUTTONS
     ============================================================ */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1;
    padding: 15px 26px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: background .2s var(--ease), color .2s var(--ease),
                border-color .2s var(--ease), transform .12s var(--ease);
    white-space: nowrap;
  }
  .btn svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
  .btn:active { transform: scale(0.98); }

  .btn--primary { background: var(--navy); color: #fff; }
  .btn--primary:hover { background: var(--navy-700); }
  .btn--primary:hover svg { transform: translateX(4px); }

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

  .btn--light { background: #fff; color: var(--navy); }
  .btn--light:hover { background: var(--gray-100); }
  .btn--light:hover svg { transform: translateX(4px); }

  .btn--sm { padding: 11px 18px; font-size: 14px; }

  /* Fokus-States (A11y) */
  a:focus-visible, button:focus-visible, .btn:focus-visible {
    outline: 2px solid var(--navy);
    outline-offset: 3px;
    border-radius: var(--radius);
  }
  .section--navy a:focus-visible { outline-color: #fff; }

  /* ============================================================
     HEADER
     ============================================================ */
  .site-header {
    position: absolute;
    inset: 0 0 auto 0;
    z-index: 50;
    height: 88px;            /* = Position der oberen Horizontallinie (Nav-Unterkante) */
    transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease), color .35s var(--ease);
    border-bottom: 1px solid transparent;
    color: #fff;
  }
  .site-header--solid {
    /* kein weisser BG beim Scrollen – bewusst transparent */
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
  }

  .header-inner {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding-inline: var(--pad);
    height: 88px;
    display: flex;
    align-items: center;
  }

  /* Logo: ganz links außen (spiegelbildlich zu LinkedIn rechts), vertikal im 88px-Band */
  .logo { position: absolute; left: clamp(18px, 2.4vw, 40px); top: 0; height: 88px; display: inline-flex; align-items: center; color: currentColor; }
  .logo img, .logo svg { height: 32px; width: auto; display: block; fill: currentColor; }
  .logo svg path { fill: currentColor; }

  /* Nav: horizontal zentriert, vertikal im 88px-Band */
  .nav { position: absolute; left: 50%; top: 0; height: 88px; transform: translateX(-50%); display: flex; align-items: center; gap: clamp(10px, 1.6vw, 26px); }
  .nav__link {
    position: relative;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: currentColor;
    padding: 10px 14px;
    border-radius: var(--radius);
    transition: opacity .2s var(--ease);
  }
  .nav__link::after {
    content: "";
    position: absolute;
    left: 14px; right: 14px; bottom: 4px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s var(--ease);
  }
  .nav__link:hover { color: currentColor; }
  .nav__link:hover::after { transform: scaleX(1); }

  /* nur LinkedIn – rechts neben der rechten Linie (74%) */
  .header-actions { position: absolute; right: clamp(18px, 2.4vw, 40px); top: 0; height: 88px; display: flex; align-items: center; gap: 14px; }
  .hd-ic { width: 36px; height: 36px; border-radius: 50%; border: 1px solid currentColor; color: currentColor; display: inline-flex; align-items: center; justify-content: center; opacity: 0.9; transition: opacity .2s var(--ease); }
  .hd-ic:hover { opacity: 1; }
  .hd-ic svg { width: 15px; height: 15px; fill: currentColor; }
  .hd-cta { display: inline-flex; align-items: center; gap: 8px; border: 1px solid currentColor; color: currentColor; padding: 9px 17px; border-radius: var(--radius); font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease); white-space: nowrap; }
  .hd-cta:hover { background: rgba(255,255,255,0.14); }
  .site-header--solid .hd-cta:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

  /* Hamburger */
  .nav-toggle {
    display: none;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    background: transparent; border: none; cursor: pointer;
    color: currentColor;
  }
  .nav-toggle svg { width: 24px; height: 24px; }

  /* Mobile-Panel: vollflächiges Navy-Overlay */
  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 49;
    background: var(--navy);
    padding: calc(88px + clamp(20px, 6vh, 56px)) var(--pad) 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .mobile-nav a {
    display: block;
    font-size: clamp(30px, 8.5vw, 48px);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #fff;
    padding: clamp(16px, 2.4vh, 24px) 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    transition: color .2s var(--ease), padding-left .25s var(--ease);
  }
  .mobile-nav a:first-child { border-top: 1px solid rgba(255,255,255,0.12); }
  .mobile-nav a:hover, .mobile-nav a:active { color: #9db4e0; padding-left: 10px; }
  .mobile-nav .btn { width: 100%; justify-content: center; margin-top: 28px; }

  /* ============================================================
     HERO
     ============================================================ */
  .hero { position: relative; min-height: 100vh; min-height: 100svh; overflow: hidden; background: var(--navy-900); }
  .hero__slides { position: absolute; inset: 0; }
  .hero__slide { position: absolute; inset: 0; opacity: 0; pointer-events: none; z-index: 1; transition: opacity 1s var(--ease); }
  .hero__slide.is-active { opacity: 1; pointer-events: auto; z-index: 2; }
  .hero__bg { position: absolute; inset: 0; }
  .hero__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(1.12) saturate(1.06); }
  /* Overlay hält den weißen Text lesbar — oben/unten kräftiger, im Mittelband bewusst leicht. */
  .hero__bg::after { content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(6,16,40,0.52) 0%, rgba(6,16,40,0.18) 34%, rgba(6,16,40,0.20) 56%, rgba(6,16,40,0.70) 100%); }
  /* Headline immer oben + immer im Mittelband (zwischen den Linien, mit Padding) */
  /* Top-Abstand = obere Linie (88px) + band-pad  ->  Abstand oben == Abstand links, konstant */
  .hero__content { position: relative; z-index: 3; min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-start;
    padding: calc(88px + var(--band-pad)) calc(100% - var(--gl-2) + var(--band-pad)) clamp(120px, 16vh, 180px) calc(var(--gl-1) + var(--band-pad)); }
  .hero__h { color: #fff; font-size: clamp(30px, 3.6vw, 58px); font-weight: 600; letter-spacing: -0.035em; line-height: 1.0; margin-left: 0; max-width: none;
    opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
  .hero__slide.is-active .hero__h { opacity: 1; transform: none; transition-delay: 0.12s; }
  /* Kleintext bündig unter der Headline (in-flow, gleiche linke Kante) */
  .hero__panel { position: static; margin-left: 0; margin-top: clamp(20px, 3vh, 32px); width: 100%; max-width: 440px;
    color: #fff; padding: 0;
    opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
  .hero__slide.is-active .hero__panel { opacity: 1; transform: none; transition-delay: 0.3s; }
  .hero__panel p { font-size: clamp(15px,1.2vw,18px); line-height: 1.55; color: rgba(255,255,255,0.92); }
  .hero__more { display: inline-flex; align-items: center; gap: 14px; margin-top: 24px; color: #fff;
    font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
  .hero__more .c { display: inline-flex; align-items: center; justify-content: center; transition: transform .25s var(--ease); }
  .hero__more:hover .c { transform: translateX(6px); }
  .hero__more svg { width: 20px; height: 20px; }

  /* Slider-Navigation – editorial: Segment-Linien + Index + dezente Pfeile, unten am Band */
  .hero__nav { position: absolute; z-index: 6; bottom: clamp(30px, 6vh, 56px);
    left: calc(var(--gl-1) + var(--band-pad)); right: calc(100% - var(--gl-2) + var(--band-pad));
    display: flex; align-items: center; gap: clamp(16px, 2.2vw, 30px); }
  .hero__seg { display: flex; gap: 8px; }
  .hero__seg button { width: clamp(26px, 3vw, 46px); height: 22px; padding: 0; background: none; border: 0; cursor: pointer; position: relative; }
  .hero__seg button::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 2px; transform: translateY(-50%);
    background: rgba(255,255,255,0.3); transition: background .3s var(--ease); }
  .hero__seg button:hover::before { background: rgba(255,255,255,0.6); }
  .hero__seg button.is-active::before { background: #fff; }
  .hero__count { color: rgba(255,255,255,0.6); font-size: 13px; letter-spacing: 0.14em; font-variant-numeric: tabular-nums; }
  .hero__count .cur { color: #fff; }
  .hero__count .sep { margin: 0 3px; opacity: .55; }
  .hero__arrows { display: flex; gap: 10px; margin-left: auto; }
  .hero__navbtn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.4);
    background: transparent; color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
    transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease); }
  .hero__navbtn:hover { background: #fff; color: var(--navy); border-color: #fff; }
  .hero__navbtn svg { width: 16px; height: 16px; }

  .hero__guide { position: absolute; z-index: 4; background: rgba(255,255,255,0.13); pointer-events: none; }
  .hero__guide--h  { left: 0; right: 0; top: 88px; height: 1px; }
  .hero__guide--v1 { top: 0; bottom: 0; left: var(--gl-1); width: 1px; }
  .hero__guide--v2 { top: 0; bottom: 0; left: var(--gl-2); width: 1px; }

  /* ============================================================
     SECTION-KOPF
     ============================================================ */
  .section-head { max-width: 640px; margin-bottom: clamp(40px, 6vh, 64px); }
  .section-head h2 { font-size: clamp(30px, 3.6vw, 46px); }
  .section-head .lead { margin-top: 20px; }

  /* ============================================================
     LEISTUNGEN
     ============================================================ */
  .pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
  /* keine Box, keine Trennlinie zwischen den Säulen – nur Abstand */
  .pillar {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0 clamp(24px, 3vw, 40px) 0 0;
  }
  /* Leistungen: links Kopf | 1 Trennlinie | rechts die beiden Säulen gestapelt */
  .leistungen-split { display: grid; grid-template-columns: minmax(0,0.8fr) minmax(0,1.2fr); gap: clamp(32px, 6vw, 80px); align-items: start; }
  .leistungen-split .section-head { margin-bottom: 0; }
  .leistungen-body { border-left: 1px solid var(--hairline); padding-left: clamp(32px, 6vw, 80px); }
  .pillars { display: grid; grid-template-columns: 1fr; gap: clamp(34px, 5vw, 52px); }
  .pillar__num {
    font-size: 13px; font-weight: 600; color: var(--navy);
    letter-spacing: 0.18em;
  }
  .pillar__title { font-size: clamp(22px, 2.4vw, 28px); margin: 0 0 6px; line-height: 1.1; }
  .pillar__intro { font-size: 16px; color: var(--body); margin-bottom: 26px; }
  .pillar__list { list-style: none; margin: 0; padding: 0; }
  .pillar__list li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 18px;
    padding: 20px 0;
    border-top: 1px solid var(--hairline);
    align-items: start;
  }
  .pillar__list li:last-child { padding-bottom: 0; }
  .pillar__list .i {
    font-size: 13px; font-weight: 600; color: var(--navy);
    letter-spacing: 0.05em; padding-top: 2px; font-variant-numeric: tabular-nums;
  }
  .pillar__list .k {
    display: block; font-weight: 600; color: var(--ink); font-size: 16px;
    margin-bottom: 5px; letter-spacing: -0.01em;
  }
  .pillar__list .d { display: block; font-size: 14.5px; color: var(--body-soft); line-height: 1.55; }

  /* ============================================================
     USP (Navy)
     ============================================================ */
  .usp-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
  .usp h2 { font-size: clamp(32px, 4.2vw, 54px); }
  .usp__points { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 3vw, 44px); }
  .usp__point { padding: 0; }
  .usp__point:first-child { grid-column: 1 / -1; }
  .usp__point .n {
    font-size: 15px; font-weight: 600; color: #9db4e0;
    letter-spacing: 0.1em; padding-top: 4px;
  }
  .usp__point h3 { font-size: 21px; margin-bottom: 8px; }
  .usp__point p { font-size: 16px; }

  /* ============================================================
     BRANCHEN-FOKUS
     ============================================================ */
  .industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--hairline); }
  .industry {
    padding: 40px 40px 40px 44px;
    border-right: 1px solid var(--hairline);
  }
  .industry:first-child { padding-left: 0; }
  .industry:last-child { border-right: none; padding-right: 0; }
  .industry__idx { font-size: 13px; color: var(--navy); font-weight: 600; letter-spacing: 0.14em; }
  .industry__name { font-size: clamp(22px, 2.4vw, 28px); margin: 18px 0 12px; }
  .industry__desc { font-size: 16px; color: var(--body); }
  .region-note {
    margin-top: 56px;
    padding-top: 40px; border-top: 1px solid var(--hairline);
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start;
  }
  .region-note .tag { margin-bottom: 16px; }
  .region-note__head {
    font-size: clamp(28px, 3.6vw, 44px); font-weight: 600; color: var(--ink);
    letter-spacing: -0.025em; line-height: 1.04;
  }
  .region-note__sub { margin-top: 16px; font-size: 16px; color: var(--body); }
  .region-note__points { list-style: none; margin: 0; padding: 0; align-self: center; }
  .region-note__points li {
    display: grid; grid-template-columns: 132px 1fr; gap: 20px;
    padding: 16px 0; border-top: 1px solid var(--hairline);
  }
  .region-note__points li:first-child { border-top: none; padding-top: 0; }
  .region-note__points li:last-child { padding-bottom: 0; }
  .rk { font-weight: 600; color: var(--ink); font-size: 15px; }
  .rv { font-size: 15px; color: var(--body-soft); line-height: 1.55; }
  .industry-extra {
    margin-top: 28px;
    display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
    padding: 22px 24px;
    background: var(--gray-bg); border: 1px solid var(--hairline); border-radius: var(--radius);
    font-size: 15px; color: var(--body);
  }
  .industry-extra strong { color: var(--ink); font-weight: 600; }
  .pillars-note {
    margin-top: 28px; padding-top: 26px; border-top: 1px solid var(--hairline);
    font-size: 16px; color: var(--body-soft); max-width: 92ch;
  }
  .pillars-note strong { color: var(--ink); font-weight: 600; }
  .tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--navy); white-space: nowrap;
  }
  .tag::before {
    content: ""; width: 26px; height: 1px; background: var(--navy); opacity: 0.5;
  }
  .pillar__tag { margin-bottom: 14px; }

  /* ============================================================
     PROFIL
     ============================================================ */
  .profile { overflow: hidden; }
  .profile-split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
  .profile-media {
    position: relative; min-height: 580px;
    background: var(--placeholder);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .profile-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .profile-media span {
    font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #93a0b4;
  }
  .profile-body {
    background: #fff;
    display: flex; align-items: center;
    padding: clamp(56px, 7vw, 104px) clamp(28px, 5vw, 76px);
  }
  .profile-body__inner { max-width: 600px; width: 100%; }
  .profile__role { font-size: 13px; font-weight: 600; color: var(--navy); letter-spacing: 0.14em; text-transform: uppercase; }
  .profile h2 { font-size: clamp(28px, 3.4vw, 40px); margin: 14px 0 8px; }
  .profile__tag { font-size: 17px; color: var(--body); margin-bottom: 32px; }

  .cv__label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); margin-bottom: 14px; }
  .cv { list-style: none; margin: 0 0 14px; padding: 0; }
  .cv li {
    display: grid; grid-template-columns: 210px 1fr; gap: 24px;
    padding: 11px 0; border-top: 1px solid var(--hairline);
    align-items: baseline;
  }
  .cv li .org { font-weight: 600; color: var(--ink); font-size: 16px; }
  .cv li .org .loc { color: var(--navy); font-weight: 500; font-size: 14.5px; }
  .cv li .pos { font-size: 15px; color: var(--body-soft); }
  /* Jahre rechtsbündig, damit die Chronologie als Spalte lesbar bleibt */
  .cv li .pos .yr { display: block; margin-top: 2px; font-size: 13.5px; font-weight: 600; color: var(--navy); font-variant-numeric: tabular-nums; }
  .cv__note { font-size: 14px; color: var(--body-soft); line-height: 1.6; margin: 0 0 28px; }

  .credentials { margin: 4px 0 0; padding-top: 22px; border-top: 1px solid var(--hairline); }
  .credentials__label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); margin-bottom: 18px; }
  /* Viereck: 2x2, chronologisch nummeriert (01 = höchster Abschluss) */
  .credentials__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden; }
  .credentials__list li { display: flex; flex-direction: column; gap: 4px; background: #fff; padding: 20px 22px; }
  .cred-i { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; color: var(--navy); opacity: 0.55; font-variant-numeric: tabular-nums; }
  .cred-k { font-weight: 600; color: var(--ink); font-size: 15.5px; line-height: 1.3; margin-top: 2px; }
  .cred-d { font-size: 14px; color: var(--body-soft); line-height: 1.5; }
  .cred-v { font-size: 13.5px; color: var(--body-soft); line-height: 1.45; }
  .cred-y { margin-top: auto; padding-top: 8px; font-size: 12.5px; font-weight: 600; color: var(--navy); font-variant-numeric: tabular-nums; }
  @media (max-width: 640px) {
    .credentials__list { grid-template-columns: 1fr; }
  }

  /* ============================================================
     VORGEHEN
     ============================================================ */
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .step {
    position: relative;
    padding-top: 26px;
    border-top: 2px solid var(--navy);
  }
  .step__num {
    display: block;
    font-size: clamp(36px, 4vw, 48px); font-weight: 600; color: var(--navy);
    letter-spacing: -0.03em; line-height: 1; margin-bottom: 18px;
    font-variant-numeric: tabular-nums;
  }
  .step h3 { font-size: clamp(20px, 2.2vw, 25px); margin: 0 0 10px; }
  .step p { font-size: 16px; color: var(--body); }
  .step__hint { display: inline-block; margin-top: 14px; font-size: 13.5px; font-weight: 600; color: var(--navy); letter-spacing: 0.02em; }

  /* ============================================================
     KONTAKT
     ============================================================ */
  /* Ueberformatiges A als Grafikelement, links angeschnitten, hinter dem Inhalt */
  .contact-section { position: relative; overflow: hidden; }
  .contact__mark {
    position: absolute; z-index: 0; pointer-events: none;
    left: clamp(-90px, -6vw, -30px); bottom: -8%;
    height: 132%; width: auto; opacity: 0.07;
  }
  .contact-section > .container { position: relative; z-index: 1; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
  .contact h2 { font-size: clamp(32px, 4.4vw, 56px); color: #fff; }
  .contact__sub { margin-top: 22px; font-size: 18px; max-width: 42ch; }
  .contact-list { display: block; text-align: right; }
  /* Kontaktliste: normaler Paragraph-Zeilenabstand */
  .contact-item {
    display: block; padding: 0;
    color: #fff; transition: color .2s var(--ease);
  }
  .contact-item .val, .contact-item .sub { display: block; font-size: 17px; line-height: 1.75; letter-spacing: -0.01em; }
  .contact-item .val { color: #fff; }
  .contact-item .sub { color: rgba(255,255,255,0.55); }
  a.contact-item:hover { color: #9db4e0; }
  a.contact-item:hover .val { color: #9db4e0; }
  .contact-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--hairline-dk);
    border-radius: var(--radius);
    padding: clamp(28px, 3vw, 40px);
  }
  .contact-row {
    display: grid; grid-template-columns: 120px 1fr; gap: 20px;
    padding: 20px 0; border-bottom: 1px solid var(--hairline-dk);
    align-items: baseline;
  }
  .contact-row:last-child { border-bottom: none; padding-bottom: 0; }
  .contact-row:first-child { padding-top: 0; }
  .contact-row .label { font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #9db4e0; }
  .contact-row .val { font-size: 17px; color: #fff; }
  .contact-row a.val { transition: color .2s var(--ease); }
  .contact-row a.val:hover { color: #9db4e0; }

  /* ============================================================
     FOOTER
     ============================================================ */
  /* Footer: Logo links, rechts ein sauberer Info-Block (Schrift wie Kontaktdaten, normale line-height) */
  .site-footer { background: var(--navy); color: rgba(255,255,255,0.6); padding-block: clamp(72px, 10vh, 120px); }
  .footer-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px 48px; flex-wrap: wrap;
    max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
  .footer-logo { height: clamp(44px, 4.4vw, 60px); display: inline-flex; align-items: center; }
  .footer-logo img { height: 100%; width: auto; display: block; }
  .footer-info { text-align: right; font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.6); }
  .footer-links a { color: rgba(255,255,255,0.6); transition: color .2s var(--ease); }
  .footer-links a:hover { color: #fff; }
  .footer-meta { font-size: 14px; line-height: 1.7; }

  /* ============================================================
     REVEAL (Fallback sichtbar, falls JS/GSAP fehlt)
     ============================================================ */
  .reveal { will-change: transform, opacity; }

  /* ============================================================
     LEISTUNGSSPORT · Bildbühne (full-bleed)
     ============================================================ */
  /* Animierte Grafik als Sektions-Hintergrund */
  .section--gfx { position: relative; overflow: hidden; }
  .section--gfx > .container { position: relative; z-index: 2; }
  .section-gfx { position: absolute; inset: 0; z-index: 0; }
  .section-gfx .bandgfx { width: 100%; height: 100%; display: block; }
  .bandgfx__mark { opacity: 0.06; }
  .bandgfx__lines path { stroke-dasharray: 6 9; animation: bandDash 22s linear infinite; }
  @keyframes bandDash { to { stroke-dashoffset: -300; } }
  @media (prefers-reduced-motion: reduce) {
    .bandgfx__lines path { animation: none; }
  }

  /* Bildband */
  .imgband { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
  .imgband__media { position: absolute; inset: 0; z-index: 0; }
  .imgband__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; display: block; }
  .imgband__media::after { content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(10,40,100,0.82) 0%, rgba(10,40,100,0.55) 45%, rgba(10,40,100,0.2) 100%); }
  .imgband__credit { position: absolute; z-index: 2; right: 7px; bottom: 12px;
    writing-mode: vertical-rl; transform: rotate(180deg);
    font-size: 9px; letter-spacing: 0.04em; color: rgba(255,255,255,0.5);
    white-space: nowrap; pointer-events: none; user-select: none; }
  .imgband__mark { position: absolute; z-index: 1; right: clamp(20px, 6vw, 90px); bottom: 0;
    height: 100%; width: auto; opacity: 0.1; pointer-events: none; }
  .imgband__inner { position: relative; z-index: 2; width: 100%; padding-block: clamp(56px, 9vh, 100px); }
  .imgband .eyebrow { color: #fff; font-size: 12.5px; }
  .imgband .eyebrow::before { background: #fff; }
  .imgband h2 { color: #fff; font-size: clamp(28px, 3.4vw, 46px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; }
  .imgband h2 em { font-style: normal; font-weight: 600; color: #fff; }
  .imgband__lead { color: rgba(255,255,255,0.86); max-width: 50ch; margin-top: 26px; font-size: clamp(16px, 1.4vw, 19px); line-height: 1.6; }

  .athlete { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
  .athlete__media { position: absolute; inset: 0; z-index: 0; }
  .athlete__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; display: block; }
  .athlete__media::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background:
      linear-gradient(180deg, rgba(6,16,40,0.38) 0%, rgba(6,16,40,0) 26%, rgba(6,16,40,0.82) 100%),
      linear-gradient(90deg, rgba(6,16,40,0.62) 0%, rgba(6,16,40,0.12) 48%, rgba(6,16,40,0) 70%);
  }
  .athlete__inner { position: relative; z-index: 2; width: 100%; padding-block: clamp(64px, 11vh, 120px); }
  .athlete .eyebrow { color: #fff; font-size: 12.5px; }
  .athlete .eyebrow::before { background: #fff; }
  .athlete h2 { color: #fff; font-size: clamp(28px, 3.4vw, 46px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; }
  .athlete h2 em { font-style: normal; font-weight: 600; color: #fff; }
  .athlete__lead { color: rgba(255,255,255,0.86); max-width: 52ch; margin-top: 26px; font-size: clamp(16px, 1.4vw, 19px); line-height: 1.6; }
  .athlete__stats { display: flex; gap: clamp(28px, 5vw, 76px); margin-top: clamp(36px, 5vh, 56px); flex-wrap: wrap; }
  .athlete__stat .v { font-size: clamp(36px, 4vw, 48px); font-weight: 600; color: #fff; letter-spacing: -0.03em; line-height: 1; font-variant-numeric: tabular-nums; }
  .athlete__stat .l { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 10px; }
  .athlete__stat--wide { flex: 1 1 340px; max-width: 460px; }
  .athlete__palmares { list-style: none; margin: 12px 0 0; padding: 0; }
  .athlete__palmares li { position: relative; padding-left: 16px; font-size: 14px; line-height: 1.5;
    color: rgba(255,255,255,0.78); }
  .athlete__palmares li + li { margin-top: 7px; }
  .athlete__palmares li::before { content: ""; position: absolute; left: 0; top: 0.62em;
    width: 6px; height: 1px; background: rgba(255,255,255,0.5); }
  /* Credit vertikal an der rechten Kante — analog .imgband__credit */
  .athlete__credit { position: absolute; z-index: 2; right: 7px; bottom: 12px;
    writing-mode: vertical-rl; transform: rotate(180deg);
    font-size: 9px; letter-spacing: 0.04em; color: rgba(255,255,255,0.5);
    white-space: nowrap; pointer-events: none; user-select: none; }

  /* ============================================================
     RESPONSIVE
     ============================================================ */
  @media (max-width: 1000px) {
    /* Hero-Slider behält volle Höhe; Steuerung rechts ausrichten */
    .hero__ctrls { right: var(--pad); left: auto; }
    .region-note { grid-template-columns: 1fr; gap: 36px; }
    .usp-grid { grid-template-columns: 1fr; gap: 40px; }
    .profile-split { grid-template-columns: 1fr; }
    .profile-media { min-height: 380px; order: -1; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .athlete, .imgband { min-height: auto; }
    .athlete__inner { padding-block: 120px 64px; }
  }

  @media (max-width: 760px) {
    .nav, .header-actions .hd-cta, .header-actions .hd-ic { display: none; }
    .header-actions { position: absolute; left: auto; right: var(--pad); padding-left: 0; }
    .nav-toggle { display: inline-flex; }
    .hero__panel { position: relative; left: auto; bottom: auto; width: 100%; max-width: none; margin-left: 0; background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; padding-inline: 0; }
    .hero__content { justify-content: flex-end; padding-bottom: 104px; }
    .hero__ctrls { left: auto; right: var(--pad); bottom: 24px; flex-direction: row; align-items: center; gap: 12px; }
    .hero__arrow { width: 48px; height: 48px; }
    .hero__count { margin-top: 0; margin-left: 6px; }
    .hero__guide--v1, .hero__guide--v2 { display: none; }
    .leistungen-split { grid-template-columns: 1fr; gap: 36px; }
    .leistungen-body { border-left: none; padding-left: 0; }
    .pillars { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: 1fr; }
    .industry { border-right: none; border-bottom: 1px solid var(--hairline); padding: 32px 0; }
    .industry:last-child { border-bottom: none; }
    .steps { grid-template-columns: 1fr; gap: 32px; }
    .step__arrow { display: none !important; }
    .cv li { grid-template-columns: 1fr; gap: 4px; }
    .contact-row { grid-template-columns: 1fr; gap: 6px; }
    .hero__h { font-size: clamp(34px, 11vw, 60px); margin-left: 0; max-width: none; }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  }

[x-cloak]{display:none !important;}

/* === Vanilla mobile-nav + toggle (ersetzt Alpine x-show) === */
.mobile-nav{display:none}
.site-header.is-open .mobile-nav{display:block}
.nav-toggle .ic-x{display:none}
.site-header.is-open .nav-toggle .ic-bars{display:none}
.site-header.is-open .nav-toggle .ic-x{display:block}

/* reveal */
.reveal{opacity:0;transform:translateY(26px);transition:opacity .85s cubic-bezier(.2,.7,.2,1),transform .85s cubic-bezier(.2,.7,.2,1)}
.reveal.in{opacity:1;transform:none}
@media(prefers-reduced-motion:reduce){.reveal{opacity:1;transform:none;transition:none}}
