/* ==========================================================================
   Sandra Niethen Consulting – Gestaltung
   Farben, Schriften und Abstände nach dem Original (gemessen bei 1440 px).

   Hinweis: Wo moderne CSS-Befehle wie clamp() stehen, gibt es davor jeweils
   einen einfachen Ausweichwert. So sieht die Seite auch in älteren Browsern
   (z. B. älteren Safari-Versionen auf dem Mac) richtig aus.
   Die Endung "?v=…" an Dateinamen ist die Versionsnummer gegen veraltete
   Zwischenspeicher. Bei Änderungen an Schriften/Bildern mit erhöhen.
   ========================================================================== */

/* ---------- Schriften (selbst gehostet, keine Verbindung zu Google) ---------- */
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond.woff2?v=20260923") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-italic.woff2?v=20260923") format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/work-sans.woff2?v=20260923") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/work-sans-italic.woff2?v=20260923") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ---------- Farben & Grundwerte ---------- */
:root {
  --white: #ffffff;
  --sand: #ccc5ad;
  --green: #87b43b;
  --stone: #eae8e0;
  --lime: #d1db3b;
  --ink: #252725;
  --grey: #aca8a0;
  --black: #000000;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Work Sans", Arial, Helvetica, sans-serif;

  --container: 1270px;
  --gutter: 40px;
  --header-h: 84px;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: #ffffff;
  background: var(--white);
  color: #252725;
  color: var(--ink);
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.76;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 20px;
}

p:last-child {
  margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 300;
}

strong,
b {
  font-weight: 700;
}

svg {
  display: block;
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.container {
  width: calc(100% - 2 * var(--gutter));
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 300;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

/* ---------- Typografie ---------- */
.eyebrow {
  margin: 0 0 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--serif);
  font-size: 70px;
  font-size: clamp(40px, 4.86vw, 70px);
  font-weight: 300;
  line-height: 1.26;
}

.section-title em,
.hero__title em {
  font-style: italic;
}

.lead-serif {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  line-height: 1.32;
}

/* ---------- Buttons ---------- */
.btn {
  display: -webkit-inline-box;
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 0;
  font-family: var(--sans);
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.btn svg {
  width: 1em;
  height: 1em;
  margin-left: 8px;
  flex: none;
  fill: currentColor;
}

.btn--hero {
  padding: 9px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--lime);
  color: var(--ink);
  font-size: 12px;
  line-height: 14px;
}

.btn--hero:hover {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--grey);
  color: var(--grey);
}

.btn--form {
  padding: 13px 29px;
  background: var(--white);
  color: var(--grey);
  font-size: 14px;
  line-height: 17px;
}

.btn--form:hover {
  color: var(--ink);
}

.btn--solid {
  padding: 13px 29px;
  background: var(--grey);
  color: var(--white);
  font-size: 14px;
  line-height: 17px;
}

.btn--solid:hover {
  background: var(--ink);
}

.btn--outline {
  padding: 17px 40px;
  background: var(--white);
  border-bottom: 1px solid var(--green);
  color: var(--grey);
  font-size: 18px;
  line-height: 22px;
}

.btn--outline:hover {
  color: var(--ink);
}

.btn[disabled] {
  opacity: 0.6;
  cursor: wait;
}

/* ==========================================================================
   Kopfzeile
   ========================================================================== */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 84px;
  height: var(--header-h);
  background: var(--white);
  transition: transform 0.4s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 24px -8px rgba(172, 168, 160, 0.08);
}

.site-header.is-hidden {
  transform: translateY(-100%);
  box-shadow: none;
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 40px;
}

.site-header__logo {
  position: relative;
  z-index: 2;
  flex: none;
}

.site-header__logo img {
  width: 229px;
  height: auto;
}

.site-nav {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
}

.site-nav ul {
  display: flex;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav li {
  display: flex;
}

.site-nav li + li {
  margin-left: 36px;
}

.site-nav a,
.lang-switch a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  color: var(--ink);
  font-size: 14px;
  line-height: 25px;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.site-nav a::after,
.lang-switch a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--grey);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.lang-switch a:hover,
.lang-switch a.is-active {
  color: var(--grey);
}

