@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-latin-wght.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-latin-italic-wght.woff2") format("woff2");
  font-style: italic;
  font-weight: 400 600;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-latin-wght.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}

:root {
  color-scheme: light;
  --graphit-950: #14171a;
  --graphit-800: #1e242b;
  --papier: #f5f2eb;
  --papier-tief: #ece7dc;
  --tinte: #1c2126;
  --tinte-60: #565d66;
  --schnee: #f5f2eb;
  --schnee-60: rgba(245, 242, 235, 0.66);
  --gletscher: #6c96a6;
  --gletscher-tief: #35606f;
  --gletscher-eis: #dce6e9;
  --linie: rgba(28, 33, 38, 0.14);
  --linie-invers: rgba(245, 242, 235, 0.16);
  --serif: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
  --fs-h1: clamp(2.25rem, 5.5vw, 4.5rem);
  --fs-h2: clamp(1.9rem, 3.2vw, 2.75rem);
  --fs-h3: 1.35rem;
  --fs-lead: clamp(1.125rem, 1.6vw, 1.3rem);
  --fs-body: 1.0625rem;
  --fs-klein: 0.9375rem;
  --fs-eyebrow: 0.8125rem;
  --container: 1120px;
  --nav-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 1rem);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--papier);
  color: var(--tinte);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

a {
  color: var(--gletscher-tief);
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}

a:hover {
  text-decoration-thickness: 2px;
}

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

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

.section--dark :focus-visible,
.site-footer :focus-visible,
.site-header--hero:not(.is-scrolled) :focus-visible {
  outline-color: var(--gletscher);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--papier);
  color: var(--tinte);
  font-weight: 600;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: clamp(4.5rem, 10vw, 8.5rem);
}

.section--deep {
  background: var(--papier-tief);
}

.section--dark {
  background: var(--graphit-950);
  color: var(--schnee);
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--gletscher-tief);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.45;
  text-transform: uppercase;
}

.section--dark .eyebrow,
.hero .eyebrow {
  color: var(--gletscher);
}

h1,
h2,
h3,
p,
dl,
dd,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
.serif {
  font-family: var(--serif);
}

h1 {
  margin-bottom: 1.75rem;
  font-size: var(--fs-h1);
  font-weight: 600;
  hyphens: manual;
  letter-spacing: -0.01em;
  line-height: 1.08;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.15;
}

h3 {
  margin-bottom: 0.85rem;
  font-size: var(--fs-h3);
  line-height: 1.35;
}

p,
li,
dd {
  max-width: 68ch;
}

.lead {
  font-size: var(--fs-lead);
  line-height: 1.6;
}

.prose > * + * {
  margin-top: 1.35rem;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--gletscher-tief);
  font-size: var(--fs-klein);
  font-weight: 600;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: var(--fs-klein);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button--primary {
  background: var(--gletscher-tief);
  color: var(--papier);
}

.button--primary:hover {
  background: #2c525f;
}

.button--ghost {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--nav-height);
  border-bottom: 1px solid var(--linie);
  background: var(--papier);
  color: var(--tinte);
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.site-header--hero:not(.is-scrolled):not(.menu-is-open) {
  border-bottom-color: transparent;
  background: transparent;
  color: var(--schnee);
}

.nav-shell {
  display: flex;
  min-height: var(--nav-height);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wordmark {
  position: relative;
  z-index: 3;
  display: inline-flex;
  width: 9.75rem;
  min-height: 44px;
  align-items: center;
  background: url("/assets/bilder/peakvise-logo.svg") no-repeat left center / contain;
  text-decoration: none;
}

.js .site-header--hero:not(.is-scrolled):not(.menu-is-open) .wordmark {
  background-image: url("/assets/bilder/peakvise-logo-invers.svg");
}

.nav-toggle {
  position: relative;
  z-index: 3;
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 12px;
  width: 24px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 160ms ease, top 160ms ease;
}

.nav-toggle-lines {
  top: 24px;
}

.nav-toggle-lines::before {
  top: -7px;
  left: 0;
}

.nav-toggle-lines::after {
  top: 7px;
  left: 0;
}

.menu-is-open .nav-toggle-lines {
  background: transparent;
}

.menu-is-open .nav-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-is-open .nav-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-list {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 2.25rem;
  align-items: center;
  list-style: none;
}

.nav-list a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: inherit;
  font-size: var(--fs-klein);
  font-weight: 500;
  text-decoration: none;
}

