/* -- Seiteneigenes Override: abweichende Easing-Kurve -- */
:root { --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.intro {
      min-height: 101vh; /* inkl. fixem Header = 101vh */
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: clamp(32px, 5vw, 56px) clamp(24px, 6vw, 72px);
      position: relative;
      overflow: hidden;
    }

    .intro::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold-bright) 0%, var(--gold) 60%, transparent 100%);
    }

    .intro-watermark {
      position: absolute;
      right: -0.05em; bottom: -0.15em;
      font-family: var(--ff-serif);
      font-size: clamp(280px, 40vw, 560px);
      font-weight: 600;
      line-height: 1;
      color: rgba(11,28,53,0.04);
      pointer-events: none;
      user-select: none;
      letter-spacing: -0.04em;
    }

    .intro-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 24px;
    }
    .intro-brand {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .intro-location {
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .intro-location::before {
      content: '';
      width: 20px; height: 1px;
      background: var(--gold);
    }

    .intro-center {
      position: relative;
      z-index: 1;
    }
    .intro-pre {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .intro-pre::before {
      content: '';
      width: 32px; height: 1px;
      background: var(--gold);
    }

    .intro-headline {
      font-family: var(--ff-serif);
      font-size: clamp(52px, 9vw, 130px);
      font-weight: 300;
      line-height: 0.9;
      letter-spacing: -0.02em;
      color: var(--navy);
    }
    .intro-headline em {
      font-style: italic;
      color: var(--gold);
    }
    .intro-headline .block {
      display: block;
    }

    .intro-tagline {
      font-size: clamp(14px, 1.4vw, 17px);
      font-weight: 300;
      line-height: 1.85;
      color: var(--muted);
      max-width: 540px;
      margin-top: clamp(22px, 3vh, 34px);
    }

    /* ── Kennzahlen-Leiste (Editorial) ── */
    .intro-stats {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      row-gap: 22px;
      padding-top: clamp(26px, 3.5vh, 40px);
      border-top: 1px solid var(--border);
      position: relative;
      z-index: 1;
    }
    .intro-stat {
      flex: 1 1 0;
      min-width: 150px;
      padding: 0 clamp(20px, 3.2vw, 48px);
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .intro-stat:first-child { padding-left: 0; }
    .intro-stat + .intro-stat { border-left: 1px solid var(--border); }
    .intro-stat-num {
      font-family: var(--ff-serif);
      font-size: clamp(34px, 4.2vw, 54px);
      font-weight: 600;
      line-height: 1;
      color: var(--gold);
    }
    .intro-stat-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
    }
    @media (max-width: 680px) {
      .intro-stat {
        flex-basis: 45%;
        border-left: none !important;
        padding-left: 0;
        padding-right: clamp(16px, 4vw, 32px);
      }
    }

    /* ═══════════════════════════════════════
       TEAM — dark navy, full-bleed
    ═══════════════════════════════════════ */
    .team {
      background: var(--navy);
      position: relative;
      overflow: hidden;
    }

    .team::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
      background-size: 56px 56px;
      pointer-events: none;
    }

    .team-header {
      padding: clamp(48px, 6vw, 72px) clamp(24px, 6vw, 72px) clamp(24px, 3vw, 36px);
      position: relative;
      z-index: 1;
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 24px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .team-header-title {
      font-family: var(--ff-serif);
      font-size: clamp(28px, 3.5vw, 44px);
      font-weight: 400;
      color: var(--white);
      margin: 0;
    }
    .team-header-title em {
      font-style: italic;
      color: var(--gold-bright);
    }
    .team-header-count {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.25);
      white-space: nowrap;
    }

    .team-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      z-index: 1;
    }
    .team-grid::before {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      left: 50%;
      width: 1px;
      background: rgba(255,255,255,0.07);
    }
    @media (max-width: 700px) {
      .team-grid { grid-template-columns: 1fr; }
      .team-grid::before { display: none; }
    }

    /* Each half: centered */
    .person {
      padding: clamp(40px, 5vw, 64px) clamp(24px, 3vw, 48px);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    /* ── Quadrat mit abgerundeten Ecken ── */
    .person-photo-wrap {
      margin-bottom: clamp(24px, 3vw, 32px);
      position: relative;
    }

    /* Dezenter Gold-Rahmen */
    .person-photo-wrap::before {
      content: '';
      position: absolute;
      inset: -5px;
      border-radius: 22px;
      border: 1px solid rgba(201,151,42,0.35);
      transition: border-color 0.4s var(--ease), inset 0.4s var(--ease);
    }
    .person:hover .person-photo-wrap::before {
      inset: -7px;
      border-color: rgba(240,180,41,0.6);
    }

    .person-photo {
      width: clamp(160px, 18vw, 210px);
      height: clamp(160px, 18vw, 210px);
      border-radius: 18px;
      overflow: hidden;
      background: var(--navy-light);
      box-shadow: 0 16px 48px rgba(0,0,0,0.5);
      transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    }
    .person:hover .person-photo {
      transform: translateY(-4px);
      box-shadow: 0 24px 64px rgba(0,0,0,0.6);
    }
    .person-photo img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: top center;
      transition: transform 0.7s var(--ease);
    }
    .person:hover .person-photo img {
      transform: scale(1.05);
    }

    .person-index {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }
    .person-name {
      font-family: var(--ff-serif);
      font-size: clamp(30px, 4vw, 52px);
      font-weight: 600;
      line-height: 0.95;
      color: var(--white);
      letter-spacing: -0.01em;
      margin: 0 0 8px;
    }
    .person-role {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      margin-bottom: 28px;
    }

    .person-contact {
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: center;
    }
    .person-contact a {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      font-weight: 400;
      color: rgba(255,255,255,0.45);
      transition: color 0.25s;
    }
    .person-contact a:hover { color: var(--gold-bright); }
    .person-contact a svg {
      width: 13px; height: 13px; flex-shrink: 0;
      stroke: var(--gold); fill: none;
      stroke-width: 2; stroke-linecap: round;
    }

    /* ═══════════════════════════════════════
       STATEMENT STRIP — gold pale
    ═══════════════════════════════════════ */
    .statement {
      background: var(--white);
      padding: clamp(56px, 7vw, 96px) clamp(24px, 6vw, 72px);
      position: relative;
      overflow: hidden;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .statement::before {
      content: '"';
      position: absolute;
      left: clamp(16px, 4vw, 48px);
      top: -0.1em;
      font-family: var(--ff-serif);
      font-size: clamp(200px, 28vw, 400px);
      font-weight: 600;
      color: rgba(201,151,42,0.1);
      line-height: 1;
      pointer-events: none;
    }
    .statement-inner {
      max-width: 820px;
      position: relative;
      z-index: 1;
    }
    .statement-quote {
      font-family: var(--ff-serif);
      font-size: clamp(24px, 3.5vw, 46px);
      font-weight: 300;
      font-style: italic;
      line-height: 1.25;
      color: var(--navy);
    }
    .statement-quote strong {
      font-weight: 600;
      font-style: normal;
      color: var(--navy);
    }
    .statement-attr {
      margin-top: 28px;
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .statement-attr-line {
      width: 40px; height: 1px;
      background: var(--gold);
    }
    .statement-attr-name {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold);
    }

    /* ═══════════════════════════════════════
       VALUES — cream bg, horizontal
    ═══════════════════════════════════════ */
    .values {
      background: var(--cream);
      padding: clamp(56px, 7vw, 96px) clamp(24px, 6vw, 72px);
    }
    .values-inner {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(2px, 0.2vw, 2px);
      background: var(--border);
      border: 1px solid var(--border);
    }
    @media (max-width: 640px) {
      .values-inner { grid-template-columns: 1fr; }
    }
    .value-cell {
      background: var(--cream);
      padding: clamp(28px, 3.5vw, 48px);
      transition: background 0.3s;
    }
    .value-cell:hover { background: var(--white); }
    .value-num {
      font-family: var(--ff-serif);
      font-size: 48px;
      font-weight: 600;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 16px;
      transition: color 0.3s;
    }
    .value-cell:hover .value-num { color: var(--gold-bright); }
    .value-title {
      font-family: var(--ff-serif);
      font-size: clamp(20px, 2.2vw, 28px);
      font-weight: 600;
      color: var(--navy);
      margin: 0 0 12px;
    }
    .value-text {
      font-size: 13px;
      font-weight: 300;
      line-height: 1.85;
      color: var(--muted);
    }

    /* ═══════════════════════════════════════
       CTA — navy
    ═══════════════════════════════════════ */
    .cta {
      background: var(--navy);
      padding: clamp(56px, 7vw, 96px) clamp(24px, 6vw, 72px);
      position: relative;
      overflow: hidden;
    }
    .cta::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 55% 70% at 95% 50%, rgba(201,151,42,0.09) 0%, transparent 65%),
        radial-gradient(ellipse 40% 60% at 5% 100%, rgba(30,61,107,0.5) 0%, transparent 60%);
      pointer-events: none;
    }
    .cta::after {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(240,180,41,0.4), transparent);
    }
    .cta-inner {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: clamp(32px, 4vw, 64px);
      max-width: 1100px;
    }
    @media (max-width: 700px) {
      .cta-inner { flex-direction: column; align-items: flex-start; }
    }
    .cta-eyebrow {
      font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold-bright); margin-bottom: 14px;
      display: flex; align-items: center; gap: 10px;
    }
    .cta-eyebrow::before {
      content: ''; width: 28px; height: 1px; background: var(--gold-bright);
    }
    .cta-h2 {
      font-family: var(--ff-serif);
      font-size: clamp(28px, 3.5vw, 48px);
      font-weight: 400;
      color: var(--white);
      line-height: 1.05;
    }
    .cta-h2 em { font-style: italic; color: var(--gold-bright); }
    .cta-sub {
      font-size: 14px; font-weight: 300; line-height: 1.7;
      color: rgba(255,255,255,0.45); margin-top: 10px;
    }
    .cta-actions {
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex-shrink: 0;
      min-width: 180px;
    }
    @media (max-width: 700px) {
      .cta-actions { flex-direction: row; flex-wrap: wrap; }
    }
    .btn-gold {
      display: inline-flex; align-items: center; gap: 10px;
      font-family: var(--ff-sans); font-size: 14px; font-weight: 500;
      color: var(--navy); background: var(--gold-bright);
      padding: 14px 28px; border-radius: 100px; border: none; cursor: pointer;
      transition: background 0.3s, transform 0.3s; white-space: nowrap;
    }
    .btn-gold:hover { background: var(--gold); transform: translateY(-2px); }
    .btn-gold svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 10px;
      font-family: var(--ff-sans); font-size: 14px; font-weight: 400;
      color: rgba(255,255,255,0.6); background: transparent;
      padding: 14px 28px; border-radius: 100px;
      border: 1px solid rgba(255,255,255,0.15); cursor: pointer;
      transition: border-color 0.3s, color 0.3s, background 0.3s; white-space: nowrap;
    }
    .btn-ghost:hover { border-color: rgba(255,255,255,0.4); color: white; background: rgba(255,255,255,0.05); }
    .btn-ghost svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }

    /* ═══════════════════════════════════════
       ANIMATIONS
    ═══════════════════════════════════════ */
    .js-ready .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
    }
    .js-ready .reveal.in { opacity: 1; transform: translateY(0); }
    .d1 { transition-delay: 0.1s; }
    .d2 { transition-delay: 0.2s; }
    .d3 { transition-delay: 0.3s; }
    .d4 { transition-delay: 0.4s; }
  