.site-nav a:hover::after,
.site-nav a.is-active::after,
.lang-switch a:hover::after,
.lang-switch a.is-active::after {
  opacity: 1;
}

.lang-switch {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  height: 100%;
  margin-left: auto;
  font-size: 14px;
}

.lang-switch__sep {
  display: flex;
  align-items: center;
  margin: 0 10px;
  color: var(--grey);
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  margin-left: -10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  left: 10px;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Startseite – Hero
   ========================================================================== */
.hero {
  position: relative;
  z-index: 2;
  padding: 0 5.75vw;
  background: #eae8e0 url("../img/hero-pattern.png?v=20260923") no-repeat left center;
  background-size: cover;
}

.hero__inner {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 1020px;
  margin-left: 0;
  margin-left: max(0px, calc(50% - 530px));
}

.hero__photo {
  position: relative;
  flex: 0 0 52%;
  margin-bottom: -1px;
  background: var(--sand);
  box-shadow: 40px 40px 0 0 var(--lime);
}

.hero__photo img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__content {
  position: relative;
  flex: 0 0 52%;
  margin-left: -4%;
  padding: 8.3% 0 7.3%;
}

.hero__box {
  padding: 10.4%;
  background: var(--white);
  box-shadow: -20px 40px 90px -15px rgba(172, 168, 160, 0.05);
}

.hero__eyebrow {
  margin: 0 0 39px;
  font-size: 10px;
  font-weight: 300;
  line-height: 1.76;
  text-transform: uppercase;
}

.hero__title {
  margin: 0 0 41px;
  font-family: var(--serif);
  font-size: 60px;
  font-size: clamp(40px, 4.17vw, 60px);
  font-weight: 300;
  line-height: 1.2;
}

.hero__lead {
  margin: 0 0 40px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.34;
}

/* ---------- Core Belief ---------- */
.belief {
  position: relative;
  z-index: 1;
  padding: 54px 4vw 38px;
  background: rgba(234, 232, 224, 0.55);
}

.belief__inner {
  display: flex;
  align-items: center;
}

.belief__label {
  display: flex;
  flex: 0 0 195px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  min-height: 77px;
  margin: 0;
  border-right: 1px solid var(--grey);
  font-size: 12px;
  line-height: 1.72;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
}

.belief__quote {
  margin: 0 0 0 30px;
  font-style: italic;
}

/* ---------- The Person ---------- */
.person {
  padding: 145px 0 65px;
}

.person__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-column-gap: 38px;
  column-gap: 38px;
  align-items: center;
}

.person__text .eyebrow {
  margin-bottom: 24px;
}

.person__photo {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 563px;
  margin: 0;
  overflow: hidden;
  background: var(--sand);
}

.person__photo img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.person__photo::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(204, 197, 173, 0) 57%, #ccc5ad 97%);
}

.person__quote {
  position: relative;
  z-index: 1;
  margin: 0 20px 20px;
  font-size: 14px;
  line-height: 1.76;
}

/* ---------- Werdegang & Advice ---------- */
.career {
  padding: 25px 0 72px;
}

.career__grid {
  display: grid;
  grid-template-columns: 465px minmax(0, 1fr);
  grid-column-gap: 50px;
  column-gap: 50px;
  align-items: start;
  padding-left: 13px;
  padding-right: 13px;
}

.career__cards {
  margin-top: 30px;
}

.job {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-column-gap: 20px;
  column-gap: 20px;
  padding: 35px 35px 55px;
  background: var(--stone);
}

.job + .job {
  margin-top: 10px;
}

.job:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 55px;
  top: 56px;
  bottom: -66px;
  width: 1px;
  background: var(--lime);
}

.job__icon {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
}

.job__title {
  margin: 1px 0 17px;
  color: var(--black);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  line-height: 1.32;
}

.job__tags {
  font-style: italic;
}

.advice__title {
  margin-bottom: 77px;
}