.nav-list a:hover {
  color: var(--gletscher);
}

.hero {
  position: relative;
  min-height: min(860px, 100svh);
  overflow: hidden;
  padding-block: clamp(10.5rem, 18vw, 13rem) clamp(6rem, 11vw, 8.5rem);
  background: var(--graphit-950);
  color: var(--schnee);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(20, 23, 26, 0.96) 0%, rgba(20, 23, 26, 0.88) 38%, rgba(20, 23, 26, 0.58) 66%, rgba(20, 23, 26, 0.32) 100%),
    linear-gradient(0deg, rgba(20, 23, 26, 0.44), rgba(20, 23, 26, 0.08) 54%, rgba(20, 23, 26, 0.28));
  content: "";
  pointer-events: none;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
}

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

.hero-motif {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.35) 30%, rgba(0, 0, 0, 0.9) 70%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.35) 30%, rgba(0, 0, 0, 0.9) 70%);
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  max-width: 20ch;
}

.hero .lead {
  max-width: 66ch;
  margin-bottom: 2.75rem;
  color: var(--schnee-60);
}

.memory-line {
  max-width: 40ch;
  margin: 3rem 0 0;
  padding-block: 1.75rem;
  border-block: 1px solid var(--linie);
  color: var(--tinte);
  font-family: var(--serif);
  font-size: var(--fs-h3);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
}

.section-intro {
  margin-bottom: 3rem;
}

.cards {
  display: grid;
  gap: 32px;
  margin-top: 3rem;
}

.card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 40px 36px;
  border: 1px solid var(--linie);
  border-radius: 4px;
  background: var(--papier);
  transition: border-color 160ms ease, transform 160ms ease;
}

.card:hover {
  border-color: var(--gletscher);
  transform: translateY(-2px);
}

.card__brand {
  margin-bottom: 0.6rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.card__label {
  margin-bottom: 1.1rem;
  color: var(--gletscher-tief);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.card__text {
  color: var(--tinte-60);
  font-size: 1rem;
}

.card .text-link {
  margin-top: auto;
  padding-top: 1.4rem;
}

.more-projects {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--linie);
  color: var(--tinte-60);
  font-size: var(--fs-klein);
}

.numbered-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 3rem;
}

.numbered-item {
  padding-top: 1.5rem;
  border-top: 1px solid var(--linie);
}

.numbered-item__number {
  margin-bottom: 1rem;
  color: var(--gletscher-tief);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
}

.metrics {
  display: grid;
  gap: 2.5rem;
  margin-top: 3rem;
}

.metric {
  padding-top: 1.5rem;
  border-top: 1px solid var(--linie);
}

.metric strong {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1;
}

.metric span {
  color: var(--tinte-60);
  font-size: var(--fs-klein);
}

.evidence-list {
  display: grid;
  margin: 3rem 0 0;
  padding: 0;
  border-top: 1px solid var(--linie);
  list-style: none;
}

.evidence-list li {
  max-width: none;
  padding-block: 1rem;
  border-bottom: 1px solid var(--linie);
}

.reference-group > strong {
  display: block;
  margin-bottom: 1.25rem;
}

.reference-logo-wall {
  display: grid;
  overflow: hidden;
  margin: 0;
  padding: 1px;
  border: 1px solid var(--linie);
  border-radius: 4px;
  gap: 1px;
  background: var(--linie);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.reference-logo-wall li {
  display: flex;
  min-height: 104px;
  max-width: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 0.75rem;
  border: 0;
  background: var(--papier);
  text-align: center;
}

.reference-logo-wall li.reference-cell--dark {
  background: var(--tinte);
}

.reference-logo-wall--stages {
  grid-template-columns: 1fr;
}

.reference-logo-wall--stages li {
  min-height: 124px;
}

.reference-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 190px);
  max-height: 58px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.78;
}

.reference-logo-wall--media .reference-logo {
  max-height: 54px;
}

