
    /* ── Reset & Base ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --teal:    #235D69;
      --teal-dk: #1a4650;
      --teal2:   #2B6363;
      --olive:   #64861F;
      --amber:   #ED9E1F;
      --cream:   #FFF4A7;
      --ink:     #242424;
      --ink-60:  rgba(36,36,36,.6);
      --white:   #ffffff;
      --gray-bg: #f5f5f0;
      --radius:  8px;
      --shadow:  0 4px 24px rgba(35,93,105,.12);
      --transition: .35s cubic-bezier(.4,0,.2,1);
    }
    html { scroll-behavior: smooth; scroll-padding-top: 108px; }
    body {
      font-family: 'Inter', sans-serif;
      color: var(--ink);
      background: var(--white);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }
    h1,h2,h3,h4 { font-family: 'Outfit', sans-serif; line-height: 1.2; }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }

    /* ── Utility ── */
    .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
    .section { padding: 112px 0; }
    .section--sm { padding: 64px 0; }
    .tag {
      display: inline-block; font-family: 'Outfit', sans-serif;
      font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
      padding: 6px 16px; border-radius: 100px;
      background: var(--cream); color: var(--teal);
      margin-bottom: 16px;
    }
    .tag--amber { background: var(--amber); color: var(--white); }
    .tag--teal  { background: var(--teal);  color: var(--cream); }
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 600;
      padding: 14px 32px; border-radius: 100px; border: 2px solid transparent;
      cursor: pointer; transition: var(--transition); white-space: nowrap;
    }
    .btn--primary { background: var(--amber); color: var(--white); border-color: var(--amber); }
    .btn--primary:hover { background: #d68d10; border-color: #d68d10; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(237,158,31,.35); }
    .btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
    .btn--outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
    .btn--outline-dark { background: transparent; color: var(--teal); border-color: var(--teal); }
    .btn--outline-dark:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }
    .btn svg { flex-shrink: 0; }

    .icon-logo { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
    .values__card { padding-top: 28px; }
    .team-card__email {
      display: inline-block; margin-top: 16px; color: var(--teal); font-size: .84rem;
      font-weight: 600; overflow-wrap: anywhere;
    }
    .team-card__email:hover { color: var(--amber); }
    .bank-details {
      font-family: 'Outfit', sans-serif; line-height: 1.55; font-size: .92rem;
      color: var(--white); border: 1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.08); border-radius: 8px; padding: 16px 18px;
    }
    .bank-details__title { color: var(--cream); font-weight: 700; margin-bottom: 4px; }
    .bank-details--zustiftung { margin-bottom: 18px; }
    .bank-details--kontakt { max-width: 420px; margin: 0 auto 32px; }

    /* ── Scroll animations ── */
    .reveal { opacity: 0; transform: translateY(32px); transition: opacity .65s ease, transform .65s ease; }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity .65s ease, transform .65s ease; }
    .reveal-left.visible { opacity: 1; transform: none; }
    .reveal-right { opacity: 0; transform: translateX(32px); transition: opacity .65s ease, transform .65s ease; }
    .reveal-right.visible { opacity: 1; transform: none; }

    /* ── NAV ── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 0 24px; height: 108px;
      display: flex; align-items: center; justify-content: space-between;
      transition: background var(--transition), box-shadow var(--transition);
    }
    .nav.scrolled {
      background: rgba(255,255,255,.97);
      backdrop-filter: blur(12px);
      box-shadow: 0 1px 0 rgba(0,0,0,.08);
    }
    .nav__logo { display: flex; align-items: center; }
    .nav__logo svg { height: 60px; width: auto; }
    .nav__links {
      display: flex; align-items: center; gap: 20px;
      list-style: none;
    }
    .nav__item { position: relative; }
    .nav__links a {
      font-family: 'Outfit', sans-serif; font-size: .95rem; font-weight: 500;
      color: var(--white); transition: color var(--transition), background var(--transition);
    }
    .nav.scrolled .nav__links a { color: var(--ink); }
    .nav__links a:hover { color: var(--amber); }
    .nav.scrolled .nav__links a:hover { color: var(--amber); }
    .nav__submenu {
      position: absolute; top: calc(100% + 16px); left: 50%; transform: translate(-50%, 8px);
      min-width: 260px; padding: 10px; list-style: none;
      background: rgba(255,255,255,.98); border: 1px solid rgba(0,0,0,.08); border-radius: 8px;
      box-shadow: 0 18px 42px rgba(14,34,28,.16);
      opacity: 0; visibility: hidden; pointer-events: none;
      transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    }
    .nav__item--has-menu:hover .nav__submenu,
    .nav__item--has-menu:focus-within .nav__submenu {
      opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0);
    }
    .nav__submenu::before {
      content: ""; position: absolute; left: 0; right: 0; top: -18px; height: 18px;
    }
    .nav__submenu a,
    .nav.scrolled .nav__submenu a {
      display: block; padding: 10px 12px; border-radius: 6px;
      color: var(--ink); white-space: nowrap; font-size: .9rem;
    }
    .nav__submenu a:hover,
    .nav.scrolled .nav__submenu a:hover {
      background: rgba(231,167,38,.14); color: var(--teal-dk);
    }
    .nav__language { display: flex; align-items: center; }
    .nav__language-label {
      position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
      overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
    }
    .nav__language-select {
      width: 48px; min-width: 48px; padding: 8px 18px 8px 6px; border: 1px solid rgba(255,255,255,.42);
      border-radius: 6px; background: rgba(255,255,255,.08); color: var(--white);
      font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', system-ui, sans-serif; font-size: .9rem; font-weight: 600; line-height: 1;
      text-align: center; text-align-last: center;
      cursor: pointer; transition: border-color var(--transition), background var(--transition), color var(--transition);
    }
    .nav__language-select:hover,
    .nav__language-select:focus { border-color: var(--amber); outline: none; }
    .nav__language-select option { color: var(--ink); background: var(--white); }
    .nav.scrolled .nav__language-select {
      border-color: rgba(36,36,36,.18); background: var(--white); color: var(--ink);
    }
    .nav__cta { font-size: .9rem !important; padding: 10px 18px !important; }
    .nav__hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
    .nav__hamburger span {
      display: block; width: 24px; height: 2px; margin: 5px 0;
      background: var(--white); border-radius: 2px; transition: var(--transition);
    }
    .nav.scrolled .nav__hamburger span { background: var(--ink); }

    /* Logo fill: CSS overrides SVG presentation attributes */
    #nav-logo-svg path { fill: white; transition: fill var(--transition); }
    .nav.scrolled #nav-logo-svg path { fill: var(--ink); }
    .footer-logo path { fill: rgba(255,255,255,0.45); }

    /* ── HERO ── */
    .hero {
      position: relative; min-height: 100svh; display: flex; align-items: center;
      background: var(--teal); overflow: hidden; padding-top: 108px;
    }
    .hero__bg {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 60% 50%, #2B6363 0%, var(--teal) 55%, #1a3d45 100%);
    }
    .hero__pattern {
      position: absolute; inset: 0; opacity: .05;
      background-image: radial-gradient(circle, var(--white) 1px, transparent 1px);
      background-size: 32px 32px;
    }
    .hero__inner {
      display: grid; grid-template-columns: 55fr 45fr; gap: 56px;
      align-items: center; width: 100%; position: relative; z-index: 1;
      padding: 56px 0;
    }
    .hero__content { /* left column */ }
    .hero__eyebrow {
      display: flex; align-items: center; gap: 12px; margin-bottom: 28px;
    }
    .hero__eyebrow-line { width: 40px; height: 2px; background: var(--amber); }
    .hero__eyebrow-text {
      font-family: 'Outfit', sans-serif; font-size: .8rem; font-weight: 600;
      letter-spacing: .15em; text-transform: uppercase; color: var(--amber);
    }
    .hero__title {
      font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 800;
      color: var(--white); margin-bottom: 24px; letter-spacing: -.02em;
    }
    .hero__title em { font-style: normal; color: var(--cream); }
    .hero__sub {
      font-size: 1.05rem; color: rgba(255,255,255,.8);
      margin-bottom: 36px; line-height: 1.75;
    }
    .hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
    .hero__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
    .hero__stat-num {
      font-family: 'Outfit', sans-serif; font-size: 1.75rem; font-weight: 800;
      color: var(--cream); line-height: 1;
    }
    .hero__stat-label {
      font-size: .8rem; color: rgba(255,255,255,.6); margin-top: 4px;
    }
    /* ── SLIDER ── */
    .hero__slider-col { position: relative; }
    .hero__slider-wrap {
      position: relative; border-radius: 12px; overflow: hidden;
      aspect-ratio: 4/5;
      max-height: calc(100svh - 180px);
      box-shadow: 0 40px 100px rgba(0,0,0,.45);
    }
    .hero__slide {
      position: absolute; inset: 0;
      opacity: 0; transition: opacity .9s ease;
    }
    .hero__slide.active { opacity: 1; }
    .hero__slide img {
      width: 100%; height: 100%; object-fit: cover; display: block;
    }
    .hero__slide-overlay {
      position: absolute; bottom: 0; left: 0; right: 0; height: 140px;
      background: linear-gradient(transparent, rgba(0,0,0,.55));
      pointer-events: none;
    }
    .hero__slider-dots {
      position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
      display: flex; gap: 6px; z-index: 3;
    }
    .hero__dot {
      height: 6px; width: 6px; border-radius: 3px;
      background: rgba(255,255,255,.45); cursor: pointer;
      transition: width .3s ease, background .3s ease; border: none;
    }
    .hero__dot.active { width: 22px; background: white; }
    .hero__arrow {
      position: absolute; top: 50%; transform: translateY(-50%);
      z-index: 3; width: 40px; height: 40px; border-radius: 50%;
      background: rgba(255,255,255,.18); backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,.3); color: white;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: background var(--transition); padding: 0;
    }
    .hero__arrow:hover { background: rgba(255,255,255,.35); }
    .hero__arrow--prev { left: 12px; }
    .hero__arrow--next { right: 12px; }
    .hero__slide-counter {
      position: absolute; top: 16px; right: 16px; z-index: 3;
      font-family: 'Outfit', sans-serif; font-size: .75rem; font-weight: 600;
      color: rgba(255,255,255,.8); background: rgba(0,0,0,.3);
      backdrop-filter: blur(6px); padding: 4px 10px; border-radius: 100px;
    }

    /* ── INTRO BAND ── */
    .band {
      background: var(--amber); padding: 20px 0;
    }
    .band__inner {
      display: flex; align-items: center; justify-content: center;
      gap: 12px; flex-wrap: wrap; text-align: center;
    }
    .band__text {
      font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1rem;
      color: var(--white);
    }
    .band__dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.5); }

    /* ── ABOUT ── */
    .about { background: var(--white); min-height: calc(100svh - 108px); display: flex; align-items: center; }
    .about.section { padding: 72px 0; }
    .about > .container { width: 100%; }
    .about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .about__visual {
      position: relative;
    }
    .about__card-main {
      background: var(--teal); border-radius: 12px; padding: 40px;
      color: var(--white); position: relative; overflow: hidden;
    }
    .about__card-main::before {
      content: ''; position: absolute; top: -40px; right: -40px;
      width: 180px; height: 180px; border-radius: 50%;
      background: rgba(255,255,255,.06);
    }
    .about__card-main-title {
      font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; color: var(--cream);
    }
    .about__card-main-text { font-size: .95rem; color: rgba(255,255,255,.8); line-height: 1.7; }
    .about__card-accent {
      background: var(--cream); border-radius: 10px; padding: 24px 28px;
      margin-top: -28px; margin-left: 28px; position: relative;
      box-shadow: var(--shadow);
    }
    .about__card-accent-text {
      font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 600;
      color: var(--teal); font-style: italic;
    }
    .about__title { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; margin-bottom: 20px; color: var(--ink); letter-spacing: -.02em; }
    .about__lead { font-size: 1.1rem; color: var(--ink-60); margin-bottom: 24px; line-height: 1.75; }
    .about__body { color: var(--ink-60); line-height: 1.75; margin-bottom: 32px; }
    .about__pill-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-bottom: 36px; }
    .about__pill {
      display: inline-flex; align-items: center; gap: 8px;
      background: #f0f7f4; color: var(--teal2); border-radius: 8px;
      min-height: 56px; padding: 10px 14px; font-size: .875rem; font-weight: 500;
    }
    .about__pill svg { flex-shrink: 0; }

    /* ── GOALS ── */
    .goals { background: var(--gray-bg); display: flex; align-items: center; }
    .goals.section { padding: 72px 0 42px; }
    .goals__grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }
    .goals__card-accent { margin-left: 28px; }
    .goals__accent-title {
      font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; color: var(--teal);
      font-style: normal;
    }
    .goals__accent-text {
      font-family: Inter, sans-serif; font-size: .95rem; font-weight: 400;
      color: var(--teal2); line-height: 1.7; font-style: normal;
    }
    .goals__photos {
      display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: repeat(2, 1fr);
      gap: 16px; min-height: 360px;
    }
    .goals__photo {
      border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); background: var(--white);
    }
    .goals__photo--large { grid-row: 1 / span 2; }
    .goals__photo img { width: 100%; height: 100%; object-fit: cover; }

    /* ── PROJECTS ── */
    .projects { background: var(--white); min-height: calc(100svh - 108px); display: flex; align-items: center; }
    .projects > .container { width: 100%; }
    .projects.section { padding: 48px 0 64px; }
    .projects__layout { display: grid; grid-template-columns: minmax(0, 3fr) minmax(220px, 1fr); gap: 32px; align-items: stretch; }
    .projects__content { min-width: 0; }
    .projects__intro { max-width: none; margin-bottom: 18px; }
    .projects__intro .section__title { margin-bottom: 14px; }
    .projects__quote-box {
      color: var(--ink-60); font-family: 'Inter', sans-serif; font-size: .94rem;
      font-weight: 400; line-height: 1.58; margin-bottom: 14px;
    }
    .projects__quote-box p + p { margin-top: 8px; }
    .projects__offer-box {
      background: var(--teal); border-radius: 10px; padding: 20px 24px; color: var(--white);
      position: relative; overflow: hidden;
    }
    .projects__offer-box::before {
      content: ''; position: absolute; top: -44px; right: -44px; width: 180px; height: 180px;
      border-radius: 50%; background: rgba(255,255,255,.06);
    }
    .projects__offer-title {
      position: relative; color: var(--cream); font-family: 'Outfit', sans-serif; font-size: .98rem;
      font-weight: 700; margin-bottom: 10px;
    }
    .projects__offer-list {
      position: relative; list-style: none; display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 8px 20px;
    }
    .projects__offer-list li {
      color: rgba(255,255,255,.84); font-size: .88rem; line-height: 1.45; padding-left: 18px; position: relative;
    }
    .projects__offer-list li::before {
      content: ''; position: absolute; left: 0; top: .7em; width: 7px; height: 7px; border-radius: 50%;
      background: var(--cream);
    }
    .section__header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
    .section__title { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 16px; color: var(--ink); letter-spacing: -.02em; }
    .section__sub { color: var(--ink-60); font-size: 1.05rem; line-height: 1.7; }
    .projects__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
    .projects__grid--compact { gap: 10px; }
    .projects__photos { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(4, minmax(0, 1fr)); gap: 10px; align-self: stretch; min-height: 0; }
    .projects__photo { position: relative; min-height: 0; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); background: var(--white); }
    .projects__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
    .project-card {
      display: block; background: var(--white); border-radius: var(--radius); overflow: hidden;
      box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition);
    }
    .project-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(35,93,105,.18); }
    .project-card__header {
      padding: 32px 32px 24px;
      display: flex; align-items: flex-start; gap: 16px;
    }
    .project-card__icon {
      width: 52px; height: 52px; border-radius: 8px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
    }
    .project-card__icon--teal  { background: rgba(35,93,105,.1); }
    .project-card__icon--olive { background: rgba(100,134,31,.1); }
    .project-card__icon--amber { background: rgba(237,158,31,.1); }
    .project-card__icon--green { background: rgba(43,99,99,.1); }
    .project-card__location {
      font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
      color: var(--amber); margin-bottom: 4px;
    }
    .project-card__title { font-size: 1.15rem; font-weight: 700; color: var(--ink); line-height: 1.3; }
    .project-card__body { padding: 0 32px 24px; color: var(--ink-60); font-size: .92rem; line-height: 1.7; }
    .project-card--compact .project-card__header { padding: 14px 16px; align-items: center; }
    .project-card--compact .project-card__icon { width: 38px; height: 38px; font-size: 1.05rem; }
    .project-card--compact .project-card__title { font-size: .9rem; }

    .project-detail { min-height: 100svh; display: flex; align-items: center; padding: 112px 0 36px; background: var(--white); }
    .project-detail__back { display: inline-block; margin-bottom: 14px; color: var(--teal); font-weight: 600; }
    .project-detail__grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr); gap: 46px; align-items: center; }
    .project-detail__title { font-size: clamp(1.8rem, 3.3vw, 2.85rem); color: var(--ink); max-width: 850px; margin-bottom: 8px; }
    .project-detail__subtitle { font-family: 'Outfit', sans-serif; font-size: .9rem; color: var(--amber); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
    .project-detail__lead { color: var(--ink-60); font-size: .96rem; line-height: 1.58; margin-bottom: 18px; }
    .project-detail__box { background: var(--teal); color: var(--white); border-radius: 10px; padding: 20px 24px; margin-bottom: 16px; position: relative; overflow: hidden; }
    .project-detail__box::before { content: ''; position: absolute; top: -48px; right: -48px; width: 170px; height: 170px; border-radius: 50%; background: rgba(255,255,255,.06); }
    .project-detail__section-title { position: relative; font-size: 1.05rem; color: var(--cream); margin-bottom: 10px; }
    .project-detail__list { position: relative; list-style: none; display: grid; gap: 7px; }
    .project-detail__list li { color: rgba(255,255,255,.84); font-size: .92rem; line-height: 1.42; padding-left: 18px; position: relative; }
    .project-detail__list li::before { content: ''; position: absolute; left: 0; top: .7em; width: 7px; height: 7px; border-radius: 50%; background: var(--cream); }
    .project-detail__quote { background: var(--cream); color: var(--teal); border-radius: 8px; padding: 16px 20px; font-family: 'Outfit', sans-serif; font-size: .94rem; font-style: italic; font-weight: 600; line-height: 1.45; margin-bottom: 16px; }
    .project-detail__quote span { color: var(--teal2); font-size: .9rem; font-weight: 500; font-style: normal; }
    .project-detail__links { display: flex; flex-wrap: wrap; gap: 10px; }
    .project-detail__links .btn { padding: 10px 22px; font-size: .92rem; }
    .project-detail__media .hero__slider-wrap { aspect-ratio: 4 / 5; max-height: calc(100svh - 170px); box-shadow: 0 24px 70px rgba(35,93,105,.22); }
    .project-detail__media .hero__slide-overlay { height: 110px; }
    .project-card__tags {
      display: flex; flex-wrap: wrap; gap: 8px;
      padding: 20px 32px; border-top: 1px solid rgba(0,0,0,.06);
    }
    .project-card__tag {
      background: var(--gray-bg); color: var(--teal2); border-radius: 100px;
      padding: 4px 12px; font-size: .78rem; font-weight: 500;
    }

    /* ── VALUES ── */
    .values { background: var(--teal); }
    .values .section__title { color: var(--white); }
    .values .section__sub { color: rgba(255,255,255,.7); }
    .values__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
    .values__card {
      background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radius); padding: 36px 28px;
      transition: background var(--transition);
    }
    .values__card:hover { background: rgba(255,255,255,.14); }
    .values__icon {
      width: 56px; height: 56px; border-radius: 14px;
      background: rgba(255,244,167,.15); display: flex; align-items: center;
      justify-content: center; font-size: 1.6rem; margin-bottom: 20px;
    }
    .values__title { font-size: 1.1rem; font-weight: 700; color: var(--cream); margin-bottom: 10px; }
    .values__text { font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.7; }

    /* ── TEAM ── */
    .team { background: var(--white); min-height: calc(100svh - 108px); display: flex; align-items: center; }
    .team__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
    .team-card {
      border-radius: var(--radius); background: var(--gray-bg);
      overflow: visible; position: relative;
    }
    .team-card__body {
      padding: 24px;
      display: flex; flex-direction: column; gap: 0;
    }
    .team-card__header {
      display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px;
    }
    .team-card__photo {
      flex-shrink: 0;
      width: 80px; height: 80px; border-radius: 50%; overflow: hidden;
      border: 3px solid var(--white);
      box-shadow: 0 4px 16px rgba(35,93,105,.2);
    }
    .team-card__photo img {
      width: 100%; height: 100%; object-fit: cover; display: block;
    }
    .team-card__meta { padding-top: 6px; }
    .team-card__name { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; color: var(--ink); }
    .team-card__years {
      font-size: .75rem; color: var(--amber); font-weight: 600;
      letter-spacing: .06em; text-transform: uppercase;
    }
    .team-card__quote {
      font-style: italic; font-size: .88rem; color: var(--ink-60);
      line-height: 1.65; border-left: 3px solid var(--amber); padding-left: 14px;
      margin-top: 4px;
    }

    /* ── IMPACT NUMBERS ── */
    .impact { background: var(--olive); }
    .impact.section--sm { padding: 34px 0; }
    .impact__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; text-align: center; }
    .impact__num {
      font-family: 'Outfit', sans-serif; font-size: 3rem; font-weight: 800;
      color: var(--cream); line-height: 1; margin-bottom: 8px;
    }
    .impact__label { font-size: .9rem; color: rgba(255,255,255,.75); }

    /* ── ZUSTIFTUNG ── */
    .zustiftung { background: #64861F; min-height: calc(100svh - 108px); display: flex; align-items: center; }
    .zustiftung__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .zustiftung__grid > * { min-width: 0; }
    /* Text contrast overrides for olive background */
    .zustiftung .about__title { color: var(--white); }
    .zustiftung .about__body  { color: rgba(255,255,255,.85); }
    .zustiftung .tag { background: rgba(255,255,255,.2); color: var(--white); }
    .zustiftung__reasons { list-style: none; margin-bottom: 36px; }
    .zustiftung__reason {
      display: flex; gap: 16px; align-items: flex-start;
      padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.15);
    }
    .zustiftung__reason:last-child { border-bottom: none; }
    .zustiftung__reason-icon {
      width: 40px; height: 40px; border-radius: 8px; flex-shrink: 0;
      background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
    }
    .zustiftung__reason-title { font-weight: 600; color: var(--white); margin-bottom: 4px; }
    .zustiftung__reason-text { font-size: .88rem; color: rgba(255,255,255,.8); line-height: 1.6; }
    .zustiftung__visual {
      background: linear-gradient(135deg, var(--teal) 0%, var(--teal2) 100%);
      border-radius: 12px; padding: 48px 40px; color: var(--white); position: relative; overflow: hidden;
    }
    .zustiftung__visual::before {
      content: ''; position: absolute; bottom: -60px; right: -60px;
      width: 240px; height: 240px; border-radius: 50%; background: rgba(255,255,255,.05);
    }
    .zustiftung__visual-title { font-size: 1.4rem; font-weight: 700; color: var(--cream); margin-bottom: 12px; }
    .zustiftung__visual-text { font-size: .95rem; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 32px; }
    .zustiftung__cta-box {
      background: rgba(255,255,255,.1); border-radius: 8px; padding: 24px;
      border: 1px solid rgba(255,255,255,.15);
    }
    .zustiftung__cta-box-text { font-size: .88rem; color: rgba(255,255,255,.7); margin-bottom: 16px; }
    .zustiftung__cta-box .btn { width: 100%; justify-content: center; }


    /* ── SATZUNG ── */
    .satzung-page {
      min-height: 100svh; padding: 148px 0 80px; background: var(--white);
    }
    .satzung-page__title {
      max-width: 860px; margin-bottom: 28px; color: var(--ink);
      font-size: clamp(1.55rem, 2.8vw, 2.2rem); font-weight: 800;
    }
    .satzung-page__notice {
      max-width: 860px; margin: 0 0 18px; padding: 14px 16px;
      background: rgba(237,158,31,.12);
      border-radius: 6px; color: var(--teal-dk); font-weight: 600;
    }
    .satzung-page__content {
      max-width: 900px; color: var(--ink); background: var(--gray-bg);
      border-radius: 8px; padding: 38px 42px; box-shadow: var(--shadow);
    }
    .satzung-page__content h2 {
      font-size: 1.2rem; color: var(--teal); margin: 30px 0 12px;
    }
    .satzung-page__content h2:first-child { margin-top: 0; }
    .satzung-page__content p,
    .satzung-page__content li {
      font-size: .95rem; line-height: 1.75; color: rgba(36,36,36,.78);
    }
    .satzung-page__content ol,
    .satzung-page__content ul { padding-left: 24px; margin: 10px 0 18px; }
    .satzung-page__content blockquote {
      margin: 12px 0 18px; padding-left: 18px; border-left: 0;
    }

    /* ── FAQ ── */
    .faq { background: var(--gray-bg); }
    .faq__list { max-width: 760px; margin: 0 auto; }
    .faq__item {
      background: var(--white); border-radius: var(--radius);
      margin-bottom: 12px; overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,.05);
    }
    .faq__q {
      display: flex; justify-content: space-between; align-items: center;
      padding: 24px 28px; cursor: pointer; user-select: none;
      font-family: 'Outfit', sans-serif; font-weight: 600; font-size: .98rem; color: var(--ink);
      gap: 16px;
    }
    .faq__q:hover { color: var(--teal); }
    .faq__icon {
      width: 28px; height: 28px; border-radius: 50%; background: var(--gray-bg);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
      font-size: 1.1rem; transition: transform var(--transition), background var(--transition);
    }
    .faq__item.open .faq__icon { transform: rotate(45deg); background: var(--teal); color: var(--white); }
    .faq__a {
      max-height: 0; overflow: hidden;
      transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s ease;
      font-size: .92rem; color: var(--ink-60); line-height: 1.75;
    }
    .faq__item.open .faq__a { max-height: 400px; padding: 0 28px 24px; }

    /* ── CTA SECTION ── */
    .cta-section {
      background: linear-gradient(135deg, var(--teal) 0%, #1a4650 100%);
      padding: 100px 0; text-align: center; position: relative; overflow: hidden;
    }
    .cta-section::before {
      content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
      width: 600px; height: 600px; border-radius: 50%;
      background: rgba(255,255,255,.04);
    }
    .cta-section__title {
      font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
      color: var(--white); margin-bottom: 20px; letter-spacing: -.02em;
    }
    .cta-section__title em { font-style: normal; color: var(--cream); }
    .cta-section__sub {
      font-size: 1.1rem; color: rgba(255,255,255,.75);
      max-width: 540px; margin: 0 auto 40px;
    }
    .cta-section__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    /* ── FOOTER ── */
    .footer { background: var(--ink); padding: 56px 0 32px; }
    .footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
    .footer__brand-logo { margin-bottom: 16px; }
    .footer__brand-text { font-size: .9rem; color: rgba(255,255,255,.5); line-height: 1.7; max-width: 300px; }
    .footer__col-title {
      font-family: 'Outfit', sans-serif; font-weight: 600; font-size: .85rem;
      letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3);
      margin-bottom: 16px;
    }
    .footer__links { list-style: none; }
    .footer__links li { margin-bottom: 10px; }
    .footer__links a { color: rgba(255,255,255,.6); font-size: .9rem; transition: color var(--transition); }
    .footer__links a:hover { color: var(--amber); }
    .footer__bottom {
      border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px;
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
    }
    .footer__copy { font-size: .85rem; color: rgba(255,255,255,.3); }
    .footer__legal { display: flex; gap: 20px; }
    .footer__legal a { font-size: .85rem; color: rgba(255,255,255,.3); transition: color var(--transition); }
    .footer__legal a:hover { color: rgba(255,255,255,.7); }


    @media (max-width: 1120px) {
      .nav { padding: 0 16px; }
      .nav__logo svg { height: 52px; }
      .nav__links { gap: 12px; }
      .nav__links a { font-size: .88rem; }
      .nav__language-select { width: 46px; min-width: 46px; padding: 7px 17px 7px 6px; font-size: .85rem; }
      .nav__cta { padding: 9px 14px !important; }
    }

    /* ── MOBILE NAV ── */
    @media (max-width: 980px) {
      .nav__links { display: none; flex-direction: column; align-items: stretch; gap: 0; position: fixed; inset: 108px 0 0; background: var(--teal-dk); padding: 24px; overflow-y: auto; }
      .nav__links.open { display: flex; }
      .nav__links a { display: block; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 1.1rem; }
      .nav__language { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
      .nav__language-select { width: 52px; min-width: 52px; max-width: 52px; padding: 10px 18px 10px 7px; font-size: .95rem; }
      .nav.scrolled .nav__language { border-bottom-color: rgba(0,0,0,.08); }
      .nav__hamburger { display: block; }
      .nav.scrolled .nav__links { background: var(--white); }
      .nav.scrolled .nav__links a { color: var(--ink); }
      .nav__submenu {
        position: static; transform: none; min-width: 0; padding: 0 0 8px 14px;
        background: transparent; border: 0; border-radius: 0; box-shadow: none;
        opacity: 1; visibility: visible; pointer-events: auto;
      }
      .nav__submenu::before { display: none; }
      .nav__submenu a,
      .nav.scrolled .nav__submenu a {
        padding: 10px 0; color: rgba(255,255,255,.78); white-space: normal; font-size: .98rem;
      }
      .nav.scrolled .nav__submenu a { color: rgba(14,34,28,.72); }
      .nav__submenu a:hover,
      .nav.scrolled .nav__submenu a:hover { background: transparent; color: var(--amber); }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .about__grid, .goals__grid, .projects__layout, .project-detail__grid, .zustiftung__grid { grid-template-columns: 1fr; gap: 48px; }
      .about__visual { order: -1; }
      .project-detail { padding: 120px 0 72px; }
      .project-detail__media .hero__slider-wrap { aspect-ratio: 16 / 9; max-height: none; }
      .goals__photos { min-height: 360px; }
      .hero__inner { grid-template-columns: 1fr; gap: 40px; padding: 48px 0; }
      .hero__slider-wrap { aspect-ratio: 16/9; max-height: none; }
    }
    @media (max-width: 768px) {
      .section { padding: 80px 0; }
      .hero__stats { grid-template-columns: repeat(3,1fr); }
      .projects__grid { grid-template-columns: 1fr; }
      .projects__photos { grid-template-columns: repeat(2, 1fr); }
      .projects__offer-list { grid-template-columns: 1fr; }
      .goals__photos { grid-template-columns: 1fr 1fr; min-height: 320px; }
      .values__grid { grid-template-columns: 1fr; }
      .team__grid { grid-template-columns: 1fr; }
      .impact__grid { grid-template-columns: repeat(2,1fr); }
      .about__pill-list { grid-template-columns: 1fr; }
      .footer__grid { grid-template-columns: 1fr; gap: 32px; }
      .footer__bottom { flex-direction: column; text-align: center; }
      .project-detail__links .btn { width: auto; }
    }
    @media (max-width: 480px) {
      .hero__actions { flex-direction: column; }
      .btn { width: 100%; justify-content: center; }
      .impact__grid { grid-template-columns: 1fr 1fr; }
      .goals__photos { grid-template-columns: 1fr; grid-template-rows: none; min-height: 0; }
      .goals__photo, .goals__photo--large { aspect-ratio: 4/3; grid-row: auto; }
      .projects__offer-box { padding: 28px 24px; }
      .projects__photos { grid-template-columns: 1fr; }
      .satzung-page__content { padding: 28px 22px; }
      .zustiftung__visual { padding: 32px 20px; }
      .zustiftung__cta-box { padding: 18px 14px; }
      .zustiftung__cta-box .btn { white-space: normal; text-align: center; }
      .bank-details--zustiftung { overflow-wrap: anywhere; }
    }
  