* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

html {
  overflow-x: clip;
}

body {
  --content-width: 1120px;
  --quarter-circle-size: 760px;
  --page-scale: 1;
  font-family: 'Raleway', sans-serif;
  color: var(--dsp-light);
  background: var(--dsp-charcoal);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-shell {
  flex: 1 0 auto;
  position: relative;
  left: 50%;
  width: var(--content-width);
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  transform: translateX(-50%) scale(var(--page-scale));
  transform-origin: top center;
}

.site-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: none;
  overflow: visible;
  pointer-events: none;
  z-index: -1;
}

.site-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: var(--quarter-circle-size);
  height: var(--quarter-circle-size);
  background: var(--dsp-taupe);
  border-bottom-right-radius: 100%;
}

.container {
  width: 100%;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: transparent;
  border-bottom: 0;
  z-index: 10;
  transition: background-color 0.32s ease, box-shadow 0.32s ease, backdrop-filter 0.32s ease, -webkit-backdrop-filter 0.32s ease;
  isolation: isolate;
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background: rgba(38, 38, 38, 0.72);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
  backdrop-filter: blur(14px) saturate(125%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
  z-index: -1;
}

.nav-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 0.75rem;
  padding: 1.05rem 0 0.85rem;
  transition: padding 0.28s ease, gap 0.28s ease;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.28s ease;
}

.logo-image {
  width: clamp(164px, 21vw, 280px);
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(38, 38, 38, 0.2));
  transition: width 0.28s ease;
}

.site-nav {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(0.35rem, 1.2vw, 0.95rem);
  transition: justify-content 0.28s ease, gap 0.28s ease;
}

.nav-link {
  flex: 1 1 0;
  text-align: center;
  color: var(--muted);
  text-decoration: none;
  padding: 0.45rem 0.7rem;
  border-radius: 9px;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--ink);
  background: transparent;
}

.nav-link.is-accent,
.nav-link.is-accent:hover,
.nav-link.is-accent.is-active {
  color: #978d8d;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--glass-soft);
}

body.nav-compact .site-header,
html.nav-compact body .site-header {
  background: transparent;
  box-shadow: none;
}

body.nav-compact .nav-wrap,
html.nav-compact body .nav-wrap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1.4rem;
  padding: 0.58rem 0;
}

body.nav-compact .logo,
html.nav-compact body .logo {
  justify-content: flex-start;
}

body.nav-compact .logo-image,
html.nav-compact body .logo-image {
  width: clamp(120px, 10vw, 172px);
}

body.nav-compact .site-nav,
html.nav-compact body .site-nav {
  position: static;
  transform: none;
  width: 100%;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #978d8d;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

main {
  padding: 2.2rem 0 4rem;
}

.hero,
.page-hero {
  padding: 3rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dsp-light);
  font-weight: 600;
  font-size: 12px;
}

h1,
h2,
h3 {
  font-family: 'Raleway', sans-serif;
  margin: 0 0 0.9rem;
  line-height: 1.15;
}

h1 {
  font-size: 59px;
  max-width: 17ch;
}

h2 {
  font-size: 34px;
}

.lead {
  font-size: 19px;
  color: rgba(228, 235, 242, 0.86);
  max-width: 56ch;
}

.hero-left {
  min-height: clamp(300px, 44vw, 520px);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  padding-top: clamp(1rem, 4vw, 3rem);
  transform: translate(20px, -50px);
}

.hero-title-left {
  font-size: 60px;
  line-height: 1.02;
  letter-spacing: 0.01em;
  font-weight: 500;
  color: var(--dsp-light);
  margin: 0;
  max-width: none;
  margin-left: auto;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.06em;
}

.hero-left-line {
  display: block;
  width: fit-content;
  margin-left: 0;
  position: relative;
}

.hero-left-line.line-1 {
  left: 175px;
}

.hero-left-line.line-2 {
  left: 135px;
}

.hero-left-line.line-3 {
  left: 85px;
}