/* 7 Medienlogos: letzte Zelle spannt die Restspalten, damit keine leere Zelle entsteht */
.reference-logo-wall--media li:last-child {
  grid-column: span 2;
}

.reference-logo-wall--stages .reference-logo {
  max-width: min(100%, 290px);
  max-height: 78px;
}

.reference-logo-wall--companies .reference-logo {
  max-width: min(100%, 160px);
  max-height: 58px;
}

.reference-cell--dark .reference-logo {
  filter: none;
  opacity: 1;
}

.reference-note {
  margin-top: 1.5rem;
  color: var(--tinte-60);
  font-size: var(--fs-klein);
}

.todo-placeholder {
  display: inline-block;
  margin: 0.15rem 0;
  padding: 0.35rem 0.55rem;
  border: 1px dashed var(--gletscher-tief);
  border-radius: 2px;
  background: var(--gletscher-eis);
  color: var(--tinte);
  font-size: 0.875rem;
  line-height: 1.45;
}

.founder-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.placeholder-media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  background: linear-gradient(160deg, var(--graphit-950), var(--gletscher-tief));
}

.placeholder-media::before {
  position: absolute;
  inset: 0;
  background: url("/assets/motiv/konturlinien-hero.svg") center / cover no-repeat;
  content: "";
  opacity: 0.12;
}

.placeholder-media figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  color: var(--schnee-60);
  font-size: var(--fs-klein);
}

.founder-photo {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  background: var(--graphit-950);
}

.founder-photo picture,
.founder-photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.founder-photo img {
  object-fit: cover;
}

.advisory-panel {
  display: grid;
  gap: 2rem;
  align-items: end;
}

.facts {
  display: grid;
  margin: 3rem 0 0;
  gap: 0 64px;
}

.facts > div {
  display: grid;
  gap: 0.4rem;
  padding-block: 1.1rem;
  border-bottom: 1px solid var(--linie);
}

.facts dt {
  padding-top: 0.2rem;
  color: var(--tinte-60);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.facts dd {
  margin-left: 0;
}

.motif-divider {
  width: 100%;
  height: 120px;
  object-fit: cover;
  opacity: 0.85;
}

.contact-final {
  padding-block: clamp(4.5rem, 8vw, 7rem);
  background: var(--graphit-950);
  color: var(--schnee);
}

.contact-final p {
  color: var(--schnee-60);
}

.contact-final .todo-placeholder {
  border-color: var(--gletscher);
  background: transparent;
  color: var(--schnee-60);
}

.contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
}

.contact-line a {
  color: inherit;
}

.page-main {
  padding-top: var(--nav-height);
}

.page-hero {
  padding-block: clamp(5rem, 10vw, 8rem) clamp(4rem, 8vw, 6.5rem);
  background: var(--papier-tief);
}

.page-hero h1 {
  max-width: 20ch;
}

.page-hero .lead {
  max-width: 64ch;
  margin-bottom: 0;
}

.timeline {
  position: relative;
  display: grid;
  margin: 3rem 0 0;
  padding: 0;
  gap: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8.5rem;
  width: 1px;
  background: var(--linie);
  content: "";
}

.timeline li {
  position: relative;
  display: grid;
  max-width: none;
  grid-template-columns: 7.5rem 1fr;
  gap: 2rem;
  padding-block: 1.4rem;
  border-bottom: 1px solid var(--linie);
}

.timeline time {
  color: var(--gletscher-tief);
  font-family: var(--serif);
  font-weight: 600;
}

.compact-cards {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.compact-card {
  padding: 1.5rem;
  border: 1px solid var(--linie);
  background: var(--papier);
}

.compact-card h3 {
  font-family: var(--serif);
  font-weight: 600;
}

.service-list {
  display: grid;
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  max-width: none;
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--linie);
}

.contact-details {
  display: grid;
  margin: 2.5rem 0 0;
  gap: 0;
}

.contact-details > div {
  display: grid;
  gap: 0.5rem;
  padding-block: 1.1rem;
  border-bottom: 1px solid var(--linie);
}

