@font-face {
  font-family: "Afacad Flux";
  src: url("assets/AfacadFlux.ttf") format("truetype");
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #171717;
  --paper: #faf9f7;
  --soft: #e9e7e8;
  --mauve: #ddd6f3;
  --acid: #c8ff2e;
  --line: rgba(23, 23, 23, .2);
  --display: "Bricolage Grotesque", "Afacad Flux", sans-serif;
  --text: "Afacad Flux", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--text);
  font-style: normal;
  font-synthesis: none;
  font-variation-settings: "slnt" 0;
  font-size: 17px;
  line-height: 1.3;
}
a { color: inherit; }
img { display: block; width: 100%; }
figure, p, h1, h2, h3 { margin: 0; }
em, i { font-style: normal; }

.floating-nav {
  position: fixed;
  z-index: 20;
  top: 15px;
  left: 50%;
  width: min(760px, calc(100% - 30px));
  min-height: 44px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 7px 11px 7px 15px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .055em;
  text-transform: uppercase;
  transition: transform .35s ease;
}
.floating-nav.hidden { transform: translate(-50%, -80px); }
.floating-nav a { text-decoration: none; }
.floating-nav nav { display: flex; align-items: center; gap: 25px; }
.floating-nav nav a { opacity: .72; }
.floating-nav nav a:hover { opacity: 1; color: var(--acid); }
.floating-nav nav a[download] {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 100px;
  opacity: 1;
}
.floating-nav nav a[download]:hover { color: var(--paper); background: var(--mauve); }
.floating-nav nav a[download]::after { content: "↓"; }
.mobile-menu-toggle {
  display: none;
  width: 31px;
  height: 31px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}
.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}
.floating-nav.menu-open .mobile-menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.floating-nav.menu-open .mobile-menu-toggle span:nth-child(2) { opacity: 0; }
.floating-nav.menu-open .mobile-menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.wordmark {
  justify-self: start;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: -.055em;
  text-transform: lowercase;
  transition: color .2s ease;
}
.wordmark:hover { color: var(--acid); }
.languages {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 4px;
  border: 1px solid rgba(250,249,247,.2);
  background: rgba(250,249,247,.12);
}
.languages a {
  min-width: 30px;
  padding: 6px 9px;
  border-radius: 3px;
  text-align: center;
  opacity: .78;
  transition: opacity .2s ease, background .2s ease, color .2s ease;
}
.languages a.active { color: var(--ink); background: var(--acid); opacity: 1; }
.languages a:hover { opacity: 1; color: var(--acid); }
.languages a.active:hover { color: var(--ink); }