.hero-right {
  align-self: center;
  justify-self: end;
  position: relative;
  width: min(100%, clamp(18rem, calc(100vw - var(--quarter-circle-size) + 4rem), 36rem));
  transform: translate(-8px, 28px);
}

.hero-trace {
  position: absolute;
  height: auto;
  max-width: none;
  pointer-events: none;
  user-select: none;
  opacity: 1;
  will-change: transform, opacity;
}

.hero-trace-black {
  width: clamp(250px, 29vw, 440px);
  left: clamp(-140px, -9vw, -70px);
  top: clamp(215px, 31vw, 355px);
  animation: trace-fade-in-left 0.9s ease-out 0.2s forwards;
}

.hero-trace-gold {
  width: clamp(270px, 32vw, 470px);
  right: clamp(-150px, -10vw, -70px);
  top: calc(100% + 0.65rem);
  animation: trace-fade-in-right 0.9s ease-out 0.35s forwards;
}

@media (min-width: 761px) {
  body.is-subpage .site-bg::before {
    display: none;
  }

  .team-intro {
    padding-left: clamp(2rem, 5vw, 4.5rem);
    padding-right: clamp(2rem, 5vw, 4.5rem);
  }

  .team-member-reverse {
    grid-template-areas: 'bio profile';
    grid-template-columns: minmax(0, 2fr) minmax(230px, 1fr);
  }

  body.nav-compact .site-header,
  html.nav-compact body .site-header {
    background: transparent;
    box-shadow: none;
  }

  body.nav-compact .site-header::before,
  html.nav-compact body .site-header::before {
    opacity: 1;
  }

  .nav-link {
    position: relative;
    border-radius: 0;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: calc(100% - 1.4rem);
    max-width: 220px;
    height: 2px;
    background: #262626;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
  }

  .nav-link:hover,
  .nav-link.is-active {
    border-bottom: 0;
    padding-bottom: 0.45rem;
  }

  .nav-link:hover::after,
  .nav-link.is-active::after {
    transform: translateX(-50%) scaleX(1);
  }
}

@media (min-width: 1121px) {
  .logo-image {
    width: 235px;
  }

  .site-nav {
    gap: 15px;
  }

  body.nav-compact .logo-image {
    width: 172px;
  }

  .hero-grid {
    grid-template-columns: 456px 584px;
    gap: 80px;
  }

  .hero-left {
    min-height: 520px;
    padding-top: 48px;
    transform: translate(20px, -50px);
  }

  .hero-right {
    width: 576px;
    transform: translate(-8px, 28px);
  }

  .hero-trace-black {
    left: -118px;
    top: 318px;
    width: 405px;
  }

  .hero-trace-gold {
    right: -118px;
    width: 430px;
  }
}

.hero-claim {
  margin: 0;
  font-size: 32px;
  line-height: 1.35;
  max-width: 100%;
  color: var(--dsp-gold);
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 0.14rem;
}

.hero-claim-line {
  display: block;
  width: fit-content;
}

.hero-claim-line.line-1 {
  margin-left: 9rem;
}

.hero-claim-line.line-2 {
  margin-left: 7rem;
}

.hero-claim-line.line-3 {
  margin-left: 4.5rem;
}

.hero-claim-line.line-4 {
  margin-left: 2.1rem;
}

.hero-claim-line.line-5 {
  margin-left: -0.7rem;
}

.hero-claim-line.line-6 {
  margin-left: -3.7rem;
}

.field-list {
  margin-top: 1.6rem;
  margin-left: -160px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.2rem;
}

.field-item {
  display: inline-flex;
  align-items: center;
  color: var(--dsp-light);
  font-size: 16px;
  letter-spacing: 0.01em;
}

.field-item + .field-item {
  border-left: 1px solid rgba(228, 235, 242, 0.55);
  margin-left: 0.75rem;
  padding-left: 0.75rem;
}

.field-list-break-mobile + .field-item {
  border-left: 1px solid rgba(228, 235, 242, 0.55);
  margin-left: 0.75rem;
  padding-left: 0.75rem;
}

.field-list-break {
  flex-basis: 100%;
}

