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

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

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

:root {
  --paper: #e8e8e3;
  --paper-raised: #f0f0ea;
  --ink: #1b1b19;
  --ink-soft: #55554f;
  --annotation: #686862;
  --hairline: #c9c7bf;
  --gutter: clamp(1.25rem, 3.7vw, 4.5rem);
  --section-space: clamp(5.5rem, 10vw, 10rem);
  --font-sans: "Soehne", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "SFMono-Regular", "Roboto Mono", "IBM Plex Mono", Consolas, monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgb(27 27 25 / 0.035) 50%, transparent calc(50% + 0.5px)),
    var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::after {
  position: fixed;
  z-index: 100;
  inset: 0;
  background: url("./assets/noise.png") repeat;
  content: "";
  mix-blend-mode: multiply;
  opacity: 0.045;
  pointer-events: none;
}

::selection {
  background: var(--ink);
  color: var(--paper);
}

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

a {
  color: inherit;
}

a:focus-visible {
  border-radius: 0.125rem;
  outline: 2px solid var(--ink);
  outline-offset: 0.25rem;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.625rem 0.875rem;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  transform: translateY(-200%);
  transition: transform 160ms ease;
}

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

.page-shell {
  width: min(100%, 112rem);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.proposal-header {
  min-height: min(57rem, 96vh);
  padding-top: 1.25rem;
  border-bottom: 1px solid var(--ink);
}

.register {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  padding-block: 0.75rem;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--hairline);
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.055em;
  line-height: 1.3;
  text-transform: uppercase;
}

.register span:nth-child(2) {
  text-align: center;
}

.register span:last-child {
  text-align: right;
}

.register-brand {
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -0.02em;
}

sup {
  position: relative;
  top: -0.25em;
  font-size: 0.5em;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 2rem;
  align-items: end;
  min-height: calc(min(57rem, 96vh) - 5rem);
  padding-block: clamp(5rem, 13vh, 9rem) clamp(3.5rem, 8vh, 6rem);
}

.hero-heading {
  grid-column: 1 / span 8;
  animation: rise-in 720ms var(--ease-out) both;
}

.kicker,
.section-label {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.045em;
  line-height: 1.35;
  text-transform: uppercase;
}