/* ---------- The Approach ---------- */
.approach {
  padding: 76px 0 108px;
  background: var(--stone);
}

.approach .container {
  --container: 1310px;
}

.approach__grid {
  display: grid;
  grid-template-columns: 49.2% 40.3%;
  grid-column-gap: 0.8%;
  column-gap: 0.8%;
  align-items: end;
}

.approach__title {
  margin-bottom: 104px;
  font-size: 80px;
  font-size: clamp(44px, 5.56vw, 80px);
}

.approach__pillars {
  padding: 0 21px 0 35px;
  border-left: 1px solid var(--lime);
}

/* ---------- The Focus ---------- */
.focus {
  padding: 145px 0 110px;
  background: rgba(204, 197, 173, 0.13);
}

.focus__subline {
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: 34px;
  font-size: clamp(26px, 2.36vw, 34px);
  font-weight: 300;
  line-height: 1.3;
}

.focus__text {
  max-width: 622px;
  margin-top: 77px;
}

.leaders {
  margin-top: 90px;
}

.leaders__bar {
  margin: 0;
  padding: 6.5px 16px;
  background: var(--stone);
  color: var(--grey);
  font-size: 15px;
  line-height: 1.72;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
}

.leaders__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 16px;
  gap: 16px;
  margin-top: 24px;
}

.leader-card {
  padding: 25px 33px 30px;
  background: var(--white);
}

.leader-card__title {
  margin: 0 0 15px;
  color: var(--grey);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ---------- A space to think differently ---------- */
.space {
  padding: 150px 0 121px;
  background: var(--stone);
}

.space__intro {
  margin: 20px 0 0;
}

.space__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-column-gap: 50px;
  grid-row-gap: 48px;
  column-gap: 50px;
  row-gap: 48px;
  margin-top: 100px;
}

.value {
  padding-top: 15px;
  border-top: 2px solid var(--lime);
}

.value__title {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
}

/* ---------- Contact ---------- */
.contact {
  padding: 172px 0 122px;
  background: var(--grey);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-column-gap: 50px;
  column-gap: 50px;
  align-items: start;
}

.contact__form {
  margin-top: 16px;
}

/* ---------- Formulare ---------- */
.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 42px;
  column-gap: 24px;
  row-gap: 42px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 11px;
}

.field abbr {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
}

.field input,
.field textarea {
  display: block;
  width: 100%;
  height: 56px;
  padding: 0 16px;
  border: 0;
  border-radius: 0;
  background: var(--stone);
  color: var(--ink);
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
}

.field textarea {
  height: 146px;
  padding: 16px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--green);
  outline-offset: 0;
}

.form-hp {
  display: none;
}

.form-actions {
  margin-top: 41px;
}

.form-message {
  display: none;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding: 14px 18px;
  color: var(--white);
  font-size: 15px;
}

.form-message.is-visible {
  display: flex;
}

.form-message--success {
  background: var(--green);
}

.form-message--error {
  background: #b5532f;
}

.form-message button {
  margin-left: 16px;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

/* ==========================================================================
   Unterseiten
   ========================================================================== */
.page-intro {
  padding: 53px 0 0;
  text-align: center;
}

.page-title {
  max-width: 584px;
  margin: 0 auto;
  color: var(--grey);
  font-family: var(--serif);
  font-size: 44px;
  font-size: clamp(34px, 3.06vw, 44px);
  font-weight: 300;
  line-height: 1.26;
}

.page-intro__text {
  max-width: 584px;
  margin: 16px auto 0;
}

/* ---------- Kontaktseite ---------- */
.contact-page {
  padding: 0 0 60px;
}

.contact-page__form {
  max-width: 742px;
  margin: 54px auto 0;
}

.contact-page .form-grid {
  grid-column-gap: 30px;
  column-gap: 30px;
}

.contact-page .field input,
.contact-page .field textarea {
  background: var(--sand);
}

.follow {
  padding: 130px 0 157px;
  text-align: center;
}

.follow .btn {
  margin-top: 32px;
}

/* ---------- FAQ ---------- */
.faq {
  padding: 117px 0;
}

.faq__list {
  max-width: 1006px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--green);
}