.field-list-break-mobile {
  display: none;
}

.field-list-break-desktop {
  display: block;
}

.field-list > .field-item:nth-of-type(5) {
  margin-left: -80px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.btn {
  border-radius: 999px;
  padding: 0.72rem 1.3rem;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background: linear-gradient(130deg, var(--dsp-gold), var(--dsp-taupe));
  color: #fff;
}

.btn-light {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--glass-soft);
}

.hero-card,
.panel,
.profile-card,
.project-card,
.service-grid article {
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.3rem 1.4rem;
}

.hero-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.section-reveal {
  animation: slide-up 0.65s ease both;
}

.section-reveal:nth-of-type(2) {
  animation-delay: 0.1s;
}

.section-reveal:nth-of-type(3) {
  animation-delay: 0.2s;
}

.split {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: end;
  color: var(--ink);
  background: var(--glass-panel);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
}

.text-link {
  color: var(--dsp-black);
  font-weight: 600;
}

.cards-2,
.service-grid {
  display: grid;
  gap: 1rem;
}

.cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.profile-card,
.project-card,
.panel,
.service-grid article {
  padding: 1.25rem;
}

.role {
  margin-top: -0.4rem;
  color: var(--accent-2);
  font-weight: 600;
}

.team-hero h1 {
  max-width: 12ch;
}

.team-competence-hero {
  margin-top: 0.25rem;
}

.team-competence-hero h1 {
  margin: 0;
  color: var(--dsp-light);
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.2;
  max-width: none;
  width: 100%;
  text-align: center;
}

.team-competence-image {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-top: 1.4rem;
  margin-left: 0;
  margin-right: 0;
  height: auto;
}

.team-competence-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.35rem;
}

.team-people-gallery {
  margin-top: 1.8rem;
}

.team-people-title {
  margin: 0 0 1.1rem;
  color: var(--dsp-light);
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.18;
  text-align: center;
}

.team-people-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.team-people-image {
  display: block;
  width: 100%;
  height: auto;
  will-change: transform;
}

.team-person-card {
  position: relative;
  width: 90%;
}

.team-person-card picture {
  display: block;
}

.team-person-card-stefan {
  justify-self: start;
  clip-path: inset(0 0 0 5%);
  animation: team-float-left 6.3s ease-in-out infinite;
}

.team-person-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44%;
  transform: translate(-50%, -50%);
  text-align: left;
  color: #262626;
  line-height: 1.2;
}

.team-person-name {
  margin: 0;
  font-size: clamp(14px, 1.15vw, 19px);
  font-weight: 700;
}

.team-person-role {
  margin: 0.25rem 0 0;
  font-size: clamp(12px, 0.95vw, 15px);
  font-weight: 600;
}

.team-person-focus {
  margin: 0.65rem 0 0;
  font-size: clamp(11px, 0.83vw, 13px);
  font-weight: 500;
}

.team-person-card-nicolas {
  width: 90%;
  justify-self: end;
  clip-path: inset(0 5% 0 0);
  animation: team-float-right 8.1s cubic-bezier(0.42, 0, 0.28, 1) infinite;
  animation-delay: 0.7s;
}

.team-person-overlay-right {
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
  text-align: right;
}

@keyframes team-float-left {
  0% {
    transform: translate3d(0, 0, 0) rotate(-0.45deg);
  }

  28% {
    transform: translate3d(0, -7px, 0) rotate(0.15deg);
  }

  63% {
    transform: translate3d(0, 5px, 0) rotate(-0.2deg);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(-0.45deg);
  }
}

@keyframes team-float-right {
  0% {
    transform: translate3d(0, 0, 0) rotate(0.35deg);
  }

  22% {
    transform: translate3d(0, -4px, 0) rotate(-0.1deg);
  }

  52% {
    transform: translate3d(0, -10px, 0) rotate(0.2deg);
  }

  79% {
    transform: translate3d(0, 4px, 0) rotate(-0.15deg);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(0.35deg);
  }
}

.team-competence-cta-bottom {
  margin-top: 1.2rem;
}

