.wordmark {
  gap: 10px;
}

.wordmark .wordmark-mark {
  display: block;
  flex: 0 0 auto;
  height: 42px;
  width: 42px;
}

.wordmark span:first-child {
  border: 0;
  border-radius: 0;
  display: inline;
  font: inherit;
  height: auto;
  width: auto;
}

.wordmark span {
  white-space: nowrap;
}

.about-profile {
  display: block;
  padding-block: 32px;
}

.profile-layout {
  align-items: start;
  column-gap: clamp(56px, 8vw, 120px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .48fr);
  margin-top: 18px;
  row-gap: clamp(38px, 4vw, 56px);
}

.profile-copy {
  display: flex;
  flex-direction: column;
}

.profile-copy h2 {
  font-size: clamp(42px, 4.5vw, 68px);
  line-height: .96;
  margin: 0;
  max-width: 820px;
}

.profile-narrative {
  font-size: 14px;
  letter-spacing: -.018em;
  line-height: 1.58;
  margin: 24px 0 0;
  max-width: 720px;
}

.profile-narrative p {
  margin: 0 0 15px;
}

.profile-narrative p:last-child {
  margin-bottom: 0;
}

.profile-narrative a {
  color: var(--accent);
  text-decoration-color: rgba(47, 101, 77, .45);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.profile-narrative a:hover {
  text-decoration-color: currentColor;
}

.profile-pillars {
  display: grid;
  gap: clamp(24px, 3vw, 46px);
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.profile-pillars section {
  border-top: 1px solid var(--line);
  padding-top: 13px;
}

.profile-pillars h3 {
  color: var(--accent);
  font: 10px/1.35 var(--mono);
  letter-spacing: .02em;
  margin: 0;
  text-transform: uppercase;
}

.profile-pillars p {
  font-size: 13px;
  line-height: 1.55;
  margin: 20px 0 0;
  max-width: 355px;
}

.profile-photo {
  align-self: start;
  display: flex;
  flex-direction: column;
  margin: 0;
}

.profile-photo-image {
  border: 1px solid rgba(47, 101, 77, .34);
  aspect-ratio: 4 / 5;
  display: block;
  filter: grayscale(1) contrast(1.06);
  min-height: 0;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.profile-photo-placeholder {
  align-items: flex-end;
  background:
    linear-gradient(145deg, rgba(47, 101, 77, .06), rgba(199, 210, 197, .5));
  border: 1px solid rgba(47, 101, 77, .34);
  display: flex;
  flex: 1;
  min-height: 430px;
  overflow: hidden;
  padding: 22px;
  position: relative;
}

.profile-photo-placeholder::before,
.profile-photo-placeholder::after {
  border: 1px solid rgba(47, 101, 77, .48);
  border-radius: 50%;
  content: "";
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.profile-photo-placeholder::before {
  height: 25%;
  top: 17%;
  width: 38%;
}

.profile-photo-placeholder::after {
  bottom: -19%;
  height: 63%;
  width: 105%;
}

.profile-photo-placeholder span {
  color: var(--accent);
  font: 9px/1.4 var(--mono);
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.profile-photo figcaption {
  color: var(--accent);
  font: 8px/1.35 var(--mono);
  padding-top: 8px;
  text-align: right;
  text-transform: uppercase;
}

.fields .section-intro {
  align-items: flex-end;
}

.field-list {
  align-items: stretch;
  gap: 14px;
  grid-auto-rows: 1fr;
  margin-top: 34px;
}

.field-card {
  background: rgba(199, 210, 197, 0.08);
  border: 1px solid rgba(47, 101, 77, 0.32);
  color: var(--ink);
  cursor: pointer;
  display: block;
  font-family: var(--sans);
  height: 100%;
  min-height: 190px;
  padding: 16px 18px 18px;
  position: relative;
  text-align: left;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
  width: 100%;
}

.field-card:hover {
  background: rgba(199, 210, 197, 0.18);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.field-card:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.field-card.is-active {
  background: rgba(199, 210, 197, 0.26);
  border-color: var(--accent);
}

.field-card.is-active::after {
  background: var(--accent);
  bottom: -1px;
  content: "";
  height: 3px;
  left: -1px;
  position: absolute;
  right: -1px;
}

.field-card .field-icon {
  color: var(--accent);
  display: block;
  height: 72px;
  overflow: visible;
  position: absolute;
  right: 4px;
  top: 13px;
  width: 72px;
}

.field-card:hover .field-icon,
.field-card:focus-visible .field-icon {
  transform: translateY(-3px);
}

.field-icon path,
.field-icon circle {
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
  vector-effect: non-scaling-stroke;
}

.field-icon-dashed {
  stroke-dasharray: 4 4;
}

.field-icon-soft {
  opacity: 0.5;
  stroke-dasharray: 2 3;
}

.field-card .field-icon-image {
  height: 78px;
  mix-blend-mode: darken;
  object-fit: contain;
  object-position: right center;
  right: 0;
  top: 7px;
  transition: filter 180ms ease, transform 220ms ease;
  width: 112px;
}

.field-card.is-active .field-icon-image {
  filter: saturate(1.12) contrast(1.05);
}

.field-card-title {
  display: block;
  font-size: clamp(26px, 2.15vw, 35px);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 0.98;
  margin: 15px 126px 11px 0;
}

.field-card-summary {
  display: block;
  font-size: 12.5px;
  line-height: 1.45;
  max-width: 540px;
}

.field-card-workforms {
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
  display: block;
  margin-right: 126px;
  padding-bottom: 8px;
}

.field-card-workforms-list {
  color: color-mix(in srgb, var(--ink) 78%, transparent);
  display: block;
  font-size: 11.5px;
  line-height: 1.45;
}

.field-card-hint {
  color: var(--accent);
  display: block;
  font: 9px var(--mono);
  margin-top: 16px;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(3px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.field-card:hover .field-card-hint,
.field-card:focus-visible .field-card-hint,
.field-card.is-active .field-card-hint {
  opacity: 1;
  transform: none;
}

.field-detail {
  background: var(--accent-dark);
  color: var(--paper);
  display: grid;
  gap: clamp(42px, 7vw, 100px);
  grid-template-columns: .78fr 1.22fr;
  margin-top: 14px;
  opacity: 0;
  padding: clamp(34px, 5vw, 70px);
  scroll-margin-top: 92px;
  transform: translateY(10px);
  transition: opacity 300ms ease, transform 300ms ease;
}

.field-detail.is-visible {
  opacity: 1;
  transform: none;
}

.field-detail-label,
.field-detail-content h3 {
  color: var(--moss);
  font: 10px var(--mono);
  letter-spacing: .02em;
  margin: 0;
  text-transform: uppercase;
}

.field-detail-intro h2 {
  font-size: clamp(38px, 4vw, 60px);
  line-height: .96;
  margin: 22px 0 25px;
}

.field-detail-intro > p:not(.field-detail-label) {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  max-width: 500px;
}

.field-experience {
  border-top: 1px solid rgba(245, 243, 238, .24);
  margin-top: 24px;
  max-width: 500px;
  padding-top: 16px;
}

.field-experience h3 {
  color: var(--moss);
  font: 9px/1.35 var(--mono);
  letter-spacing: .02em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.field-experience p {
  color: rgba(245, 243, 238, .78);
  font-size: 12.5px;
  line-height: 1.5;
  margin: 0;
}

.field-detail-cta {
  border: 1px solid rgba(245, 243, 238, .7);
  color: var(--paper);
  display: inline-block;
  font-size: 13px;
  margin-top: 30px;
  padding: 11px 14px;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.field-detail-cta:hover,
.field-detail-cta:focus-visible {
  background: var(--paper);
  color: var(--accent-dark);
}

.field-detail-content ul {
  border-top: 1px solid rgba(245, 243, 238, .34);
  list-style: none;
  margin: 16px 0 30px;
  padding: 0;
}

.field-detail-content li {
  border-bottom: 1px solid rgba(245, 243, 238, .22);
  font-size: 14px;
  line-height: 1.4;
  padding: 11px 0 11px 26px;
  position: relative;
}

.field-detail-content li::before {
  color: var(--moss);
  content: "—";
  left: 0;
  position: absolute;
}

.field-topics {
  display: grid;
  gap: 18px;
  grid-template-columns: 145px 1fr;
}

.field-topics p {
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}

.collaborations {
  min-height: 0;
}

.collaborations-heading {
  display: grid;
  gap: clamp(32px, 6vw, 90px);
  grid-template-columns: .48fr 1.52fr;
}

.collaborations-heading h2 {
  font-size: clamp(38px, 4.4vw, 66px);
  margin: 0;
  max-width: 760px;
}

.collaborations-lede {
  font-size: 15px;
  letter-spacing: -.015em;
  line-height: 1.58;
  margin-top: 28px;
  max-width: 780px;
}

.collaborations-lede p {
  margin: 0 0 16px;
}

.collaborations-lede p:last-child {
  margin-bottom: 0;
}

.collaboration-contributions {
  margin-top: clamp(58px, 7vw, 92px);
}

.collaboration-contributions > h3 {
  font: 500 clamp(28px, 3vw, 42px)/1.05 var(--serif);
  letter-spacing: -.045em;
  margin: 0;
}

.contribution-grid {
  display: grid;
  gap: 0 clamp(34px, 5vw, 72px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
}

.contribution-grid article {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 36px minmax(0, 1fr);
  padding: 20px 0 24px;
}

.contribution-grid article > span {
  color: var(--accent);
  font: 10px/1.35 var(--mono);
}

.contribution-grid h4 {
  font: 500 clamp(21px, 1.8vw, 27px)/1.08 var(--serif);
  letter-spacing: -.035em;
  margin: 0;
}

.contribution-grid p {
  font-size: 13.5px;
  line-height: 1.5;
  margin: 9px 0 0;
  max-width: 520px;
}

.collaboration-partners {
  border-top: 1px solid var(--line);
  margin-top: clamp(54px, 6vw, 80px);
  padding-top: 18px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 20px;
}

.partner-tile {
  align-items: center;
  aspect-ratio: auto;
  border: 1px solid var(--line);
  border-right: 0;
  color: var(--ink);
  display: grid;
  min-height: 150px;
  overflow: hidden;
  padding: 18px;
  position: relative;
  text-decoration: none;
}

.partner-tile:last-child {
  border-right: 1px solid var(--line);
}

.partner-logo {
  display: grid;
  filter: grayscale(.55);
  opacity: .8;
  place-items: center;
  transition: opacity 180ms ease, transform 220ms ease;
}

.partner-logo img {
  display: block;
  height: auto;
  max-height: 82px;
  max-width: 100%;
  object-fit: contain;
}

.partner-tile-roots .partner-logo img {
  max-height: 110px;
}

.partner-wordmark {
  font: 600 clamp(21px, 2vw, 31px)/1 var(--sans);
  letter-spacing: -.05em;
}

.ibc-wordmark {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  font-size: clamp(15px, 1.45vw, 22px);
  letter-spacing: -.03em;
}

.ibc-wordmark b {
  color: #315880;
}

.ibc-wordmark em {
  color: #df6c35;
  font-style: normal;
}

.digital-guides-wordmark {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  font-size: clamp(18px, 1.65vw, 25px);
  letter-spacing: -.025em;
  line-height: .86;
  text-transform: uppercase;
}

.digital-guides-wordmark b {
  color: var(--ink);
}

.digital-guides-wordmark em {
  color: var(--accent);
  font-style: normal;
  letter-spacing: .09em;
}

.partner-detail {
  background: var(--accent);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: flex-end;
  opacity: 0;
  padding: 22px;
  position: absolute;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 220ms ease;
}

.partner-detail strong {
  font: 500 clamp(22px, 2vw, 30px)/1 var(--serif);
  letter-spacing: -.04em;
}

.partner-detail > span {
  font-size: 12px;
  line-height: 1.4;
  margin-top: 10px;
}

.partner-detail i {
  font: 10px var(--mono);
  margin-top: 18px;
  text-transform: uppercase;
}

.partner-tile:hover .partner-logo,
.partner-tile:focus-visible .partner-logo {
  opacity: 0;
  transform: translateY(-8px);
}

.partner-tile:hover .partner-detail,
.partner-tile:focus-visible .partner-detail {
  opacity: 1;
  transform: none;
}

.collaboration-cta {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 36px;
  justify-content: space-between;
  margin-top: clamp(46px, 5vw, 68px);
  padding-top: 22px;
}

.collaboration-cta p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  max-width: 720px;
}

.collaboration-cta a {
  background: var(--accent);
  color: var(--paper);
  flex: 0 0 auto;
  font-size: 12px;
  padding: 12px 15px;
  text-decoration: none;
}

.collaboration-cta a:hover,
.collaboration-cta a:focus-visible {
  background: var(--ink);
}

.collaboration-cta a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

@media (max-width: 520px) {
  .wordmark .wordmark-mark {
    height: 38px;
    width: 38px;
  }

  .principles {
    grid-template-columns: 1fr;
  }

  .field-card {
    margin-bottom: 12px;
    min-height: 190px;
    padding: 17px 16px 20px;
  }

  .field-card .field-icon {
    height: 62px;
    right: 0;
    top: 14px;
    width: 62px;
  }

  .field-card .field-icon-image {
    height: 66px;
    top: 10px;
    width: 96px;
  }

  .field-card-title {
    font-size: 29px;
    margin: 14px 104px 12px 0;
  }

  .field-card-workforms {
    margin-right: 104px;
  }
}

@media (max-width: 880px) {
  .field-detail {
    display: block;
    margin-top: 12px;
    scroll-margin-top: 82px;
  }

  .field-detail-content {
    margin-top: 48px;
  }
}

@media (max-width: 560px) {
  .field-detail {
    padding: 28px 22px 32px;
  }

  .field-topics {
    display: block;
  }

  .field-topics p {
    margin-top: 12px;
  }

  .field-card-hint {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .field-card,
  .field-card .field-icon,
  .field-card-hint,
  .field-detail {
    transition: none;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    align-items: flex-start;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 18px;
    left: 0;
    padding: 24px;
    position: absolute;
    top: 76px;
    width: 100%;
  }

  .site-nav.open {
    display: flex;
  }

  .profile-layout {
    column-gap: 44px;
    grid-template-columns: minmax(0, 1fr) minmax(230px, .42fr);
    row-gap: 40px;
  }

  .collaborations-heading {
    grid-template-columns: 1fr;
  }

  .partner-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .partner-tile:nth-child(3) {
    border-right: 1px solid var(--line);
  }
}

@media (max-width: 520px) {
  .site-nav {
    top: 68px;
  }
}

@media (max-width: 640px) {
  .about-profile {
    padding-block: 64px;
  }

  .profile-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .profile-narrative {
    font-size: 15px;
    line-height: 1.55;
  }

  .profile-pillars {
    gap: 26px;
    grid-template-columns: 1fr;
    margin-top: 42px;
    order: 2;
  }

  .profile-pillars p {
    font-size: 13px;
    margin-top: 12px;
    max-width: 520px;
  }

  .profile-photo {
    margin-top: 38px;
    order: 3;
  }

  .profile-photo-placeholder {
    aspect-ratio: 4 / 5;
    min-height: 0;
  }

  .profile-photo-image {
    aspect-ratio: 4 / 5;
    min-height: 0;
  }

  .collaborations-heading {
    gap: 22px;
  }

  .contribution-grid {
    grid-template-columns: 1fr;
  }

  .collaboration-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .partner-grid {
    grid-template-columns: 1fr 1fr;
  }

  .partner-tile {
    border-bottom: 0;
    border-right: 0 !important;
  }

  .partner-tile:nth-child(even) {
    border-right: 1px solid var(--line) !important;
  }

  .partner-tile:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (hover: none) {
  .partner-tile {
    aspect-ratio: auto;
    min-height: 160px;
    padding-bottom: 50px;
  }

  .partner-tile::after {
    bottom: 14px;
    color: var(--accent);
    content: "Mehr erfahren ↗";
    font: 9px var(--mono);
    left: 16px;
    position: absolute;
    text-transform: uppercase;
  }
}

/* AUSGEWÄHLTE ORGANISATIONEN */
.selected-organizations {
  min-height: 0;
}

.selected-organizations-intro {
  display: grid;
  gap: clamp(32px, 6vw, 90px);
  grid-template-columns: .48fr 1.52fr;
}

.selected-organizations-intro h2 {
  font-size: clamp(34px, 4vw, 58px);
  margin: 0;
  max-width: 780px;
}

.selected-organizations-intro > div > p {
  font-size: 14px;
  letter-spacing: -.015em;
  margin: 22px 0 0;
  max-width: 580px;
}

.organizations-list {
  display: grid;
  border-top: 1px solid var(--line);
  gap: 0 clamp(22px, 3vw, 48px);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
  margin: clamp(42px, 5vw, 68px) 0 0;
  padding: 0;
}

.organization-item {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: clamp(104px, 10vw, 138px);
  padding: 26px 8px;
}

.organization-logo-lockup {
  align-items: center;
  display: flex;
  justify-content: center;
  max-width: 100%;
  width: 100%;
}

.organization-logo {
  display: block;
  filter: grayscale(1) contrast(.9) brightness(.55);
  height: auto;
  max-height: 48px;
  max-width: min(100%, 174px);
  object-fit: contain;
  opacity: .82;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
  width: auto;
}

.organization-item:hover .organization-logo {
  filter: grayscale(1) contrast(1) brightness(.35);
  opacity: 1;
  transform: translateY(-2px);
}

.organization-item--stadt-erlangen .organization-logo-lockup {
  gap: 11px;
}

.organization-item--stadt-erlangen .organization-logo {
  max-height: 54px;
  max-width: 48px;
}

.organization-item--deutsche-telekom .organization-logo-lockup {
  gap: 10px;
}

.organization-item--deutsche-telekom .organization-logo {
  max-height: 42px;
  max-width: 36px;
}

.organization-wordmark {
  color: var(--ink);
  font: 500 clamp(18px, 1.55vw, 23px)/.92 var(--serif);
  letter-spacing: -.035em;
  max-width: 82px;
}

.organization-item--deutsche-telekom .organization-wordmark {
  max-width: 104px;
}

.organization-more {
  color: rgba(29, 33, 29, .62);
  font: 12px/1.45 var(--sans);
  max-width: 118px;
}

.references[hidden] {
  display: none !important;
}

@media (max-width: 920px) {
  .selected-organizations-intro {
    grid-template-columns: 1fr;
  }

  .organizations-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .organizations-list {
    gap: 0 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 38px;
  }

  .organization-item {
    min-height: 96px;
    padding-inline: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .organization-logo {
    transition: none;
  }
}

/* PROJEKTGALERIE: EINBLICKE IN MEINE ARBEIT */
.project-insights {
  border-top: 1px solid var(--line);
  margin-top: clamp(64px, 8vw, 110px);
  padding-top: clamp(58px, 7vw, 96px);
}

.project-insights-intro {
  display: grid;
  gap: clamp(32px, 6vw, 90px);
  grid-template-columns: .48fr 1.52fr;
}

.project-insights-intro h2 {
  font-size: clamp(38px, 4.4vw, 64px);
  margin: 0;
  max-width: 760px;
}

.project-insights-intro > div > p {
  font-size: 15px;
  line-height: 1.55;
  margin: 24px 0 0;
  max-width: 700px;
}

.project-gallery-toolbar {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin-top: clamp(46px, 6vw, 74px);
  padding-bottom: 14px;
}

.project-gallery-status {
  font: 10px var(--mono);
  margin: 0;
  text-transform: uppercase;
}

.project-gallery-controls {
  display: flex;
  gap: 8px;
}

.project-gallery-controls button {
  align-items: center;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  cursor: pointer;
  display: inline-flex;
  font: 18px/1 var(--sans);
  height: 40px;
  justify-content: center;
  transition: background-color 160ms ease, color 160ms ease, opacity 160ms ease;
  width: 44px;
}

.project-gallery-controls button:hover:not(:disabled),
.project-gallery-controls button:focus-visible {
  background: var(--accent);
  color: var(--paper);
}

.project-gallery-controls button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.project-gallery-controls button:disabled {
  cursor: default;
  opacity: .28;
}

.project-gallery-track {
  --project-gallery-gap: 18px;
  align-items: start;
  display: grid;
  gap: var(--project-gallery-gap);
  grid-auto-columns: calc((100% - (2 * var(--project-gallery-gap))) / 3);
  grid-auto-flow: column;
  margin-top: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 2px 12px;
  scroll-padding-inline: 2px;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.project-gallery-track::-webkit-scrollbar {
  display: none;
}

.project-gallery-track:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.project-card {
  background: rgba(245, 243, 238, .74);
  border: 1px solid rgba(47, 101, 77, .34);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.project-card.is-expanded {
  border-color: var(--accent);
}

.project-card-summary {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 22px 24px 18px;
}

.project-card-header {
  align-items: flex-start;
  color: var(--accent);
  display: flex;
  font: 9px/1.35 var(--mono);
  gap: 20px;
  justify-content: space-between;
  min-height: 28px;
  text-transform: uppercase;
}

.project-card-header span:last-child {
  flex: 0 0 auto;
}

.project-card h3 {
  font: 500 clamp(23px, 1.8vw, 29px)/1.02 var(--serif);
  letter-spacing: -.045em;
  margin: 20px 0 18px;
}

.project-card-teaser {
  font-size: 12.5px;
  line-height: 1.55;
  margin: 0 0 22px;
}

.project-card-meta {
  display: grid;
  gap: 14px 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: auto 0 0;
}

.project-card-meta div {
  border-top: 1px solid var(--line);
  min-width: 0;
  padding-top: 9px;
}

.project-card-meta dt {
  color: var(--accent);
  font: 8px/1.35 var(--mono);
  text-transform: uppercase;
}

.project-card-meta dd {
  font-size: 11px;
  line-height: 1.4;
  margin: 5px 0 0;
}

/* PROJECT FRAMEWORK: compact card summary and matching detail metadata. */
.project-card-info {
  border-top: 1px solid var(--line);
  color: rgba(29, 33, 29, .66);
  font: 9px/1.55 var(--mono);
  margin: auto 0 0;
  padding-top: 11px;
}

.project-card-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  color: var(--accent);
  cursor: pointer;
  display: flex;
  font: 9px/1.35 var(--mono);
  justify-content: space-between;
  padding: 13px 24px;
  text-align: left;
  text-transform: uppercase;
  width: 100%;
}

.project-card-toggle span:last-child {
  font: 18px/1 var(--sans);
}

.project-card-toggle:hover,
.project-card-toggle:focus-visible {
  background: rgba(47, 101, 77, .07);
}

.project-card-toggle:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}

.project-card-body {
  border-top: 1px solid var(--line);
  padding: 0 24px 12px;
}

.project-card-body[hidden] {
  display: none;
}

.project-card-body section {
  border-top: 1px solid var(--line);
  padding: 13px 0;
}

.project-card-body section:first-child {
  border-top: 0;
}

.project-card-body h4 {
  color: var(--accent);
  font: 9px/1.35 var(--mono);
  margin: 0 0 7px;
  text-transform: uppercase;
}

.project-card-body p {
  font-size: 12.5px;
  line-height: 1.48;
  margin: 0;
}

.project-framework dl {
  display: grid;
  gap: 11px;
  margin: 0;
}

.project-framework dt {
  color: rgba(29, 33, 29, .62);
  font: 8px/1.35 var(--mono);
  text-transform: uppercase;
}

.project-framework dd {
  font-size: 11.5px;
  line-height: 1.48;
  margin: 3px 0 0;
}
/* /PROJECT FRAMEWORK */

.project-gallery-closing {
  align-items: flex-end;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 32px;
  justify-content: space-between;
  margin-top: clamp(38px, 5vw, 64px);
  padding-top: 22px;
}

.project-gallery-closing > p {
  font-size: 12.5px;
  line-height: 1.5;
  margin: 0;
  max-width: 660px;
}

.project-gallery-cta {
  border: 1px solid var(--accent);
  color: var(--accent);
  flex: 0 0 auto;
  font-size: 12px;
  padding: 10px 13px;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease;
}

.project-gallery-cta:hover,
.project-gallery-cta:focus-visible {
  background: var(--accent);
  color: var(--paper);
}

.project-gallery-cta:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .project-insights-intro {
    grid-template-columns: 1fr;
  }

  .project-gallery-track {
    grid-auto-columns: calc((100% - var(--project-gallery-gap)) / 2);
  }
}

@media (max-width: 680px) {
  .project-insights {
    margin-top: 58px;
    padding-top: 52px;
  }

  .project-insights-intro h2 {
    font-size: 38px;
  }

  .project-gallery-track {
    --project-gallery-gap: 14px;
    grid-auto-columns: 100%;
  }

  .project-card {
    min-height: 0;
  }

  .project-card h3 {
    font-size: 26px;
  }

  .project-card-summary {
    min-height: 345px;
    padding: 20px 20px 16px;
  }

  .project-card-toggle {
    padding-inline: 20px;
  }

  .project-card-body {
    padding-inline: 20px;
  }

  .project-gallery-closing {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-gallery-controls button,
  .project-gallery-cta,
  .project-card-toggle {
    transition: none;
  }

  .project-gallery-track {
    scroll-behavior: auto;
  }
}

/* TYPOGRAPHY CALIBRATION */
.site-nav a {
  font-size: 13px;
}

.eyebrow,
.section-label,
.article-meta {
  font-size: 12px;
}

.hero h1 {
  font-size: clamp(44px, 5.2vw, 80px);
}

.lead {
  font-size: clamp(17px, 1.45vw, 20px);
}

.field-card-title {
  font-size: clamp(25px, 2vw, 32px);
}

.field-card-summary {
  font-size: 13.5px;
}

.field-card-hint,
.field-detail-label,
.field-detail-topics dt,
.partner-detail i,
.contact-note,
.site-footer {
  font-size: 11px;
}

.profile-copy h2 {
  font-size: clamp(38px, 4vw, 58px);
}

.profile-narrative,
.selected-organizations-intro > div > p {
  font-size: 15px;
}

.profile-photo figcaption,
.profile-photo-placeholder span {
  font-size: 10px;
}

.partner-detail > span {
  font-size: 13px;
}

/* IMPRESSUM */
.legal-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.legal-navigation a {
  color: inherit;
  font-size: 13px;
  text-decoration: none;
}

.legal-navigation a:hover {
  opacity: .55;
}

.legal-navigation span {
  color: var(--brand-forest, #2f684f);
  margin-left: 4px;
}

.legal-main {
  flex: 1;
}

.legal-content {
  padding-block: clamp(90px, 12vw, 170px);
}

.legal-content h1 {
  font: 500 clamp(58px, 8vw, 118px)/.9 var(--serif);
  letter-spacing: -.065em;
  margin: 20px 0 clamp(70px, 9vw, 120px);
}

.legal-details {
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(50px, 10vw, 150px);
  grid-template-columns: minmax(0, 1fr) minmax(260px, .65fr);
  padding-top: 28px;
}

.legal-details h2 {
  font: 500 clamp(25px, 2.4vw, 34px)/1.1 var(--serif);
  letter-spacing: -.035em;
  margin: 0 0 24px;
}

.legal-details address,
.legal-details p {
  font-size: 16px;
  font-style: normal;
  line-height: 1.75;
  margin: 0;
}

.legal-details a {
  border-bottom: 1px solid currentColor;
  color: inherit;
  text-decoration: none;
}

.legal-details a:hover {
  opacity: .55;
}

@media (max-width: 700px) {
  .legal-navigation a {
    font-size: 12px;
  }

  .legal-content {
    padding-block: 75px 100px;
  }

  .legal-content h1 {
    font-size: clamp(54px, 17vw, 76px);
    margin-bottom: 65px;
  }

  .legal-details {
    gap: 48px;
    grid-template-columns: 1fr;
  }
}

/* DATENSCHUTZ */
.privacy-content h1 {
  margin-bottom: clamp(40px, 5vw, 68px);
}

.privacy-intro {
  font-size: clamp(18px, 1.7vw, 23px);
  letter-spacing: -.025em;
  line-height: 1.45;
  margin: 0 0 clamp(70px, 9vw, 120px);
  max-width: 800px;
}

.privacy-sections {
  border-bottom: 1px solid var(--line);
}

.privacy-sections > section {
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(45px, 9vw, 135px);
  grid-template-columns: minmax(210px, .55fr) minmax(0, 1.2fr);
  padding-block: clamp(38px, 5vw, 64px);
}

.privacy-sections h2 {
  font: 500 clamp(25px, 2.2vw, 33px)/1.08 var(--serif);
  letter-spacing: -.035em;
  margin: 0;
}

.privacy-copy {
  max-width: 720px;
}

.privacy-copy p,
.privacy-copy address,
.privacy-copy li {
  font-size: 15px;
  line-height: 1.72;
}

.privacy-copy p,
.privacy-copy address {
  margin: 0 0 19px;
}

.privacy-copy address {
  font-style: normal;
}

.privacy-copy p:last-child,
.privacy-copy address:last-child {
  margin-bottom: 0;
}

.privacy-copy ul {
  margin: 0 0 19px;
  padding-left: 21px;
}

.privacy-copy li + li {
  margin-top: 5px;
}

.privacy-copy a {
  border-bottom: 1px solid currentColor;
  color: inherit;
  text-decoration: none;
}

.privacy-copy a:hover {
  opacity: .55;
}

.privacy-technical,
.privacy-date {
  font-family: var(--mono);
  font-size: .82em;
}

.privacy-date {
  color: rgba(29, 33, 29, .62);
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .privacy-intro {
    margin-bottom: 65px;
  }

  .privacy-sections > section {
    gap: 25px;
    grid-template-columns: 1fr;
    padding-block: 38px 44px;
  }

  .privacy-copy p,
  .privacy-copy address,
  .privacy-copy li {
    font-size: 14px;
  }
}

.method h2 {
  font-size: clamp(36px, 4.2vw, 60px);
}

.process-list li > span {
  font-size: 12px;
}

.process-list p,
.principles p,
.case p {
  font-size: 13.5px;
}

.field-detail-copy h2 {
  font-size: clamp(34px, 3.5vw, 52px);
}

.field-detail-copy > p {
  font-size: 16px;
}

.field-detail li,
.reference-heading p {
  font-size: 15px;
}

.reference-heading h2 {
  font-size: clamp(36px, 4vw, 58px);
}

.collaborations-heading h2 {
  font-size: clamp(34px, 3.8vw, 56px);
}

.selected-organizations-intro h2 {
  font-size: clamp(32px, 3.6vw, 52px);
}

.contact h2 {
  font-size: clamp(38px, 4.6vw, 66px);
}

@media (max-width: 720px) {
  .site-nav a {
    font-size: 12px;
  }

  .hero h1 {
    font-size: clamp(38px, 10vw, 52px);
  }

  .profile-copy h2,
  .method h2,
  .reference-heading h2,
  .collaborations-heading h2,
  .selected-organizations-intro h2,
  .contact h2 {
    font-size: clamp(35px, 9vw, 43px);
  }

  .field-card-title {
    font-size: 27px;
  }

  .eyebrow,
  .section-label,
  .article-meta {
    font-size: 11px;
  }
}

/* PORTRAIT SERIES --------------------------------------------------------- */
.portrait-landscape {
  align-self: center;
  aspect-ratio: 2160 / 1571;
  height: auto;
  max-height: min(68vh, 620px);
  overflow: hidden;
  width: min(132%, 720px);
}

.portrait-landscape .portrait-image {
  filter: none;
  object-position: center;
}

.profile-photo-image {
  aspect-ratio: auto;
  filter: none;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.method-heading.method-heading-with-images {
  align-items: start;
  gap: clamp(28px, 4vw, 58px);
  grid-template-columns: minmax(150px, .45fr) minmax(0, 1.45fr);
  position: relative;
  z-index: 2;
}

#arbeitsweise {
  overflow: hidden;
}

.working-portrait {
  bottom: -12%;
  height: min(88%, 560px);
  margin: 0;
  max-width: 420px;
  pointer-events: none;
  position: absolute;
  right: clamp(-46px, -2vw, -12px);
  width: clamp(280px, 31vw, 420px);
  z-index: 0;
}

.working-portrait img {
  display: block;
  filter: none;
  height: 100%;
  -webkit-mask-image: radial-gradient(ellipse 62% 54% at center, #000 18%, rgba(0, 0, 0, .86) 38%, rgba(0, 0, 0, .36) 58%, transparent 82%);
  mask-image: radial-gradient(ellipse 62% 54% at center, #000 18%, rgba(0, 0, 0, .86) 38%, rgba(0, 0, 0, .36) 58%, transparent 82%);
  mix-blend-mode: normal;
  object-fit: contain;
  opacity: .3;
  width: 100%;
}

.contact-layout.contact-layout-with-photo {
  align-items: center;
  gap: clamp(32px, 4vw, 68px);
  grid-template-columns: minmax(0, 1.05fr) minmax(170px, .34fr) minmax(280px, .64fr);
}

.contact-photo {
  aspect-ratio: 3 / 4;
  margin: 0;
  max-width: 275px;
  overflow: hidden;
  width: 100%;
}

.contact-photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.contact-copy {
  min-width: 0;
}

.contact {
  justify-content: flex-start;
  min-height: auto;
  padding-block: clamp(64px, 7vw, 96px) clamp(86px, 9vw, 122px);
}

@media (max-width: 980px) {
  .contact-layout.contact-layout-with-photo {
    align-items: start;
    gap: 32px;
    grid-template-columns: minmax(0, 1fr) minmax(150px, .38fr);
  }

  .contact-layout-with-photo h2 {
    grid-column: 1 / -1;
  }

  .contact-photo {
    max-width: 235px;
  }
}

@media (max-width: 880px) {
  .hero-landscape-layout {
    gap: 32px;
    grid-template-rows: auto auto;
  }

  .portrait-landscape {
    aspect-ratio: 2160 / 1571;
    height: auto;
    max-height: none;
    width: 100%;
  }

  .method-heading.method-heading-with-images {
    display: block;
  }

  .working-portrait {
    bottom: 2%;
    height: 54%;
    max-width: 220px;
    right: -24px;
    width: 42vw;
  }

  .working-portrait img {
    opacity: .2;
  }

  .contact-layout.contact-layout-with-photo {
    display: grid;
  }
}

@media (max-width: 640px) {
  .contact {
    padding-block: 56px 82px;
  }

  .working-portrait {
    bottom: 6%;
    height: 46%;
    max-width: 175px;
    right: -30px;
    width: 46vw;
  }

  .contact-layout.contact-layout-with-photo {
    gap: 26px;
    grid-template-columns: minmax(110px, .38fr) minmax(0, .62fr);
  }

  .contact-layout-with-photo h2 {
    grid-column: 1 / -1;
  }

  .contact-photo {
    max-width: 205px;
  }

  .contact-copy {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .contact-layout.contact-layout-with-photo {
    display: block;
  }

  .contact-photo {
    margin: 28px 0;
    max-width: 225px;
  }
}

/* Kontakt nach Referenz: ruhige Textfläche links, klares Raumfoto rechts */
.contact-photo-background.shell {
  background: #ebe6dc;
  isolation: isolate;
  min-height: 370px;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}

.contact-photo-background > .section-label {
  left: clamp(40px, 9vw, 140px);
  position: absolute;
  top: 36px;
  z-index: 2;
}

.contact-photo-background::after {
  background: linear-gradient(90deg, #ebe6dc 0%, rgba(235, 230, 220, .92) 35%, rgba(235, 230, 220, .48) 68%, transparent 100%);
  content: "";
  height: 100%;
  left: 29%;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 16%;
  z-index: 1;
}

.contact-photo-background .contact-layout-with-photo {
  align-items: start;
  display: grid;
  gap: 0;
  grid-template-columns: 36% 64%;
  grid-template-rows: auto 1fr;
  margin: 0;
  min-height: 370px;
  position: relative;
}

.contact-photo-background .contact-layout-with-photo h2 {
  align-self: end;
  font-size: clamp(34px, 3vw, 43px);
  line-height: .98;
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  padding: 78px 34px 15px clamp(40px, 9vw, 140px);
  position: relative;
  z-index: 2;
}

.contact-photo-background .contact-copy {
  align-self: start;
  grid-column: 1;
  grid-row: 2;
  padding: 0 34px 34px clamp(40px, 9vw, 140px);
  position: relative;
  z-index: 2;
}

.contact-photo-background .contact-copy p {
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 18px;
  max-width: 370px;
}

.contact-photo-background .contact-link {
  background: var(--accent, #2f654d);
  border: 0;
  color: #fff;
  display: inline-block;
  font: 500 12px var(--sans);
  letter-spacing: 0;
  padding: 13px 17px;
}

.contact-photo-background .contact-photo {
  aspect-ratio: auto;
  grid-column: 2;
  grid-row: 1 / 3;
  height: 100%;
  margin: 0;
  max-width: none;
  overflow: hidden;
  pointer-events: none;
  width: 100%;
}

.contact-photo-background .contact-photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

@media (max-width: 880px) {
  .contact-photo-background.shell {
    min-height: 0;
  }

  .contact-photo-background > .section-label {
    left: 24px;
    top: 38px;
  }

  .contact-photo-background::after {
    display: none;
  }

  .contact-photo-background .contact-layout-with-photo {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .contact-photo-background .contact-layout-with-photo h2 {
    grid-column: 1;
    grid-row: 1;
    padding: 82px 24px 18px;
  }

  .contact-photo-background .contact-copy {
    grid-column: 1;
    grid-row: 2;
    padding: 0 24px 38px;
  }

  .contact-photo-background .contact-photo {
    aspect-ratio: 16 / 9;
    grid-column: 1;
    grid-row: 3;
    height: auto;
    width: 100%;
  }
}