.contact-details dt {
  color: var(--tinte-60);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-details dd {
  margin-left: 0;
}

.notice {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border-left: 2px solid var(--gletscher-tief);
  background: var(--gletscher-eis);
  font-size: var(--fs-klein);
}

.legal-content {
  max-width: 74ch;
}

.legal-content > * + * {
  margin-top: 1.5rem;
}

.legal-content h2 {
  margin-top: 3rem;
  font-family: var(--sans);
  font-size: var(--fs-h3);
  font-weight: 600;
}

.not-found {
  display: grid;
  min-height: calc(100svh - var(--nav-height));
  place-items: center;
  padding-block: 5rem;
}

.not-found__content {
  max-width: 760px;
}

.not-found__links {
  display: flex;
  flex-wrap: wrap;
  margin: 2rem 0 0;
  padding: 0;
  gap: 0.75rem 1.5rem;
  list-style: none;
}

.not-found__links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.site-footer {
  padding: 4.5rem 0 2.5rem;
  background: var(--graphit-800);
  color: var(--schnee-60);
  font-size: var(--fs-klein);
}

.site-footer__grid {
  display: grid;
  gap: 2.5rem;
}

.footer-wordmark {
  display: flex;
  margin-bottom: 1rem;
  align-items: flex-end;
  gap: 0.5rem;
  color: var(--schnee);
}

.footer-wordmark img {
  display: block;
  width: 9.75rem;
  height: auto;
}

.footer-wordmark span {
  padding-bottom: 0.15rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

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

.site-footer h2 {
  margin-bottom: 1rem;
  color: var(--gletscher);
  font-family: var(--sans);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  max-width: none;
}

.site-footer a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  color: var(--schnee-60);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--schnee);
}

.site-footer .todo-placeholder {
  border-color: var(--gletscher);
  background: transparent;
  color: var(--schnee-60);
}

.site-footer__end {
  margin: 3.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--linie-invers);
  font-size: 0.875rem;
}

.no-js .site-header {
  position: static;
}

.no-js .site-header--hero {
  border-bottom-color: var(--linie);
  background: var(--papier);
  color: var(--tinte);
}

.no-js .nav-shell {
  min-height: auto;
  flex-wrap: wrap;
  padding-block: 0.75rem;
}

.no-js .nav-panel {
  width: 100%;
}

.no-js .nav-list {
  overflow-x: auto;
  gap: 1rem;
}

.no-js .hero {
  min-height: auto;
  padding-top: clamp(6rem, 12vw, 9rem);
}

@media (max-width: 639px) {
  .facts > div,
  .contact-details > div {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    display: none;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

@media (max-width: 767px) {
  .js .nav-toggle {
    display: block;
  }

  .js .nav-panel {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: none;
    padding: calc(var(--nav-height) + 2rem) 24px 2rem;
    background: var(--papier);
    color: var(--tinte);
  }

  .js .menu-is-open {
    border-bottom-color: var(--linie);
    background: var(--papier);
    color: var(--tinte);
  }

  .js .menu-is-open .nav-panel {
    display: flex;
    align-items: flex-start;
  }

  .js .nav-list {
    width: 100%;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .js .nav-list a {
    min-height: 60px;
    border-bottom: 1px solid var(--linie);
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 600;
  }

  .nav-open {
    overflow: hidden;
  }

  .button-row {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero h1 br {
    display: none;
  }
}

@media (min-width: 640px) {
  .facts > div,
  .contact-details > div {
    grid-template-columns: 160px 1fr;
    gap: 1rem;
  }

  .reference-logo-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reference-logo-wall--stages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reference-logo-wall--media li:last-child {
    grid-column: span 3;
  }

  .button-row .button {
    width: auto;
  }
}

@media (min-width: 768px) {
  .container {
    padding-inline: 40px;
  }

  .no-js .nav-shell {
    flex-wrap: nowrap;
    padding-block: 0;
  }

  .no-js .nav-panel {
    width: auto;
  }
}

@media (min-width: 960px) {
  .cards,
  .numbered-grid,
  .metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cards {
    gap: 40px;
  }

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

  .reference-logo-wall {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .reference-logo-wall--media {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .reference-logo-wall--media li:last-child {
    grid-column: span 2;
  }

  .reference-logo-wall--stages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .founder-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 5rem;
  }

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

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

  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

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

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