.section-label, .section-number, .eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.hero-topline {
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.hero-topline strong {
  font-size: 1.38em;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: none;
}
.hero {
  min-height: 92svh;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr minmax(400px, 950px) 1fr;
  grid-template-rows: auto 1fr;
  gap: 30px;
  padding: 90px 3vw 30px;
}
.hero-background, .hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-background { object-fit: cover; object-position: center; transition: opacity .45s ease; }
.hero-background-dark { opacity: 0; }
.hero-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(250,249,247,.78) 0%, rgba(250,249,247,.28) 18%, rgba(250,249,247,0) 42%),
    linear-gradient(90deg, rgba(250,249,247,.05) 0%, rgba(250,249,247,.12) 42%, rgba(250,249,247,.34) 100%);
  transition: background .35s ease;
}
.hero.hero-dark .hero-background-light { opacity: 0; }
.hero.hero-dark .hero-background-dark { opacity: 1; }
.hero.hero-dark .hero-shade {
  background:
    linear-gradient(180deg, rgba(23,23,23,.68) 0%, rgba(23,23,23,.26) 18%, rgba(23,23,23,0) 42%),
    linear-gradient(90deg, rgba(23,23,23,.03) 0%, rgba(23,23,23,.2) 48%, rgba(23,23,23,.55) 100%);
}
.hero-topline {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.hero-photo .hero-topline { grid-column: 1 / -1; color: var(--ink); border-color: rgba(23,23,23,.3); }
.hero-photo.hero-dark .hero-topline { color: var(--paper); border-color: rgba(250,249,247,.4); }
.hero-photo .hero-topline p { text-shadow: 0 1px 12px rgba(250,249,247,.7); }
.hero-photo.hero-dark .hero-topline p { text-shadow: 0 1px 12px rgba(0,0,0,.55); }
.hero-copy {
  grid-column: 2 / 4;
  grid-row: 2;
  align-self: baseline;
  justify-self: end;
  width: min(760px, 62vw);
  text-align: left;
}
.eyebrow { margin-bottom: 26px; }
.hero h1, .section-head h2, .about-heading h2, .contact-title {
  font-family: var(--display);
  font-weight: 650;
  letter-spacing: -.046em;
  line-height: .99;
}
.hero h1 { font-size: clamp(72px, 8.8vw, 145px); }
.hero h1 .hero-line { display: block; color: inherit; white-space: nowrap; }
.home-en .hero-copy { width: min(840px, 68vw); }
.home-en .hero h1 {
  font-size: clamp(68px, 8.1vw, 134px);
  letter-spacing: -.04em;
}
.home-de .hero-copy { width: min(860px, 70vw); }
.home-de .hero h1 {
  font-size: clamp(68px, 7.8vw, 132px);
  letter-spacing: -.038em;
}
.hero h1 .hero-highlight { color: #7666ad; }
.hero.hero-dark h1, .hero.hero-dark .eyebrow, .hero.hero-dark .hero-intro { color: var(--paper); }
.hero.hero-dark h1 .hero-highlight { color: var(--mauve); }
.hero-intro {
  width: min(430px, 60%);
  margin: 38px 0 0;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 510;
  letter-spacing: -.025em;
}
.hero-accent {
  position: absolute;
  right: 3vw;
  bottom: 28px;
  color: var(--acid);
  font-family: var(--display);
  font-size: 25px;
}
.availability-line {
  display: flex;
  justify-content: space-between;
  margin: 0 3vw;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.noise-image { padding: 0 3vw 35px; background: var(--paper); }
.noise-image img { height: min(75vh, 800px); object-fit: cover; }

.intro-composition {
  padding: 150px 3vw;
  background: #fff;
}
.intro-grid {
  width: min(900px, 76vw);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
}
.intro-cell {
  aspect-ratio: 1;
  overflow: hidden;
}
.intro-cell img { height: 100%; object-fit: cover; }
.intro-text {
  display: flex;
  align-items: center;
  padding: 9%;
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 650;
  letter-spacing: -.044em;
  line-height: .98;
}
.intro-hi { background: var(--paper); }
.intro-this { background: #fff; }
.intro-portfolio { color: var(--paper); background: var(--ink); }
.intro-color {
  display: flex;
  align-items: flex-end;
  padding: 9%;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.intro-lime { background: var(--acid); }
.intro-mauve { background: var(--mauve); }
.intro-dark { color: var(--paper); background: var(--ink); }
.intro-empty { background: #fff; }

.ticker {
  overflow: hidden;
  padding: 15px 0 18px;
  color: var(--ink);
  background: var(--acid);
  white-space: nowrap;
}
.ticker div {
  display: flex;
  width: max-content;
  gap: 25px;
  align-items: center;
  font-family: var(--display);
  font-size: clamp(25px, 3.4vw, 50px);
  font-weight: 620;
  letter-spacing: -.035em;
  animation: ticker 28s linear infinite;
}
.ticker i {
  font-family: var(--display);
  font-style: normal;
  font-variant-emoji: text;
  font-size: .65em;
  line-height: 1;
}
.ticker i::before {
  content: "\002A";
}
@keyframes ticker { to { transform: translateX(-50%); } }

.work-section, .about-section { padding: 120px 3vw 150px; }
.work-section { padding-top: 0; background: var(--paper); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 2.3fr) minmax(220px, .7fr);
  gap: 7vw;
  align-items: start;
  margin-bottom: 130px;
  margin-inline: -3vw;
  padding: 95px 3vw 105px;
  color: var(--paper);
  background: var(--ink);
}
.section-number { margin-top: 8px; opacity: .5; }
.section-head h2 { font-size: clamp(65px, 9vw, 145px); }
.section-head h2 span { color: var(--mauve); }
.work-aside { padding-top: 12px; }
.work-aside .section-number { margin: 9px 0 45px; }
.section-intro { max-width: 280px; font-size: 18px; }
.section-head .section-label, .section-head .section-number { color: var(--acid); }

.projects {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}
.project {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: clamp(22px, 4vw, 70px);
  align-items: end;
  padding: clamp(18px, 2vw, 32px);
  border-top: 1px solid rgba(17,17,17,.18);
  text-decoration: none;
}
.project:last-child { border-bottom: 1px solid rgba(17,17,17,.18); }
.project:nth-child(even) {
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
}
.project:nth-child(even) figure { grid-column: 2; }
.project:nth-child(even) .project-meta { grid-column: 1; grid-row: 1; }
.project figure {
  aspect-ratio: 16 / 8.8;
  overflow: hidden;
  background: var(--soft);
}
.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.78);
  transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .35s ease;
}
.project:hover img { transform: scale(1.018); filter: saturate(1); }
.project-meta {
  display: grid;
  gap: 10px;
  margin: 0 0 4px;
}
.project-caption {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.project-caption span {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .45;
}
.project-title {
  display: flex;
  align-items: baseline;
  gap: clamp(10px, 1.6vw, 22px);
}
.project-bignum {
  font-family: var(--display);
  font-size: clamp(42px, 6.2vw, 104px);
  font-weight: 300;
  letter-spacing: -.03em;
  line-height: .96;
  color: rgba(23, 23, 23, .16);
}
.project-meta h3 {
  font-family: var(--display);
  font-size: clamp(42px, 6.2vw, 104px);
  font-weight: 600;
  letter-spacing: -.048em;
  line-height: .96;
}
.project-caption p {
  max-width: 460px;
  margin: 0;
  color: var(--ink);
  opacity: .78;
  font-size: 15px;
  font-weight: 550;
  letter-spacing: -.005em;
  text-transform: none;
  line-height: 1.35;
}
.project-featured { grid-column: auto; }
.project-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background: var(--mauve);
}
.project-placeholder span {
  max-width: 620px;
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 105px);
  font-weight: 600;
  line-height: .99;
  letter-spacing: -.044em;
}
.project-placeholder small { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.about-section { background: var(--mauve); }
.about-heading .section-label { margin-bottom: 42px; }
.approach-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  font-family: var(--display);
  font-size: clamp(42px, 6.5vw, 100px);
  font-weight: 620;
  letter-spacing: -.044em;
  line-height: .99;
}
.approach-strip span { padding: 18px 2vw 25px; }
.approach-strip span:first-child { padding-left: 0; }
.approach-strip span:nth-child(2) { color: var(--paper); background: var(--ink); }
.approach-strip span:nth-child(3) { color: var(--ink); background: var(--acid); }
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: center;
  max-width: 1080px;
  margin: 80px 0 0;
}
.about-photo img { filter: grayscale(1) contrast(1.05); }
.about-copy p { margin-bottom: 20px; font-size: 18px; }
.about-copy .lead { font-size: 27px; font-weight: 600; letter-spacing: -.035em; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  padding: 13px 22px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.text-link:hover { color: var(--ink); background: var(--acid); }
.text-link-ghost {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
}
.text-link-ghost:hover { color: var(--ink); background: var(--mauve); border-color: var(--mauve); }
.cv-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.cv-links .text-link { margin-top: 0; }
.services {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 125px;
  padding-top: 12px;
  border-top: 1px solid rgba(23,23,23,.35);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-section {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: 90px 3vw 25px;
  color: var(--paper);
  background: var(--ink);
}
.contact-small { max-width: 340px; margin: 8vh 0 0 auto; font-size: 20px; }
.contact-title {
  display: block;
  margin: auto 0;
  color: var(--paper);
  font-size: clamp(80px, 14vw, 215px);
  text-decoration: none;
}
.contact-title span { color: var(--mauve); }
.contact-title:hover span { color: var(--acid); }
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 42px auto;
}
.contact-actions a,
.contact-actions span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 11px 20px;
  border: 1px solid rgba(250,249,247,.5);
  border-radius: 100px;
  color: var(--paper);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .055em;
  text-decoration: none;
  text-transform: uppercase;
}
.contact-actions a:hover {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
}
.contact-section footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(250,249,247,.35);
}
.footer-email {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid rgba(250,249,247,.5);
  padding-bottom: 2px;
}
.footer-email:hover { color: var(--acid); border-color: var(--acid); }
.footer-location {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: .7;
}
.footer-cv {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid rgba(250,249,247,.5);
  padding-bottom: 2px;
}
.footer-cv:hover { color: var(--acid); border-color: var(--acid); }
.footer-copyright {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: .45;
}

