@font-face {
  font-family: "Poppins";
  src: url("files/fonts/Poppins-400.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Poppins";
  src: url("files/fonts/Poppins-500.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Poppins";
  src: url("files/fonts/Poppins-600.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Geist";
  src: url("files/fonts/Geist-Variable.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

:root {
  color-scheme: light;
  --ink: #0a1914;
  --ink-soft: #365148;
  --forest: #082f23;
  --forest-deep: #05251b;
  --forest-light: #174f3b;
  --sage: #dbe8d4;
  --sage-deep: #c6d9bd;
  --paper: #f3f4ed;
  --paper-warm: #ebece3;
  --white: #fbfcf7;
  --line: rgba(10, 25, 20, 0.17);
  --line-light: rgba(235, 244, 227, 0.22);
  --accent: #9ec58d;
  --header-height: 64px;
  --anchor-offset: 58px;
  --hero-logo-size: clamp(118px, 8.2vw, 154px);
  --content: min(1500px, calc(100vw - 80px));
  --gutter: clamp(24px, 5vw, 80px);
  --section-space: clamp(112px, 12vw, 190px);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

::selection {
  color: var(--white);
  background: var(--forest-light);
}

.hero-wordmark ::selection {
  color: var(--forest-deep);
  background: var(--paper);
  -webkit-text-fill-color: var(--forest-deep);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 12px 16px;
  color: var(--white);
  background: var(--forest);
  border-radius: 3px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  color: var(--forest-deep);
  border-bottom: 1px solid transparent;
  transition: height 320ms var(--ease-out), background 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: var(--paper);
  transition: opacity 320ms ease;
}

.site-header.is-scrolled {
  height: 58px;
  border-color: var(--line);
  box-shadow: 0 10px 40px rgba(8, 47, 35, 0.055);
}

.site-header.is-scrolled::before {
  opacity: 1;
}

.navigation {
  position: relative;
  z-index: 1;
  width: var(--content);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.brand-mark {
  width: 33px;
  height: 33px;
  object-fit: contain;
}

.brand-name {
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.desktop-actions,
.nav-links,
.language-switch {
  display: flex;
  align-items: center;
}

.desktop-actions {
  gap: clamp(20px, 3vw, 50px);
}

.nav-links {
  gap: clamp(12px, 1.8vw, 28px);
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease-out);
}

.nav-links a:hover::after,
.nav-links a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-switch {
  gap: 7px;
  color: rgba(8, 47, 35, 0.38);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.language-switch button {
  min-width: 29px;
  min-height: 36px;
  padding: 0;
  color: rgba(8, 47, 35, 0.42);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 180ms ease;
}

.language-switch button:hover,
.language-switch button[aria-pressed="true"] {
  color: var(--forest);
}

.mobile-menu {
  display: none;
  position: relative;
}

.menu-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--forest);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  transition: transform 260ms var(--ease-out), top 260ms var(--ease-out);
}

.menu-toggle span:first-child {
  top: 17px;
}

.menu-toggle span:last-child {
  top: 26px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  top: 22px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  top: 22px;
  transform: rotate(-45deg);
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(320px, calc(100vw - 48px));
  padding: 20px;
  color: var(--white);
  background: rgba(5, 37, 27, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(5, 37, 27, 0.24);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mobile-menu-panel[hidden] {
  display: none;
}

.mobile-nav-links {
  display: grid;
}

.mobile-nav-links a {
  padding: 14px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 1.12rem;
  text-decoration: none;
}

.mobile-language {
  justify-content: flex-start;
  margin-top: 14px;
}

.mobile-language button {
  color: rgba(255, 255, 255, 0.48);
}

.mobile-language button:hover,
.mobile-language button[aria-pressed="true"] {
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: var(--forest-deep);
  background: var(--sage);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 76% 34%, rgba(158, 197, 141, 0.5), transparent 44%),
    linear-gradient(90deg, rgba(219, 232, 212, 0.98) 0%, rgba(219, 232, 212, 0.7) 42%, rgba(198, 217, 189, 0.26) 100%);
}

.hero-plan {
  --plan-opacity: 0.72;
  position: absolute;
  inset: -3%;
  z-index: -2;
  opacity: var(--plan-opacity);
  background: url("files/data-centre-plan.webp") center 48% / cover no-repeat;
  mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 18%, rgba(0, 0, 0, 0.88) 52%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 18%, rgba(0, 0, 0, 0.88) 52%, #000 100%);
  transform: translate3d(0, calc(var(--hero-shift, 0) * 1px), 0) scale(1.04);
  transform-origin: center;
  animation: plan-arrive 1500ms 120ms var(--ease-out) both;
}

.hero-frame {
  width: var(--content);
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  padding-top: var(--header-height);
  padding-bottom: var(--header-height);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 1fr;
  column-gap: clamp(14px, 2vw, 34px);
}

.hero-lockup {
  grid-column: 1 / -1;
  align-self: center;
  justify-self: center;
  display: grid;
  grid-template-columns: var(--hero-logo-size) 4px minmax(0, 1fr);
  align-items: start;
  gap: clamp(20px, 2.35vw, 34px);
  width: min(92vw, 1080px);
}

.hero-logo {
  width: var(--hero-logo-size);
  height: var(--hero-logo-size);
  object-fit: contain;
}

.hero-divider {
  width: 4px;
  height: var(--hero-logo-size);
  background: linear-gradient(#013720 0%, #065733 58%, #0c6c39 100%);
}

.hero-wordmark {
  min-width: 0;
  max-width: 100%;
  height: var(--hero-logo-size);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(2px, 0.35vw, 6px);
  font-family: "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hero-wordmark h1,
.hero-tagline {
  color: transparent;
  background: linear-gradient(94deg, #013720 0%, #04542f 42%, #0b6b37 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-wordmark h1 {
  display: inline-block;
  margin: 0;
  padding-bottom: 0.09em;
  font-size: clamp(3.7rem, 5.4vw, 5.9rem);
  font-weight: 880;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-tagline {
  margin: 0;
  padding-bottom: 0.08em;
  font-size: clamp(1.45rem, 2.7vw, 2.62rem);
  font-weight: 560;
  line-height: 1.16;
  letter-spacing: 0;
  white-space: nowrap;
}

.section {
  position: relative;
  padding: var(--section-space) 0;
}

.section-shell,
.footer-shell {
  width: var(--content);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 34px);
  align-items: start;
  margin-bottom: clamp(78px, 10vw, 150px);
}

.section-number {
  grid-column: 1 / span 2;
  padding-top: 0.75em;
  color: var(--ink-soft);
  font-size: clamp(1.5rem, 1.6vw, 1.8rem);
  font-weight: 600;
  letter-spacing: 0.13em;
}

.section-heading h2 {
  grid-column: 3 / -1;
  max-width: 1200px;
  margin: 0;
  font-size: clamp(3.7rem, 9vw, 9.5rem);
  font-weight: 500;
  line-height: 0.89;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.value-section {
  background: var(--paper);
}

.value-copy {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 86px) clamp(14px, 2vw, 34px);
  align-items: end;
}

.value-copy p {
  margin: 0;
}

.value-lead {
  grid-column: 3 / span 7;
  font-size: clamp(1.85rem, 3.15vw, 3.55rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.038em;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.value-support {
  grid-column: 8 / -1;
  align-self: end;
  padding-top: clamp(40px, 6vw, 96px);
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.3rem);
  line-height: 1.48;
  letter-spacing: -0.018em;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.approach-section {
  overflow: hidden;
  padding-bottom: clamp(56px, 5vw, 80px);
  color: var(--white);
  background: var(--forest);
}

.approach-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background: url("files/data-centre-plan.webp") center top / cover no-repeat;
  filter: grayscale(1) brightness(2.3);
  mix-blend-mode: screen;
}

.section-heading-light .section-number {
  color: rgba(243, 244, 237, 0.54);
}

.pillars {
  position: relative;
  border-top: 1px solid var(--line-light);
}

.pillar {
  display: grid;
  grid-template-columns: 72px 74px minmax(220px, 0.82fr) minmax(280px, 1.18fr);
  gap: clamp(20px, 3vw, 54px);
  align-items: start;
  padding: clamp(34px, 4.2vw, 62px) 0;
  border-bottom: 1px solid var(--line-light);
  transition: padding-left 400ms var(--ease-out), background 400ms ease;
}

.pillar:last-child {
  padding-bottom: clamp(18px, 2vw, 28px);
  border-bottom: 0;
}

.pillar:hover {
  padding-left: 14px;
}

.pillar-number {
  padding-top: 10px;
  color: rgba(243, 244, 237, 0.42);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.pillar-icon-wrap {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: var(--sage);
  border-radius: 50%;
}

.pillar-icon {
  width: 25px;
  max-height: 27px;
  object-fit: contain;
}

.pillar h3 {
  margin: 4px 0 0;
  font-size: clamp(1.45rem, 2.2vw, 2.6rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.pillar p {
  max-width: 650px;
  margin: 2px 0 0;
  color: rgba(243, 244, 237, 0.72);
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.5;
  letter-spacing: -0.017em;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.team-section {
  overflow: hidden;
  background: var(--paper-warm);
}

.team-plan {
  position: absolute;
  top: -5%;
  right: -24%;
  width: 70vw;
  height: 62vw;
  max-height: 1000px;
  pointer-events: none;
  opacity: 0.26;
  background: url("files/site-plan.webp") center / contain no-repeat;
  mix-blend-mode: multiply;
  transform: rotate(-4deg);
}

.team-shell {
  position: relative;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 68px) clamp(14px, 2vw, 34px);
  margin-bottom: clamp(34px, 3.8vw, 60px);
}

.person-card {
  grid-column: span 5;
  min-width: 0;
}

.person-card:first-child {
  grid-column: 2 / span 5;
}

.portrait-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 4.65;
  background: var(--sage-deep);
}

.portrait-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(8, 47, 35, 0.13);
  pointer-events: none;
}

.portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.02);
  transition: transform 800ms var(--ease-out), filter 500ms ease;
}

.portrait-johannes {
  object-position: 50% 21%;
  transform: translateY(-1.5%) scale(1.18);
}

.portrait-moritz {
  object-position: 50% 28%;
}

.person-card:hover .portrait {
  transform: scale(1.025);
  filter: saturate(0.95) contrast(1.02);
}

.person-card:hover .portrait-johannes {
  transform: translateY(-1.5%) scale(1.205);
}

.person-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 19px 0 0;
  border-top: 1px solid var(--ink);
}

.person-info h3 {
  margin: 0;
  font-size: clamp(1.2rem, 1.55vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.person-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

.person-links a {
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
}

.person-links a:hover {
  color: var(--forest);
  text-decoration: underline;
}

.team-copy {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 64px) clamp(14px, 2vw, 34px);
  padding-top: 0;
}

.team-copy p {
  grid-column: span 5;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.42vw, 1.38rem);
  line-height: 1.5;
  letter-spacing: -0.022em;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.team-copy p.team-copy-wide {
  grid-column: 2 / span 10;
}

.team-copy p.team-copy-johannes {
  grid-column: 2 / span 5;
}

.team-copy p.team-copy-moritz {
  grid-column: 7 / span 5;
}

.team-copy p.team-copy-wide:first-child {
  grid-row: 1;
}

.team-copy p.team-copy-johannes,
.team-copy p.team-copy-moritz {
  grid-row: 2;
}

.team-copy p.team-copy-wide:last-child {
  grid-row: 3;
}

.team-copy strong {
  color: var(--ink);
  font-weight: 600;
}

.footer {
  padding: clamp(70px, 8vw, 122px) 0 clamp(42px, 5vw, 76px);
  color: rgba(243, 244, 237, 0.75);
  background: var(--forest-deep);
}

.footer-shell {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(14px, 2vw, 34px);
  row-gap: 40px;
  align-items: start;
}

.footer-brand {
  grid-column: 1 / span 3;
}

.footer-brand > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  text-decoration: none;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer h2 {
  margin: 0 0 20px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-imprint {
  grid-column: 6 / span 3;
}

.footer-imprint address {
  font-style: normal;
}

.footer-imprint p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.75;
}

.footer-person,
.footer-email,
.footer-location {
  display: block;
}

.footer-contact + .footer-contact {
  margin-top: 1.35em;
}

.footer-contact + .footer-location {
  margin-top: 1.7em;
}

.footer-email {
  overflow-wrap: anywhere;
}

.footer-privacy-column {
  grid-column: 9 / -1;
}

.footer-privacy {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 4px;
  color: var(--white);
  border-bottom: 1px solid rgba(243, 244, 237, 0.38);
  font-size: 0.8rem;
  font-weight: 600;
}

.footer a {
  text-decoration: none;
}

.footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 820ms var(--ease-out), transform 820ms var(--ease-out);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes plan-arrive {
  from {
    opacity: 0;
    transform: translate3d(4%, 3%, 0) scale(1.1);
  }
  to {
    opacity: var(--plan-opacity);
    transform: translate3d(0, calc(var(--hero-shift, 0) * 1px), 0) scale(1.04);
  }
}

@media (max-width: 1180px) {
  :root {
    --content: min(100% - 48px, 1100px);
  }

  .section-heading h2 {
    grid-column: 3 / -1;
  }

  .value-lead {
    grid-column: 3 / span 8;
  }

  .value-support {
    grid-column: 7 / -1;
  }

  .pillar {
    grid-template-columns: 52px 64px minmax(210px, 0.8fr) minmax(260px, 1.2fr);
    gap: 24px;
  }

  .footer-imprint {
    grid-column: 5 / span 4;
  }

  .footer-privacy-column {
    grid-column: 9 / -1;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 60px;
    --hero-logo-size: clamp(104px, 13vw, 124px);
    --section-space: clamp(92px, 15vw, 130px);
  }

  .desktop-actions {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero,
  .hero-frame {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero::before {
    background:
      radial-gradient(circle at 72% 32%, rgba(158, 197, 141, 0.46), transparent 48%),
      linear-gradient(90deg, rgba(219, 232, 212, 0.98) 0%, rgba(219, 232, 212, 0.68) 54%, rgba(198, 217, 189, 0.2) 100%);
  }

  .hero-plan {
    --plan-opacity: 0.62;
    inset: -3%;
    background-position: 58% 48%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.18) 10%, rgba(0, 0, 0, 0.9) 48%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.18) 10%, rgba(0, 0, 0, 0.9) 48%, #000 100%);
  }

  .hero-lockup {
    gap: clamp(18px, 2.8vw, 28px);
  }

  .hero-wordmark h1 {
    font-size: clamp(3.1rem, 8.2vw, 4.6rem);
  }

  .hero-tagline {
    font-size: clamp(1.12rem, 3.3vw, 1.72rem);
  }

  .section-heading {
    display: block;
  }

  .section-number {
    display: block;
    margin-bottom: 24px;
    padding: 0;
  }

  .section-heading h2 {
    font-size: clamp(3.7rem, 12vw, 7.4rem);
  }

  .value-copy {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .value-lead {
    grid-column: 1 / -1;
  }

  .value-support {
    grid-column: 3 / -1;
    padding-top: 0;
  }

  .pillar {
    grid-template-columns: 48px 64px 1fr;
    gap: 20px;
  }

  .pillar h3 {
    align-self: center;
  }

  .pillar p {
    grid-column: 3 / -1;
  }

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

  .person-card,
  .person-card:first-child {
    grid-column: auto;
  }

  .person-info {
    display: block;
  }

  .person-links {
    justify-content: flex-start;
    margin-top: 9px;
  }

  .team-copy {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-copy p.team-copy-wide {
    grid-column: 1 / -1;
  }

  .team-copy p.team-copy-johannes {
    grid-column: 1;
  }

  .team-copy p.team-copy-moritz {
    grid-column: 2;
  }

  .footer-brand {
    grid-column: 1 / span 4;
  }

  .footer-imprint {
    grid-column: 5 / -1;
  }

  .footer-privacy-column {
    grid-column: 5 / -1;
  }

}

@media (max-width: 640px) {
  :root {
    --content: calc(100% - 40px);
    --header-height: 58px;
    --anchor-offset: 54px;
    --hero-logo-size: clamp(82px, 22vw, 104px);
  }

  .site-header.is-scrolled {
    height: 54px;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
  }

  .brand-name {
    font-size: 1.02rem;
  }

  .hero,
  .hero-frame {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-frame {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    padding-top: var(--header-height);
    padding-bottom: var(--header-height);
  }

  .hero-plan {
    --plan-opacity: 0.5;
    inset: -3%;
    background-position: 61% 48%;
    background-size: cover;
    -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.62) 36%, #000 100%);
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.62) 36%, #000 100%);
  }

  .hero-lockup {
    grid-template-columns: var(--hero-logo-size) 3px minmax(0, 1fr);
    align-items: center;
    gap: clamp(14px, 4vw, 22px);
    width: 92vw;
  }

  .hero-logo {
    width: 100%;
    height: auto;
    max-width: var(--hero-logo-size);
    justify-self: end;
  }

  .hero-divider {
    width: 3px;
    height: auto;
    min-height: var(--hero-logo-size);
    align-self: stretch;
  }

  .hero-wordmark {
    height: var(--hero-logo-size);
    gap: clamp(4px, 1.4vw, 8px);
  }

  .hero-wordmark h1 {
    font-size: clamp(2rem, 8.4vw, 3.4rem);
  }

  .hero-tagline {
    font-size: clamp(1rem, 4vw, 1.45rem);
    white-space: normal;
  }

  .section-heading {
    margin-bottom: 66px;
  }

  .section-heading h2 {
    font-size: clamp(3.25rem, 16vw, 5.4rem);
    letter-spacing: -0.05em;
  }

  .value-copy {
    display: block;
  }

  .value-lead {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  .value-support {
    margin-top: 40px !important;
    padding-left: 20%;
    font-size: 1rem;
  }

  .approach-section::before {
    display: none;
    content: none;
  }

  .pillar {
    grid-template-columns: 42px 1fr;
    gap: 15px 18px;
    padding: 34px 0;
  }

  .pillar:hover {
    padding-left: 0;
  }

  .pillar-number {
    grid-column: 1;
    grid-row: 1;
  }

  .pillar-icon-wrap {
    grid-column: 2;
    grid-row: 1;
    width: 46px;
    height: 46px;
  }

  .pillar h3 {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 9px;
    font-size: 1.65rem;
  }

  .pillar p {
    grid-column: 1 / -1;
    grid-row: 3;
    font-size: 0.98rem;
  }

  .team-plan {
    top: 4%;
    right: -60%;
    width: 130vw;
    height: 110vw;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 70px;
    margin-bottom: 48px;
  }

  .portrait-wrap {
    aspect-ratio: 4 / 4.8;
  }

  .person-info {
    display: flex;
  }

  .person-links {
    justify-content: flex-end;
    margin-top: 0;
  }

  .team-copy {
    display: block;
    padding-top: 0;
  }

  .team-copy p {
    margin-bottom: 34px;
    font-size: 1.08rem;
  }

  .team-copy p:last-child {
    margin-bottom: 0;
  }

  .footer-shell {
    display: block;
  }

  .footer-brand {
    margin-bottom: 60px;
  }

  .footer-brand > a {
    gap: 8px;
  }

  .footer-imprint {
    margin-bottom: 0;
  }

  .footer-privacy-column {
    margin-top: 36px;
  }
}

@-moz-document url-prefix() {
  .nav-links a {
    font-size: 1.16rem;
  }

  .language-switch {
    font-size: 0.96rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-plan {
    transform: none;
  }

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