.faq__item summary {
  display: flex;
  align-items: center;
  padding: 10px 0;
  color: var(--black);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.34;
  list-style: none;
  cursor: pointer;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__icon {
  position: relative;
  flex: none;
  width: 25px;
  height: 25px;
  margin-right: 18px;
  background: var(--grey);
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.5px;
  background: var(--white);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item[open] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq__answer {
  padding: 10px 0 15px;
  color: var(--black);
}

/* ---------- Rechtstexte ---------- */
.legal {
  padding: 60px 0 97px;
}

.legal__content {
  max-width: 900px;
}

.legal__brand {
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.legal__brand strong {
  margin-right: 6px;
}

.legal__title {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 44px;
  font-size: clamp(34px, 3.06vw, 44px);
  font-weight: 300;
  line-height: 1.26;
}

.legal__meta {
  margin-bottom: 36px;
  font-style: italic;
}

.legal h2 {
  margin: 40px 0 12px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.76;
}

.legal h3 {
  margin: 24px 0 8px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.76;
}

.legal p {
  margin-bottom: 14px;
}

.legal ul {
  margin: 0 0 16px;
  padding-left: 20px;
}

.legal li {
  margin-bottom: 4px;
}

.legal a {
  color: var(--green);
  word-break: break-word;
}

.legal a:hover {
  text-decoration: underline;
}

.legal__table-wrap {
  margin: 16px 0 20px;
  overflow-x: auto;
}

.legal table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 15px;
}

.legal th,
.legal td {
  padding: 10px 12px;
  border: 1px solid var(--stone);
  text-align: left;
  vertical-align: top;
}

.legal th {
  background: var(--stone);
  font-weight: 700;
}

.legal__note {
  font-style: italic;
}

.legal__footer-line {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--stone);
  font-size: 14px;
}

/* ==========================================================================
   Fußzeile
   ========================================================================== */
.site-footer {
  padding: 80px 0;
  background: var(--white);
}

.site-footer__label {
  margin: 0;
  color: var(--grey);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.34;
  letter-spacing: 0.65px;
  text-transform: uppercase;
}

.site-footer__email {
  margin: 10px 0 0;
}

.site-footer__email a {
  color: var(--grey);
  transition: color 0.25s ease;
}

.site-footer__email a:hover {
  color: var(--ink);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Abstand, sobald der E-Mail-Block wieder über der Zeile steht */
.site-footer__email + .site-footer__bottom {
  margin-top: 86px;
}

.site-footer__legal {
  margin: 0;
  font-size: 12px;
  line-height: 1.76;
}

.site-footer__legal a {
  color: var(--grey);
  transition: color 0.25s ease;
}

.site-footer__legal a:hover {
  color: var(--ink);
}

.site-footer__social {
  flex: none;
  width: 18px;
  height: 18px;
  margin-left: 24px;
  color: var(--grey);
  transition: color 0.25s ease;
}

.site-footer__social:hover {
  color: var(--ink);
}

.site-footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ---------- Nach oben ---------- */
.to-top {
  position: fixed;
  left: 75px;
  bottom: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 35px;
  border-radius: 2px 2px 0 0;
  background: #333333;
  color: var(--grey);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, color 0.25s ease;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.to-top:hover {
  color: var(--white);
}

.to-top svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ---------- Einblend-Effekte ---------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   Responsiv
   ========================================================================== */
@media (max-width: 1100px) {
  :root {
    --header-h: 60px;
  }

  .site-header {
    height: 60px;
  }

  .site-header__inner {
    justify-content: center;
    padding: 0 20px;
  }

  .nav-toggle {
    display: block;
    position: absolute;
    left: 20px;
    top: 50%;
    margin: 0;
    transform: translateY(-50%);
  }

  .site-header__logo img {
    width: 150px;
  }

  .lang-switch {
    position: absolute;
    right: 20px;
    top: 0;
  }

  .site-nav {
    top: 100%;
    left: 0;
    right: 0;
    height: auto;
    transform: none;
    display: none;
    background: var(--white);
    box-shadow: 0 24px 24px -8px rgba(172, 168, 160, 0.18);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    height: auto;
    padding: 8px 0 16px;
  }

  .site-nav li {
    display: block;
  }

  .site-nav li + li {
    margin-left: 0;
  }

  .site-nav a {
    justify-content: center;
    height: 60px;
    color: var(--ink);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a.is-active {
    color: var(--ink);
  }

  .site-nav a:hover {
    background: var(--sand);
    color: var(--grey);
  }

  .site-nav a:focus-visible {
    background: var(--sand);
    color: var(--grey);
  }
}

@media (max-width: 1024px) {
  /* Hero untereinander */
  .hero {
    overflow: hidden;
    padding: 0 5%;
  }

  .hero__inner {
    flex-direction: column;
    max-width: none;
    margin-left: 0;
  }

  .hero__photo {
    flex: none;
    height: 470px;
    height: clamp(320px, 46vw, 470px);
    margin-bottom: 0;
  }

  .hero__content {
    flex: none;
    margin-left: 0;
    padding: 0 0 48px;
  }

  .hero__box {
    padding: 60px;
    padding: clamp(35px, 9vw, 94px);
  }

  .belief {
    padding: 48px 5% 36px;
  }

  .person__grid,
  .career__grid,
  .approach__grid,
  .contact__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .person {
    padding: 100px 0 40px;
  }

  .person__photo {
    height: 500px;
    margin-top: 50px;
  }

  .career {
    padding: 50px 0 60px;
  }

  .career__grid {
    padding-left: 0;
    padding-right: 0;
  }

  .career__cards {
    order: 2;
    margin-top: 60px;
  }

  .advice {
    order: 1;
  }

  .advice__title {
    margin-bottom: 48px;
  }

  .approach {
    padding: 90px 0 90px;
  }

  .approach__title {
    margin-bottom: 56px;
  }

  .approach__pillars {
    margin-top: 48px;
  }

  .focus,
  .space,
  .contact {
    padding: 100px 0 90px;
  }

  .focus__text {
    margin-top: 48px;
  }

  .leaders {
    margin-top: 64px;
  }

  .space__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 64px;
  }

  .contact__form {
    margin-top: 48px;
  }

  .faq {
    padding: 80px 0;
  }
}

@media (max-width: 767px) {
  .leaders__cards {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 24px;
  }

  .section-title {
    font-size: 40px;
  }

  .approach__title {
    font-size: 44px;
  }

  .hero__title {
    font-size: 40px;
  }

  .focus__subline {
    font-size: 26px;
  }

  .hero__box {
    padding: 35px;
  }

  .hero__eyebrow {
    margin-bottom: 28px;
  }

  .hero__title {
    margin-bottom: 32px;
  }

  .belief__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .belief__label {
    flex: none;
    border-right: 0;
    border-bottom: 1px solid var(--grey);
  }

  .belief__quote {
    margin: 22px 0 0;
    text-align: center;
  }

  .person {
    padding-top: 72px;
  }

  .person__photo {
    height: 420px;
  }

  .job {
    padding: 28px 24px 44px;
    grid-column-gap: 16px;
    column-gap: 16px;
  }

  .job:not(:last-child)::after {
    left: 44px;
    top: 49px;
    bottom: -59px;
  }

  .job__title {
    font-size: 25px;
  }

  .space__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-row-gap: 28px;
    row-gap: 28px;
  }

  .site-footer {
    padding: 56px 0 64px;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__email + .site-footer__bottom {
    margin-top: 48px;
  }

  .site-footer__social {
    margin-left: 0;
    margin-top: 24px;
  }

  .to-top {
    left: 20px;
  }

  .faq__item summary {
    font-size: 21px;
    align-items: flex-start;
  }

  .faq__icon {
    margin-top: 3px;
  }
}

/* ---------- Weniger Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .site-header,
  .to-top {
    transition: none;
  }
}