.signal {
  width: 0.5rem;
  height: 0.5rem;
  background: currentcolor;
  border-radius: 50%;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 0;
  font-size: clamp(3.7rem, 8.4vw, 9rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.84;
}

.hero-brief {
  grid-column: 9 / -1;
  animation: rise-in 720ms 120ms var(--ease-out) both;
}

.hero-lede {
  max-width: 35rem;
  margin-bottom: clamp(2rem, 6vh, 4rem);
  font-size: clamp(1.125rem, 1.6vw, 1.5rem);
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.summary-grid > div {
  display: flex;
  min-height: 7rem;
  padding: 0.75rem 0.75rem 0.875rem 0;
  border-right: 1px solid var(--hairline);
  flex-direction: column;
  justify-content: space-between;
}

.summary-grid > div + div {
  padding-left: 0.75rem;
}

.summary-grid > div:last-child {
  border-right: 0;
}

.summary-grid dt,
.outcome-grid dt {
  color: var(--annotation);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.025em;
  line-height: 1.35;
  text-transform: uppercase;
}

.summary-grid dd {
  margin: 0;
  font-size: clamp(1.125rem, 1.6vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.team-section,
.outcomes-section {
  padding-top: var(--section-space);
}

.section-heading {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading .section-label {
  grid-column: 1 / span 3;
  margin-bottom: 0.35rem;
}

.section-heading h2 {
  grid-column: 5 / -1;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.5vw, 3.75rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.person-card {
  display: flex;
  min-width: 0;
  padding: 1rem clamp(1rem, 2vw, 2rem) 1.25rem;
  border-left: 1px solid var(--hairline);
  flex-direction: column;
  animation: rise-in 620ms var(--ease-out) both;
}

.person-card:nth-child(2) {
  animation-delay: 80ms;
}

.person-card:nth-child(3) {
  border-right: 1px solid var(--hairline);
  animation-delay: 160ms;
}

.person-register,
.portrait figcaption,
.data-note,
.page-footer {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.035em;
  line-height: 1.4;
  text-transform: uppercase;
}

.person-register {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--annotation);
}

.discipline-code {
  display: inline-flex;
  min-width: 2.25rem;
  min-height: 1.5rem;
  border: 1px solid var(--hairline);
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

.portrait {
  width: min(100%, 20rem);
  margin: 1rem auto 2rem;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--paper-raised);
  border: 1px solid var(--hairline);
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgb(27 27 25 / 0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(27 27 25 / 0.055) 1px, transparent 1px);
  background-size: 25% 25%;
  content: "";
  mix-blend-mode: multiply;
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05);
  transform: scale(1.001);
  transition: transform 500ms var(--ease-out);
}

.person-card:hover .portrait-frame img {
  transform: scale(1.018);
}

.crop-mark {
  position: absolute;
  z-index: 2;
  width: 1.125rem;
  height: 1.125rem;
  color: var(--ink);
  pointer-events: none;
}

.crop-mark::before,
.crop-mark::after {
  position: absolute;
  background: currentcolor;
  content: "";
}

.crop-mark::before {
  width: 100%;
  height: 1px;
}

.crop-mark::after {
  width: 1px;
  height: 100%;
}

.crop-mark-nw {
  top: 0.5rem;
  left: 0.5rem;
}

.crop-mark-ne {
  top: 0.5rem;
  right: 0.5rem;
  transform: rotate(90deg);
}

.crop-mark-sw {
  bottom: 0.5rem;
  left: 0.5rem;
  transform: rotate(-90deg);
}

.crop-mark-se {
  right: 0.5rem;
  bottom: 0.5rem;
  transform: rotate(180deg);
}

.portrait figcaption {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 0.625rem;
  color: var(--annotation);
}

.portrait figcaption span:last-child {
  text-align: right;
}

.person-title-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
}

.person-title-row h3 {
  margin-bottom: 0.2rem;
  font-size: clamp(1.85rem, 2.8vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.project-role {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.9375rem;
}

.experience {
  display: flex;
  flex: 0 0 auto;
  margin-bottom: 0;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
}

.experience strong {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.experience span {
  margin-top: 0.25rem;
  color: var(--annotation);
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.company-title {
  margin: 1.5rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--hairline);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.person-bio {
  min-height: 8.5rem;
  margin: 1.25rem 0 2rem;
  color: var(--ink-soft);
  font-size: clamp(0.9375rem, 1.05vw, 1.0625rem);
  line-height: 1.55;
}

.proof-block {
  margin-top: auto;
}

.proof-block h4 {
  margin-bottom: 0.625rem;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.proof-list {
  margin-bottom: 0;
  border-top: 1px solid var(--hairline);
}

.proof-list > div {
  display: grid;
  grid-template-columns: minmax(4.5rem, 0.72fr) minmax(0, 1.8fr);
  gap: 0.75rem;
  padding-block: 0.7rem;
  border-bottom: 1px solid var(--hairline);
}

.proof-list dt {
  color: var(--annotation);
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.proof-list dd {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.4;
}

.outcomes-section {
  padding-bottom: var(--section-space);
}

.outcomes-heading h2 {
  max-width: 12ch;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 1rem;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.outcome-grid > div {
  display: flex;
  min-height: clamp(11rem, 17vw, 17rem);
  padding: 1rem 1.25rem;
  border-right: 1px solid var(--hairline);
  flex-direction: column;
  justify-content: space-between;
}

.outcome-grid > div:first-child {
  border-left: 1px solid var(--hairline);
}

.outcome-grid dd {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5.25rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.85;
}

.data-note {
  max-width: 42rem;
  margin: 0 0 0 auto;
  color: var(--annotation);
  text-align: right;
}

.page-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  padding: 1rem 0 1.5rem;
  border-top: 1px solid var(--ink);
  color: var(--annotation);
}

.page-footer p {
  margin: 0;
}

.page-footer p:nth-child(2) {
  text-align: center;
}

.page-footer p:last-child {
  text-align: right;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 68rem) {
  .proposal-header {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 7rem 4rem;
  }

  .hero-heading {
    grid-column: 1 / span 7;
  }

  .hero-brief {
    grid-column: 8 / -1;
  }

  .portrait figcaption {
    display: block;
  }

  .portrait figcaption span {
    display: block;
  }

  .portrait figcaption span:last-child {
    margin-top: 0.25rem;
    text-align: left;
  }

  .person-bio {
    min-height: 10.5rem;
  }

  .proof-list > div {
    display: block;
  }

  .proof-list dd {
    margin-top: 0.25rem;
  }
}

@media (max-width: 54rem) {
  body {
    background: var(--paper);
  }

  .register {
    grid-template-columns: 1fr auto;
  }

  .register span:nth-child(2) {
    display: none;
  }

  .hero-grid {
    display: block;
    padding-top: 5rem;
  }

  .hero-brief {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: end;
    margin-top: 4rem;
  }

  .hero-lede {
    margin-bottom: 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading .section-label {
    margin-bottom: 1.25rem;
  }

  .person-bio {
    min-height: 0;
  }

  .proof-list > div {
    display: grid;
  }

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

  .outcome-grid > div:nth-child(2) {
    border-right: 0;
  }

  .outcome-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--hairline);
  }
}

@media (max-width: 38rem) {
  :root {
    --gutter: 1rem;
  }

  .register {
    font-size: 0.6875rem;
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 5.2rem);
  }

  .hero-grid {
    padding-block: 4.5rem 3rem;
  }

  .hero-brief {
    display: block;
    margin-top: 3rem;
  }

  .hero-lede {
    margin-bottom: 2.5rem;
  }

  .summary-grid > div {
    min-height: 6rem;
    padding-inline: 0 0.5rem;
  }

  .summary-grid > div + div {
    padding-left: 0.5rem;
  }

  .summary-grid dt {
    font-size: 0.625rem;
  }

  .summary-grid dd {
    font-size: 1.125rem;
  }

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

  .person-card {
    border-right: 1px solid var(--hairline);
  }

  .person-card + .person-card {
    border-top: 1px solid var(--ink);
  }

  .person-card {
    padding: 1rem 0.875rem 1.25rem;
  }

  .person-register,
  .portrait figcaption {
    font-size: 0.6875rem;
  }

  .discipline-code {
    min-width: 1.75rem;
    min-height: 1.25rem;
  }

  .portrait {
    margin: 1rem auto 1.5rem;
  }

  .portrait figcaption {
    display: block;
    margin-top: 0.4rem;
  }

  .portrait figcaption span {
    display: block;
  }

  .portrait figcaption span:last-child {
    margin-top: 0.1rem;
    text-align: left;
  }

  .person-title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.5rem;
  }

  .person-title-row h3 {
    font-size: clamp(1.15rem, 5.8vw, 1.5rem);
  }

  .project-role {
    font-size: 0.875rem;
    line-height: 1.35;
  }

  .experience strong {
    font-size: 1.125rem;
  }

  .experience span {
    font-size: 0.625rem;
  }

  .company-title {
    margin-top: 1rem;
    padding-top: 0.625rem;
    font-size: 0.6875rem;
    line-height: 1.5;
  }

  .person-bio {
    margin: 1rem 0 1.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
  }

  .proof-block h4 {
    font-size: 0.6875rem;
  }

  .proof-list > div {
    display: block;
    padding-block: 0.75rem;
  }

  .proof-list dt {
    margin-bottom: 0.25rem;
    font-size: 0.625rem;
  }

  .proof-list dd {
    font-size: 0.875rem;
    line-height: 1.55;
  }

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

  .outcome-grid > div,
  .outcome-grid > div:nth-child(2) {
    min-height: 10rem;
    border-right: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
  }

  .outcome-grid > div:last-child {
    border-bottom: 0;
  }

  .data-note {
    font-size: 0.75rem;
    line-height: 1.55;
    text-align: left;
  }

  .page-footer {
    display: block;
    font-size: 0.75rem;
    line-height: 1.55;
  }

  .page-footer p + p {
    margin-top: 0.5rem;
  }

  .page-footer p:nth-child(2),
  .page-footer p:last-child {
    text-align: left;
  }
}

@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;
  }
}

@media print {
  @page {
    size: A4 landscape;
    margin: 10mm;
  }

  :root {
    --gutter: 0;
    --section-space: 10mm;
  }

  html,
  body {
    background: var(--paper) !important;
  }

  body {
    font-size: 8pt;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  body::after,
  .skip-link {
    display: none;
  }

  .page-shell {
    width: 100%;
    max-width: none;
  }

  .proposal-header {
    min-height: 189mm;
    padding-top: 0;
    border-bottom: 0;
  }

  .register {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-block: 2mm;
    font-size: 5.5pt;
  }

  .register span:nth-child(2) {
    display: inline;
    text-align: center;
  }

  .hero-grid {
    display: grid;
    min-height: 176mm;
    gap: 6mm;
    align-items: center;
    padding-block: 9mm 8mm;
  }

  .hero-heading {
    grid-column: 1 / span 7;
  }

  .hero-brief {
    display: block;
    grid-column: 8 / -1;
    margin-top: 0;
  }

  h1 {
    font-size: 39pt;
  }

  .hero-lede {
    margin-bottom: 5mm;
    font-size: 9pt;
  }

  .summary-grid > div {
    min-height: 19mm;
    padding: 2mm;
  }

  .summary-grid dd {
    font-size: 11pt;
  }

  .team-section {
    padding-top: 0;
    break-before: page;
    break-after: page;
  }

  .section-heading {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 6mm;
    margin-bottom: 5mm;
  }

  .section-heading .section-label {
    grid-column: 1 / span 3;
    margin-bottom: 0;
  }

  .section-heading h2 {
    grid-column: 5 / -1;
    font-size: 18pt;
  }

  .person-card {
    padding: 2.5mm 3mm;
  }

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

  .person-card + .person-card {
    border-top: 0;
  }

  .person-register,
  .portrait figcaption,
  .data-note,
  .page-footer,
  .proof-block h4 {
    font-size: 5pt;
  }

  .discipline-code {
    min-width: 8mm;
    min-height: 5mm;
  }

  .portrait {
    margin: 2mm 0 4mm;
  }

  .portrait-frame {
    width: min(100%, 58mm);
    margin-inline: auto;
  }

  .portrait figcaption {
    display: flex;
  }

  .portrait figcaption span:last-child {
    margin-top: 0;
    text-align: right;
  }

  .person-title-row h3 {
    font-size: 17pt;
  }

  .project-role,
  .person-bio {
    font-size: 7pt;
  }

  .company-title {
    margin-top: 3mm;
    padding-top: 2mm;
    font-size: 5.5pt;
  }

  .person-bio {
    min-height: 0;
    margin: 3mm 0 4mm;
    line-height: 1.35;
  }

  .proof-list > div {
    display: grid;
    grid-template-columns: 18mm 1fr;
    gap: 2mm;
    padding-block: 1.5mm;
  }

  .proof-list dt {
    font-size: 4.5pt;
  }

  .proof-list dd {
    font-size: 6pt;
    line-height: 1.25;
  }

  .outcomes-section {
    padding-top: 5mm;
    padding-bottom: 4mm;
    break-inside: avoid;
  }

  .outcome-grid > div {
    min-height: 25mm;
    padding: 3mm;
  }

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

  .outcome-grid > div,
  .outcome-grid > div:nth-child(2) {
    border-right: 1px solid var(--hairline);
    border-bottom: 0;
  }

  .outcome-grid dd {
    font-size: 27pt;
  }

  .page-footer {
    padding-block: 3mm 0;
  }
}