.team-intro {
  color: var(--dsp-light);
  background: #9c8265;
  border: 0;
  border-radius: 0;
  padding: 1.6rem 1.7rem;
  margin: 20px 0;
  box-shadow: none;
}

.team-intro p {
  margin: 0;
  color: rgba(228, 235, 242, 0.95);
  line-height: 1.75;
}

.team-intro p + p {
  margin-top: 1.05rem;
}

.team-intro-icons {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  padding-left: 20px;
  padding-right: 20px;
}

.team-intro-icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  background: transparent;
  padding: 0.9rem 0.7rem;
  opacity: 0;
  transform: translateY(12px);
  animation: team-intro-icon-in 0.55s ease forwards;
}

.team-intro-icon-card:nth-child(1) {
  animation-delay: 0.1s;
}

.team-intro-icon-card:nth-child(2) {
  animation-delay: 0.3s;
}

.team-intro-icon-card:nth-child(3) {
  animation-delay: 0.5s;
}

.team-intro-icon-image {
  width: 100%;
  max-width: 88px;
  height: auto;
}

.team-intro-icon-card p {
  margin: 0.7rem 0 0;
  color: #262626;
  font-weight: 700;
  font-size: clamp(13px, 0.95vw, 15px);
}

@keyframes team-intro-icon-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.team-members {
  margin-top: 0.7rem;
}

#team-member-details .team-grid {
  background: #9c8265;
  border-radius: 0;
  padding: 1.6rem 1.7rem;
  margin: 20px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
}