@media (max-width: 820px) {
  .floating-nav {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px;
  }
  .wordmark { grid-column: 1; grid-row: 1; }
  .mobile-menu-toggle {
    display: block;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }
  .floating-nav nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    display: none;
    width: min(230px, calc(100vw - 30px));
    flex-direction: column;
    gap: 0;
    padding: 10px;
    color: var(--paper);
    background: var(--ink);
    border-radius: 5px;
  }
  .floating-nav.menu-open nav { display: flex; }
  .floating-nav nav a {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(250, 249, 247, .14);
  }
  .floating-nav nav a:last-child { border-bottom: 0; }
  .floating-nav .languages {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    min-width: 0;
    max-width: 100%;
    margin-right: 6px;
    font-size: 13px;
  }
  .floating-nav .languages a { padding: 7px 8px; }
  .hero-topline { gap: 10px; font-size: 11px; align-items: flex-start; padding-bottom: 12px; }
  .hero-topline p:first-child { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
  .hero-topline strong { font-size: 1.3em; }
  .hero-role { display: block; }
  .hero-topline p:last-child { flex-shrink: 0; white-space: nowrap; }
  .hero { min-height: 690px; display: block; padding: 90px 18px 25px; }
  .hero-copy { margin-top: 100px; }
  .hero h1 { font-size: clamp(58px, 17vw, 82px); }
  .hero-intro { width: 80%; margin: 28px 0 0 auto; font-size: 21px; }
  .hero-photo .hero-copy { width: 100%; margin-top: 36vh; text-align: left; }
  .hero-photo .hero-background { object-position: left top; }
  .hero-photo .hero-shade { background: linear-gradient(180deg, rgba(250,249,247,.02) 0%, rgba(250,249,247,.1) 42%, rgba(250,249,247,.84) 78%, rgba(250,249,247,.94) 100%); }
  .hero-photo.hero-dark .hero-shade { background: linear-gradient(180deg, rgba(23,23,23,.02) 0%, rgba(23,23,23,.15) 42%, rgba(23,23,23,.75) 78%, rgba(23,23,23,.92) 100%); }
  .hero-photo h1 { font-size: 13vw; }
  .home-en .hero-photo h1 { font-size: clamp(48px, 12.4vw, 72px); }
  .hero-accent { right: 18px; bottom: 22px; }
  .availability-line { margin-inline: 18px; }
  .noise-image { padding: 0 18px 25px; }
  .noise-image img { height: 55vh; }
  .intro-composition { padding: 80px 18px; }
  .intro-grid { width: 100%; }
  .intro-text { font-size: 8vw; }
  .intro-color { font-size: 8px; }
  .work-section, .about-section { padding: 80px 18px 100px; }
  .work-section { padding-top: 0; }
  .section-head { grid-template-columns: 1fr; margin-bottom: 75px; gap: 35px; }
  .section-head { margin-inline: -18px; padding: 70px 18px 78px; }
  .section-head h2 { font-size: 15vw; }
  .work-aside { display: grid; grid-template-columns: 1fr 1fr; align-items: start; }
  .work-aside .section-number { margin: 0; justify-self: end; }
  .work-aside .section-intro { grid-column: 1 / -1; margin-top: 20px; margin-left: auto; }
  .projects { display: grid; gap: 26px; }
  .project,
  .project:nth-child(even) {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 0;
    padding: 0 0 28px;
  }
  .project:nth-child(even) figure,
  .project:nth-child(even) .project-meta { grid-column: auto; grid-row: auto; }
  .project figure { aspect-ratio: 1.12; }
  .project img { object-position: center; }
  .project-meta { margin-top: 0; }
  .project-meta h3 { font-size: 12vw; }
  .project-title { gap: 8px; }
  .project-bignum { font-size: 12vw; }
  .project-caption p { max-width: none; font-size: 14px; line-height: 1.4; }
  .project-placeholder { padding: 20px; }
  .project-placeholder span { font-size: 13vw; }
  .about-content { grid-template-columns: 1fr; gap: 50px; margin-top: 60px; }
  .approach-strip { grid-template-columns: 1fr; font-size: 16vw; }
  .approach-strip span { padding: 14px 15px 18px; }
  .approach-strip span:first-child { padding-left: 0; }
  .about-photo { width: 70%; }
  .about-copy { max-width: 500px; margin-left: auto; }
  .services { flex-wrap: wrap; justify-content: flex-start; }
  .contact-section { padding-inline: 18px; }
  .contact-small { margin-top: 13vh; }
  .contact-actions { margin: 0 0 35px; }
  .contact-title { font-size: 22vw; }
  .contact-section footer { flex-direction: column; align-items: center; text-align: center; gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