.team-member {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.team-member-detail h3 {
  margin: 0;
  color: #262626;
  font-size: clamp(20px, 1.8vw, 28px);
}

.team-member-detail .team-bio {
  margin-top: 0.85rem;
  color: rgba(38, 38, 38, 0.94);
  text-align: justify;
  text-justify: inter-word;
}

.team-member-detail-right {
  text-align: right;
}

.team-member-head {
  grid-area: profile;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.95rem;
  margin-bottom: 0;
}

.member-photo {
  width: 170px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  flex: 0 0 auto;
  background-color: #444444;
  background-size: cover;
  background-position: center 18%;
  border: 3px solid rgba(151, 141, 141, 0.9);
  box-shadow: 0 8px 18px rgba(38, 38, 38, 0.42);
}

.member-photo-stefan {
  background-image: url('../images/team/stefan-margelisch.jpg'), radial-gradient(circle at 30% 30%, #9c8265 0%, #444444 72%);
}

.member-photo-nicolas {
  background-image: url('../images/team/nicolas-brantschen.jpg'), radial-gradient(circle at 30% 30%, #978d8d 0%, #444444 72%);
}

.member-meta h2 {
  margin: 0 0 0.35rem;
  color: var(--dsp-light);
  font-size: 30px;
}

.team-member .role {
  margin: 0;
  color: var(--dsp-gold);
}

.team-contact-label {
  margin: 0.75rem 0 0.3rem;
  color: var(--dsp-taupe);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
}

.team-focus {
  margin: 0;
  color: var(--dsp-light);
  line-height: 1.45;
  font-weight: 600;
}

.team-bio {
  grid-area: bio;
  margin: 0;
  color: rgba(228, 235, 242, 0.9);
  line-height: 1.72;
  font-size: 17px;
}

@media (min-width: 761px) {
  .team-member.team-member-reverse {
    grid-template-areas: 'bio profile';
    grid-template-columns: minmax(0, 2fr) minmax(230px, 1fr);
  }
}

.site-footer {
  flex-shrink: 0;
  width: 100%;
  margin-top: auto;
  background: linear-gradient(165deg, #262626 0%, #1f1f1f 100%);
  color: #e4ebf2;
  padding: 2.7rem 0 1.15rem;
}

.site-footer .container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.footer-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.footer-section {
  min-width: 0;
}

.footer-section-wide {
  min-width: 0;
}

.footer-eyebrow {
  margin: 0 0 0.55rem;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(228, 235, 242, 0.55);
  font-weight: 700;
}

.footer-text {
  margin: 0;
  line-height: 1.78;
  color: rgba(228, 235, 242, 0.9);
}

.footer-text a,
.footer-links-inline a,
.legal-line a {
  color: #9c8265;
  text-decoration: none;
}

.footer-text a:hover,
.footer-links-inline a:hover,
.legal-line a:hover {
  color: #e4ebf2;
}

.footer-links-inline {
  margin: 0.85rem 0 0;
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  color: rgba(228, 235, 242, 0.5);
}

.footer-chip-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.footer-chip-list li {
  padding: 0.38rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(228, 235, 242, 0.2);
  background: rgba(228, 235, 242, 0.06);
  color: rgba(228, 235, 242, 0.88);
  font-size: 14px;
  line-height: 1;
}

.legal-line {
  border-top: 1px solid rgba(228, 235, 242, 0.12);
  margin-top: 2.25rem;
  padding-top: 1rem;
  text-align: center;
}

.legal-line small {
  color: rgba(228, 235, 242, 0.5);
  font-size: 13px;
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes trace-fade-in-left {
  from {
    transform: translateX(-40px);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes trace-fade-in-right {
  from {
    transform: translateX(40px);
  }
  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-trace {
    opacity: 1;
    animation: none;
    transform: none;
  }
}

@media (min-width: 761px) and (max-width: 1120px) {
  body {
    overflow-x: hidden;
  }

  .page-shell {
    margin-left: 0;
  }

  .logo-image {
    width: 235px;
  }

  .site-nav {
    gap: 15px;
  }

  body.nav-compact .logo-image {
    width: 172px;
  }

  .hero-grid {
    grid-template-columns: 456px 584px;
    gap: 80px;
  }

  .hero-left {
    min-height: 520px;
    padding-top: 48px;
    transform: translate(20px, -50px);
  }

  .hero-right {
    width: 576px;
    transform: translate(-8px, 28px);
  }

  .hero-trace-black {
    left: -138px;
    top: 308px;
    width: 380px;
  }

  .hero-trace-gold {
    right: -138px;
    width: 405px;
  }
}

@media (max-width: 760px) {
  body {
    --content-width: 92vw;
    --quarter-circle-size: 320px;
  }

  .site-header {
    position: relative;
    z-index: 60;
  }

  .site-bg::before {
    top: -170px;
  }

  .hero-grid,
  .cards-2,
  .service-grid,
  .footer-layout,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .hero-left {
    min-height: auto;
    padding-top: 0;
    padding-left: 0.9rem;
    padding-right: 0.9rem;
    align-items: flex-start;
    justify-content: flex-start;
    transform: none;
  }

  .hero-title-left {
    width: 100%;
    max-width: none;
    text-align: left;
    align-items: flex-start;
  }

  .hero-left-line {
    left: 0 !important;
  }

  .hero-right {
    margin-top: 0.4rem;
    width: 100%;
    padding-left: 0.9rem;
    padding-right: 0.9rem;
    justify-self: start;
    align-self: start;
    text-align: left;
    transform: none;
  }

  .hero-trace {
    display: none;
  }

  .hero-claim {
    display: block;
    flex-direction: row;
    gap: 0;
    text-align: left;
    white-space: normal;
  }

  .hero-claim::before {
    content: attr(aria-label);
    display: block;
  }

  .hero-claim-line {
    display: none;
    margin-left: 0 !important;
    text-align: left;
  }

  .field-list {
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 0.45rem;
    column-gap: 0;
    overflow: visible;
  }

  .field-list-break-desktop {
    display: none;
  }

  .field-list-break-mobile {
    display: block;
  }

  .field-list > .field-item:nth-of-type(5) {
    margin-left: 0;
  }

  .field-item {
    justify-content: center;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .field-item + .field-item {
    margin-left: 0.65rem;
    padding-left: 0.65rem;
  }

  .field-list-break-mobile + .field-item {
    border-left: 0;
    margin-left: 0;
    padding-left: 0;
  }

  .field-list > .field-item:nth-of-type(4) {
    padding-right: 0.6rem;
    margin-right: 0.35rem;
  }

  .field-list-break-desktop + .field-item {
    border-left: 1px solid rgba(228, 235, 242, 0.55);
    margin-left: 0;
    padding-left: 0.65rem;
  }

  .split {
    flex-direction: column;
    align-items: start;
  }

  .page-shell {
    width: 100%;
    left: 0;
    margin-left: 0;
    transform: scale(1);
  }

  .eyebrow {
    font-size: 11px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 26px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-title-left {
    font-size: 44px;
  }

  .team-competence-hero h1 {
    font-size: clamp(18px, 5vw, 24px);
    line-height: 1.2;
  }

  .team-competence-image {
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
    margin-top: 1.6rem;
    margin-bottom: 1.6rem;
    margin-left: auto;
    margin-right: auto;
  }

  .team-competence-cta {
    justify-content: center;
    margin-top: 1rem;
  }

  .team-people-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .team-person-card,
  .team-person-card-nicolas,
  .team-people-image {
    width: 100%;
  }

  .team-person-card-stefan {
    clip-path: none;
    animation: none;
    transform: translateX(-10%);
  }

  .team-person-card-nicolas {
    clip-path: none;
    animation: none;
    transform: translateX(10%);
  }

  .team-person-overlay {
    top: 50%;
    left: 50%;
    width: 46%;
  }

  .team-person-overlay-right {
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
  }

  .team-person-name {
    font-size: clamp(13px, 4.3vw, 18px);
  }

  .team-person-role {
    font-size: clamp(11px, 3.8vw, 14px);
  }

  .team-person-focus {
    font-size: clamp(10px, 3.2vw, 12px);
  }

  .hero-claim {
    font-size: 22px;
  }

  .field-item {
    font-size: 14px;
  }

  .team-intro {
    padding: 1.15rem 1rem;
  }

  #team-member-details .team-grid {
    padding: 1.15rem 1rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .team-intro-icons {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    padding-left: 14px;
    padding-right: 14px;
  }

  .team-intro-icon-card {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 0.7rem;
    padding: 0.65rem 0;
  }

  .team-intro-icon-image {
    max-width: 78px;
    width: 78px;
    flex: 0 0 auto;
  }

  .team-intro-icon-card p {
    margin: 0;
  }

  .team-member {
    grid-template-columns: 1fr;
    grid-template-areas:
      'profile'
      'bio';
    gap: 1rem;
    padding: 0;
  }

  .team-member-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .team-member-detail-right {
    text-align: left;
  }

  .member-photo {
    width: 128px;
  }

  .team-members .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .member-meta h2 {
    font-size: 28px;
  }

  .team-bio {
    font-size: 16px;
    line-height: 1.65;
  }

  .nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.78rem 0.9rem;
    z-index: 40;
  }

  .logo-image {
    width: 152px;
  }

  .nav-toggle {
    display: inline-block;
    width: 56px;
    height: 52px;
    cursor: pointer;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-toggle span {
    width: 28px;
    height: 4px;
    margin: 5px auto;
    background: #978d8d;
  }

  .site-nav {
    position: absolute;
    right: 4vw;
    left: 4vw;
    top: calc(100% + 8px);
    display: none;
    width: auto;
    transform: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.8rem;
    background: #262626;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    z-index: 50;
  }

  .nav-link {
    flex: 0 0 auto;
    text-align: left;
  }

  .site-nav .nav-link,
  .site-nav .nav-link.is-accent,
  .site-nav .nav-link:hover,
  .site-nav .nav-link.is-active,
  .site-nav .nav-link.is-accent:hover,
  .site-nav .nav-link.is-accent.is-active {
    color: #978d8d;
  }

  .site-nav.is-open {
    display: flex;
  }

  .footer-layout {
    gap: 1.25rem;
  }

  .footer-chip-list {
    gap: 0.45rem;
  }

  .footer-chip-list li {
    font-size: 13px;
  }

  .legal-line {
    margin-top: 1.55rem;
  }
}
