@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 18px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

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

img {
  height: auto;
}

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

button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
}

a {
  color: inherit;
}

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --color-black: #000000;
  --color-white: rgb(240, 240, 240);
  --color-nav-inactive: #adadae;
  --color-brown: #443230;
  --font-main: 'ABCMaristUnlicensedTrial', serif;
  --font-ui: 'EKBaumerGroteskTRIAL', sans-serif;
  --font-display: var(--font-main);
  --font-weight-base: 500;
  --font-size-base: 16px;
  --font-size-big: 20px;
  --font-size-ui: 13px;
  --font-size-xl: 28px;
  --line-height-tight: 1.03;
  --line-height-normal: 1.1;
  --line-height-loose: 1.2;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-24: 24px;
  --spacing-30: 30px;
  --spacing-md: 2rem;
  --spacing-lg: 2.7rem;
  --spacing-xl: 4.5rem;
  --spacing-2xl: 16rem;
  --nav-global-h: 75px;
  --nav-contextual-h: 40px;
  --nav-height-total: 100px;
  --z-nav: 100;
  --z-overlay: 200;
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 600ms ease;
}

@media (min-width: 769px) and (max-width: 1300px) {
  :root {
    --font-size-base: 16px;
  }
}
@media (max-width: 768px) {
  :root {
    --font-size-base: 13px;
    --font-size-xl: 17px;
    --font-size-big: 17px;
    --spacing-30: 12px;
    --spacing-xl: 2rem;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-base);
  font-stretch: normal;
  font-style: normal;
  line-height: var(--line-height-normal);
  color: var(--color-black);
  background-color: #eeeeee;
}

a {
  text-decoration: none;
}

.is-dimmed {
  opacity: 0.25;
  transition: opacity 300ms ease;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

a,
button,
[tabindex],
:target {
  scroll-margin-top: calc(var(--nav-height-total) + 12px);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 16px;
  background: #000;
  color: #fff;
  font-family: var(--font-ui);
  font-size: var(--font-size-ui);
  transform: translateY(calc(-100% - 20px));
}
.skip-link:focus {
  transform: none;
}

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

.text-ui {
  font-family: var(--font-ui);
  font-size: var(--font-size-ui);
  font-weight: var(--font-weight-base);
}

.press-page,
.ideas-page,
.error-page,
.default-page {
  padding-top: 300px;
}

.error__title {
  text-transform: uppercase;
}

.error-page .prose p {
  text-indent: 0;
}
.error-page .prose a {
  margin-top: 1em;
  display: block;
}

picture img {
  object-position: var(--focus, 50% 50%);
}

@media (max-width: 768px) {
  picture img {
    object-position: var(--focus-mobile, var(--focus, 50% 50%));
  }
}
@font-face {
  font-family: "ABCMaristUnlicensedTrial";
  src: url("fonts/ABCMaristUnlicensedTrial-Medium.woff2") format("woff2"), url("fonts/ABCMaristUnlicensedTrial-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ABCMaristUnlicensedTrial";
  src: url("fonts/ABCMaristUnlicensedTrial-MediumItalic.woff2") format("woff2"), url("fonts/ABCMaristUnlicensedTrial-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "EKBaumerGroteskTRIAL";
  src: url("fonts/EKBaumerGrotesk-Md.woff2") format("woff2"), url("fonts/EKBaumerGrotesk-Md.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
.prose-intro {
  width: 50%;
  margin: 0 auto;
  max-width: 900px;
}
.prose-intro p {
  font-size: var(--font-size-base);
  text-indent: 1.5em;
  margin-bottom: 0;
}
.prose-intro p + p {
  margin-top: 0;
}
.prose-intro p:first-of-type {
  text-indent: 50%;
}
.prose-intro p:last-child {
  margin-bottom: 0;
}
.prose-intro h1,
.prose-intro h2,
.prose-intro h3 {
  font-size: var(--font-size-base);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

strong {
  font-weight: 500;
}

.prose p + p {
  margin-top: 0;
  text-indent: 1.5em;
}
.prose a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.prose h1,
.prose h2,
.prose h3,
.prose h4 {
  text-transform: uppercase;
}
.prose em {
  font-style: italic;
}
.prose strong {
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .prose-intro h1,
  .prose-intro h2,
  .prose-intro h3 {
    font-size: var(--font-size-base);
    text-transform: uppercase;
    margin-bottom: 1rem;
    width: 50%;
  }
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  background: transparent;
  color: var(--color-black);
  height: var(--nav-global-h);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, background-color 0.3s 0s, color 0.3s ease;
  padding-top: 23px;
}

.nav.header--light {
  color: var(--color-white);
}
.nav.header--light .nav__link {
  color: rgba(255, 255, 255, 0.7);
}
.nav.header--light .nav__link.is-active,
.nav.header--light .nav__link:hover {
  color: var(--color-white);
}
.nav.header--light .logo {
  color: var(--color-white);
}
.nav.header--light.is-active::after, .nav.header--light:hover::after {
  width: 100%;
}

.nav__row--global {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 30px;
}
[data-page=home] .nav__row--global {
  color: var(--color-white);
}

.nav-fp-enter {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-fp-leave {
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.nav-fp-from {
  opacity: 0;
  transform: translateY(-6px);
}

.nav-fp-to {
  opacity: 1;
  transform: translateY(0);
}

.nav__filter-panel {
  background-color: #eee;
}

.nav__filter-inner {
  padding: 16px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav__filter-categories {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.nav__filter-categories button {
  font-size: var(--font-size-base);
  color: var(--color-nav-inactive);
  transition: color var(--transition-fast);
  display: flex;
}
.nav__filter-categories button.is-active, .nav__filter-categories button:hover {
  color: var(--color-black);
}
.nav__filter-categories button:not(:last-child)::after {
  content: " |";
  color: var(--color-nav-inactive);
  margin-right: 8px;
}

.nav__filter-tags {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__filter-tags-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
  cursor: grab;
  user-select: none;
}
.nav__filter-tags-scroll::-webkit-scrollbar {
  display: none;
}
.nav__filter-tags-scroll.is-dragging {
  cursor: grabbing;
}
.nav__filter-tags-scroll button {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: var(--font-size-base);
  padding: 3px 12px;
  border-radius: 999px;
  background: white;
  transition: all var(--transition-fast);
  order: 1;
}
.nav__filter-tags-scroll button.filter-all-btn {
  order: -1;
}
.nav__filter-tags-scroll button.is-active {
  order: 0;
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}
.nav__filter-tags-scroll button:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.nav__filter-arrow {
  flex-shrink: 0;
  font-size: var(--font-size-base);
  color: var(--color-black);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}
.nav__filter-arrow.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.nav__row--contextual {
  display: flex;
  align-items: center;
  padding: 0 30px;
  gap: 15px;
  padding-bottom: 23px;
  z-index: 10;
}
[data-page=home] .nav__row--contextual {
  display: none;
}

.nav__section-label--compact {
  display: none;
}

.nav__cat-buttons {
  display: flex;
  align-items: center;
}
.nav__cat-buttons button {
  font-size: var(--font-size-base);
  color: var(--color-nav-inactive);
  transition: color var(--transition-fast);
  cursor: pointer;
  display: flex;
}
.nav__cat-buttons button.is-active, .nav__cat-buttons button:hover {
  color: var(--color-black);
}
.nav__cat-buttons button:not(:last-child)::after {
  content: " |";
  color: var(--color-nav-inactive);
  margin-right: 4px;
  margin-left: 4px;
}

.nav--scrolled {
  transform: translateY(calc(-100% + 67px));
  background-color: transparent;
  transition: transform 0.3s ease, background-color 0.2s 0.3s;
}
.nav--scrolled .nav__cat-buttons {
  display: none;
}
.nav--scrolled .nav__section-label--compact {
  display: block;
}
.nav--scrolled .nav__contextual-center,
.nav--scrolled .nav__contextual-right {
  opacity: 0;
  pointer-events: none;
}

[data-page=projects] .nav.nav--scrolled {
  transform: translateY(-100%);
}

.nav__project-info span + span::before {
  content: ", ";
}

.nav__more-info-btn {
  font-size: var(--font-size-base);
  color: var(--color-nav-inactive);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.nav__more-info-btn:hover {
  color: var(--color-black);
}

.nav-link--dim {
  transition: color var(--transition-fast);
}

.nav__left,
.nav__right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}
[data-page=home] .nav__left,
[data-page=home] .nav__right {
  display: none;
}

.nav__right {
  justify-content: flex-end;
}

.nav__link {
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-base);
  color: var(--color-black);
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--transition-fast);
}
.nav__link.is-active::after, .nav__link:hover::after {
  width: 100%;
}
[data-page=home] .nav__link {
  color: var(--color-white);
}

.nav__logo {
  flex: 0 0 20%;
  display: flex;
  justify-content: center;
  transition: flex-basis 0.4s ease;
}
[data-page=home] .nav__logo {
  flex: 1;
  width: 100%;
  transition: none;
}

.logo {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 400px;
  text-decoration: none;
  min-width: 240px;
}
[data-page=home] .logo {
  max-width: none;
}
.footer__logo .logo {
  max-width: none;
}

.logo__fragment {
  font-family: var(--font-display);
  font-size: var(--font-size-base);
  line-height: 0.96em;
  text-transform: uppercase;
  white-space: pre;
  text-align: center;
  letter-spacing: 0.05em;
}

.nav__section-label {
  font-size: var(--font-size-base);
}
.nav__section-label strong {
  color: var(--color-black);
  font-weight: var(--font-weight-base);
}

.nav__contextual-left {
  display: flex;
  gap: 6px;
}
.nav__contextual-left button, .nav__contextual-left a {
  font-size: var(--font-size-base);
  cursor: pointer;
}
[data-page=studio] .nav__contextual-left a {
  color: var(--color-nav-inactive);
  transition: color var(--transition-fast);
}
[data-page=studio] .nav__contextual-left a:hover, [data-page=studio] .nav__contextual-left a.is-active {
  color: var(--color-black);
}
[data-page=studio] .nav__contextual-left a:not(:last-child)::after {
  content: " |";
  color: var(--color-nav-inactive);
  pointer-events: none;
  left: 3px;
  position: relative;
}

[data-page=studio] .nav__contextual-left {
  flex: none;
  gap: 8px;
  margin-left: -30px;
  padding-left: 30px;
  padding-right: 20px;
}

[data-page=studio] .nav__row--contextual {
  display: none;
}

[data-page=studio] .nav__row--contextual-sticky .nav__contextual-left {
  margin-left: 0;
  padding: 23px 0 23px 31px;
}

@media (min-width: 769px) {
  [data-page=studio] .nav__logo {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, flex-basis 0.4s ease;
  }
  [data-page=studio] .nav.nav--contextual-active .nav__logo {
    opacity: 1;
    pointer-events: auto;
  }
}
.nav__contextual-center {
  flex: 1;
  display: flex;
  justify-content: center;
  transition: opacity 0.2s ease;
}
.nav__contextual-center button {
  font-size: var(--font-size-base);
}

.nav__contextual-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  transition: opacity 0.2s ease;
}
.nav__contextual-right button {
  font-size: var(--font-size-base);
  color: var(--color-nav-inactive);
  transition: color var(--transition-fast);
}
.nav__contextual-right button.is-active, .nav__contextual-right button:hover {
  color: var(--color-black);
}
.nav__contextual-right button:not(:last-child)::after {
  content: " |";
  color: var(--color-nav-inactive);
  margin-right: 8px;
}

.nav__breadcrumb {
  font-size: var(--font-size-base);
}

@media (min-width: 769px) {
  .nav__row--global .nav__logo:hover {
    flex-basis: 16.666%;
  }
  [data-page=home] .nav__row--global:hover .nav__logo {
    flex-basis: auto;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .logo {
    max-width: 300px;
  }
  .nav__cat-buttons button:not(:last-child)::after {
    margin-right: 4px;
  }
  .nav__contextual-left {
    gap: 8px;
  }
}
@media (min-width: 769px) and (max-width: 1080px) and (orientation: landscape) {
  .nav__row--contextual {
    justify-content: space-between;
  }
  .nav__contextual-left,
  .nav__contextual-center,
  .nav__contextual-right {
    flex: none;
  }
}
@media (max-width: 768px) {
  .nav__row--contextual {
    padding-left: 12px;
    padding-right: 12px;
  }
  .nav {
    z-index: 1000;
  }
  .logo__fragment {
    font-size: 13px;
  }
  .logo {
    min-width: 180px;
  }
  .mobile-panel__col {
    padding-bottom: 8px;
  }
  .nav__project-info {
    gap: 0;
  }
}
.nav--has-contextual-swap::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
}
.header--light .nav--has-contextual-swap::before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, transparent 100%);
}
.nav--has-contextual-swap::before {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  mask-image: linear-gradient(to bottom, black 0%, black 30%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 30%, transparent 100%);
  pointer-events: none;
  z-index: 0;
  transform: translateY(-100%);
  transition: transform 0.25s ease;
}

.nav--has-contextual-swap.nav--peek::before,
.nav--has-contextual-swap.nav--ctx-hover::before {
  transform: translateY(0);
}

.nav__row--global {
  position: relative;
  z-index: 1;
  transition: opacity 0.25s ease;
}

.nav__row--contextual-sticky {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0;
  height: auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
@media (max-width: 768px) {
  .nav__row--contextual-sticky {
    display: none;
  }
}

.nav__row--contextual-sticky .nav__contextual-left {
  padding: 23px 0 23px 31px;
  align-items: flex-start;
}

.nav__row--contextual-sticky .nav__contextual-right {
  padding: 23px 31px 23px 0;
  align-items: flex-start;
}

.nav__row--contextual-sticky .projects__sticky-nav__right {
  padding: 23px 31px 23px 80px;
  align-items: flex-start;
}

.nav--contextual-active .nav__row--global {
  opacity: 0;
  pointer-events: none;
}
.nav--contextual-active .nav__row--contextual-sticky {
  opacity: 1;
  pointer-events: auto;
}

.nav--peek .nav__row--global {
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
}
.nav--peek .nav__row--contextual-sticky {
  opacity: 0;
  pointer-events: none;
}

.nav.nav--has-contextual-swap.nav--scrolled {
  transform: none;
}

.nav--has-contextual-swap .nav__row--contextual-sticky .nav__cat-buttons {
  display: flex;
}

.nav__page-label {
  font-size: var(--font-size-base);
  color: var(--color-black);
  white-space: nowrap;
}

.nav__row--contextual-sticky button {
  transition: color var(--transition-fast), transform var(--transition-fast), color var(--transition-fast);
}
.nav__row--contextual-sticky button:hover {
  color: black;
}
.nav__row--contextual-sticky button.is-active {
  color: black;
}

[data-page=studio] .contextual-nav-anchor {
  display: none;
}

.studio__contextual-nav {
  display: flex;
  align-items: center;
  height: var(--nav-global-h);
  padding: 0 30px;
}
.studio__contextual-nav .nav__contextual-left {
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 768px) {
  .studio__contextual-nav {
    display: none;
  }
}

@media (min-width: 769px) {
  .nav--has-contextual-swap .nav__row--global {
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav--has-contextual-swap .nav__row--contextual-sticky {
    transform: translateY(var(--nav-global-h));
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav--has-contextual-swap.nav--contextual-active .nav__row--global {
    transform: translateY(calc(-1 * var(--nav-global-h)));
  }
  .nav--has-contextual-swap.nav--contextual-active .nav__row--contextual-sticky {
    transform: translateY(0);
  }
  .nav--has-contextual-swap.nav--peek .nav__row--global {
    transform: translateY(0);
  }
  .nav--has-contextual-swap.nav--peek .nav__row--contextual-sticky {
    transform: translateY(var(--nav-global-h));
  }
}
.contextual-nav-anchor {
  transition: opacity 0.2s ease 0.15s, visibility 0s linear 0s;
}

body:has(.nav.nav--approaching) .contextual-nav-anchor {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, visibility 0s linear 0.15s;
}

.cover__info {
  transition: opacity 0.2s ease 0.15s;
}

body:has(.nav.nav--approaching) .cover__info {
  opacity: 0;
  transition: opacity 0.15s ease;
}

.footer {
  display: flex;
  flex-direction: column;
  padding: 0.8rem 30px 0.8rem;
}

.footer__logo {
  display: none;
  grid-template-columns: repeat(12, 1fr);
  margin-bottom: 85px;
}
.footer__logo .logo__fragment {
  font-family: var(--font-display);
  font-size: var(--font-size-base);
  text-transform: uppercase;
  white-space: pre;
}
.footer__logo .logo__fragment:nth-child(1) {
  grid-column: 2;
}
.footer__logo .logo__fragment:nth-child(2) {
  grid-column: 5;
}
.footer__logo .logo__fragment:nth-child(3) {
  grid-column: 8;
}
.footer__logo .logo__fragment:nth-child(4) {
  grid-column: 11;
}

.footer__col {
  text-align: center;
}

.footer__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-top: 10px;
}
.footer__links p {
  font-family: var(--font-main);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-base);
  line-height: var(--line-height-tight);
  color: var(--color-black);
}
.footer__links a {
  color: var(--color-nav-inactive);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer__links a.is-active, .footer__links a:hover {
  color: var(--color-black);
}
.footer__links .footer__sep {
  color: var(--color-nav-inactive);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 85px;
  font-family: var(--font-ui);
  font-size: var(--font-size-ui);
  font-weight: var(--font-weight-base);
  line-height: 1;
  color: var(--color-black);
}
.footer__bottom a {
  color: var(--color-black);
  text-decoration: none;
}

.footer__logo {
  width: 100%;
  max-width: none;
}

@media (max-width: 768px) {
  .footer {
    padding: 50px 12px 12px;
  }
  .footer__logo {
    display: flex;
    justify-content: center;
    gap: 45px;
    margin-bottom: 0;
  }
  .footer__logo .logo__fragment {
    font-size: 13px;
  }
  .footer__links {
    grid-template-columns: 1fr;
  }
  .footer__links p,
  .footer__links a {
    font-size: 17px;
  }
  .footer__links {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .footer__bottom {
    margin-top: 0;
    font-size: 8px;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 8px;
    justify-content: space-between;
  }
}
body.home {
  padding-top: 0;
  background-color: var(--color-brown);
}

[data-page=home] #nav {
  display: none;
}

#home-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  pointer-events: none;
  z-index: 100;
  --hn-left-color: var(--color-white);
  --hn-right-color: var(--color-white);
}
#home-nav.is-ready {
  pointer-events: all;
}

.hn-bar {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: var(--spacing-24) var(--spacing-30);
}

.hn-left {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 15px;
  pointer-events: all;
}
.hn-left a {
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-base);
  color: var(--hn-left-color);
  text-decoration: none;
  transition: color var(--transition-base);
  position: relative;
}
.hn-left a::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--transition-fast);
}
.hn-left a:hover::after {
  width: 100%;
}
.hn-left a.nav-link--dim {
  color: var(--hn-left-color);
}

.hn-right {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  padding-bottom: 2px;
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  pointer-events: all;
}
.hn-right a {
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-base);
  color: var(--hn-right-color);
  text-decoration: none;
  transition: color var(--transition-base);
  position: relative;
}
.hn-right a::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--transition-fast);
}
.hn-right a:hover::after {
  width: 100%;
}
.hn-right a.nav-link--dim {
  color: var(--hn-right-color);
}

.hn-logo {
  flex: 0 0 auto;
  width: 16.666%;
  pointer-events: all;
  min-width: 240px;
}
.hn-logo .logo {
  display: flex;
  justify-content: space-between;
  width: 100%;
  text-decoration: none;
}
.hn-logo .logo__fragment {
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-base);
  text-transform: uppercase;
  white-space: pre;
  transition: color var(--transition-base);
}
.hn-logo .logo__fragment--left {
  color: var(--hn-left-color);
}
.hn-logo .logo__fragment--right {
  color: var(--hn-right-color);
}

.home-page {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  height: 100dvh;
  overflow: hidden;
}

.home-slider {
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  height: 100dvh;
  cursor: pointer;
}
.home-slider a {
  cursor: pointer;
}

.swiper-slide {
  width: 100%;
  height: 100%;
  display: flex !important;
  overflow: hidden;
}

.slide__col {
  position: relative;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
}

.slide--one-col .slide__col {
  flex: 1;
}

.slide__col--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slide__col--image.slide__col--svg {
  background-color: var(--color-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
}
.slide__col--image.slide__col--svg img {
  object-fit: contain;
  max-height: 70vh;
}

.slide__col--text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--spacing-30);
}
.slide__col--text.slide__col--dark {
  background-color: var(--color-brown);
  color: var(--color-white);
}
.slide__col--text.slide__col--dark .slide__text-inner h1,
.slide__col--text.slide__col--dark .slide__text-inner h2,
.slide__col--text.slide__col--dark .slide__text-inner h3,
.slide__col--text.slide__col--dark .slide__text-inner p {
  color: var(--color-white);
}
.slide__col--text.slide__col--dark .slide__link {
  color: var(--color-white);
}
.slide__col--text.slide__col--light {
  background-color: #e6e6e6;
  color: var(--color-black);
}
.slide__col--text.slide__col--light .slide__text-inner h1,
.slide__col--text.slide__col--light .slide__text-inner h2,
.slide__col--text.slide__col--light .slide__text-inner h3,
.slide__col--text.slide__col--light .slide__text-inner p {
  color: var(--color-black);
}
.slide__col--text.slide__col--light .slide__link {
  color: var(--color-black);
}

.slide__text-inner {
  padding-left: 16.666%;
  padding-right: var(--spacing-30);
  width: 100%;
}
.slide__text-inner h1,
.slide__text-inner h2,
.slide__text-inner h3 {
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-base);
  margin-bottom: 1em;
  text-transform: uppercase;
}
.slide__text-inner p {
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-base);
}
.slide__text-inner p:first-of-type {
  text-indent: 50%;
}
.slide__text-inner p + p {
  text-indent: 1em;
}
.slide__text-inner p:last-child {
  margin-bottom: 0;
}

.slide--two-col {
  display: flex;
}
.slide--two-col .slide__col {
  flex: 0 0 50%;
  width: 50%;
}

.slide__img-link {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  text-decoration: none;
  color: var(--color-white);
}
.slide__img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide__img-label {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-base);
  color: var(--color-white);
  pointer-events: none;
}
.slide__img-label::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.slide__img-link:hover .slide__img-label::after {
  transform: scaleX(1);
}

.slide__links {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}
.slide__links--white {
  color: var(--color-white);
}
.slide__links--black {
  color: var(--color-black);
}

.slide__link {
  position: relative;
  display: inline-block;
  font-family: var(--font-main);
  font-size: var(--font-size-ui);
  font-weight: var(--font-weight-base);
  color: inherit;
  text-decoration: none;
}
.slide__link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  border-bottom: 1px solid currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}
.slide__link:hover::after {
  transform: scaleX(1);
}

.home-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem 2rem;
  pointer-events: none;
}
.home-nav__col {
  display: flex;
  gap: 2rem;
  pointer-events: all;
}
.home-nav a {
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-base);
  color: var(--color-white);
  text-decoration: none;
  mix-blend-mode: difference;
}
.home-nav a:hover {
  opacity: 0.6;
}

.slide__counter {
  position: fixed;
  bottom: var(--spacing-30);
  right: var(--spacing-30);
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-base);
  color: var(--hn-right-color);
  transition: color var(--transition-base);
  z-index: 10;
  pointer-events: none;
}

@media (max-width: 768px) {
  .cover-grid--two .cover-grid__item:last-child {
    display: none;
  }
  .slide--two-col {
    flex-direction: column;
  }
  .slide--two-col .slide__col {
    flex: none;
    width: 100%;
    height: 50vh;
    height: calc(var(--vh, 1vh) * 50);
    height: 50dvh;
  }
  .slide__text-inner {
    padding-left: 8.3333333333%;
    padding-right: 8.3333333333%;
  }
  .hn-bar {
    padding: 12px;
  }
  .hn-left,
  .hn-right {
    display: none;
  }
  .hn-logo {
    flex: 1;
    margin-top: 9px;
  }
  .hn-logo .logo {
    justify-content: space-between;
    width: 200px;
    margin: 0 auto;
  }
  .hn-burger {
    display: flex !important;
    opacity: 0;
  }
  .hn-logo .logo__fragment--right {
    color: var(--hn-left-color);
  }
  #home-nav .hn-bar .hn-burger {
    color: var(--hn-left-color);
    transition: color var(--transition-base);
  }
  #home-nav.menu-open .hn-burger {
    color: var(--color-black);
  }
  #home-nav .mobile-panel__header {
    display: flex;
  }
  #home-nav .mobile-panel__link {
    color: var(--color-black);
  }
  #home-nav .mobile-panel .nav-link--dim {
    color: inherit;
  }
}
.slider-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 52px;
  height: 53px;
  pointer-events: none;
  z-index: 200;
  opacity: 0;
  color: var(--color-white);
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: opacity 0.15s ease, transform 0.25s ease;
}
.slider-cursor svg {
  width: 100%;
  height: 100%;
  display: block;
}
.slider-cursor.is-active {
  opacity: 1;
}
.slider-cursor.is-prev {
  transform: translate(-50%, -50%) scaleX(-1);
}

.home-slider.cursor-hidden {
  cursor: none;
}
.home-slider.cursor-hidden a {
  cursor: none;
}

@media (max-width: 640px) {
  .slide__counter {
    bottom: 12px;
    right: var(--spacing-sm);
  }
  body.home {
    height: 99vh;
    height: 99dvh;
  }
  .slide__links {
    bottom: 14px;
    left: var(--spacing-sm);
  }
  .slide_link {
    font-size: 9px;
  }
}
.projects-page {
  padding-top: 260px;
}
@media (min-width: 769px) {
  .projects-page {
    padding-bottom: 51px;
  }
}
.projects-page.is-list-view {
  padding-top: 0;
}
.projects-page.is-list-view .contextual-nav-anchor {
  display: none;
}

.projects__sticky-nav {
  position: static;
  z-index: 50;
  background: #eee;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  height: 44px;
}
@media (max-width: 768px) {
  .projects__sticky-nav {
    display: none;
  }
}

.projects__sticky-nav__right {
  display: flex;
  align-items: center;
  align-self: stretch;
  margin-left: auto;
  padding-left: 80px;
}
.projects__sticky-nav__right button {
  font-size: var(--font-size-base);
  color: var(--color-nav-inactive);
  transition: color var(--transition-fast);
  cursor: pointer;
}
.projects__sticky-nav__right button.is-active, .projects__sticky-nav__right button:hover {
  color: var(--color-black);
}
.projects__sticky-nav__right button:not(:last-child)::after {
  content: " |";
  color: var(--color-nav-inactive);
  margin-right: 8px;
}
.projects__sticky-nav__right.is-light button {
  color: rgba(255, 255, 255, 0.5);
}
.projects__sticky-nav__right.is-light button.is-active, .projects__sticky-nav__right.is-light button:hover {
  color: var(--color-white);
}
.projects__sticky-nav__right.is-light button:not(:last-child)::after {
  color: rgba(255, 255, 255, 0.5);
}

.projects__filter-anchor {
  position: sticky;
  bottom: 0;
  height: 0;
  overflow: visible;
  pointer-events: none;
  z-index: 150;
}
@media (max-width: 768px) {
  .projects__filter-anchor {
    display: none;
  }
}

.projects__filter-group {
  position: absolute;
  bottom: 23px;
  left: 30px;
  right: 30px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}

.projects__filter-btn {
  flex-shrink: 0;
  font-size: var(--font-size-base);
  padding: 3px 12px;
  background: var(--color-black);
  color: var(--color-white);
  border-radius: 5px;
  cursor: pointer;
  pointer-events: auto;
}

.projects__filter-panel {
  display: flex;
  align-items: center;
  height: auto;
  min-width: 0;
  gap: 0;
  pointer-events: auto;
}

.projects__filter-active-tags {
  display: flex;
  gap: 8px;
  min-width: 0;
  overflow: hidden;
  pointer-events: auto;
}

.filter-active-tag {
  flex-shrink: 0;
  font-size: var(--font-size-base);
  padding: 3px 12px;
  border-radius: 5px;
  background: var(--color-black);
  color: var(--color-white);
  cursor: pointer;
  white-space: nowrap;
  transition: opacity var(--transition-fast);
}
.filter-active-tag:hover {
  opacity: 0.6;
}

.projects__filter-scroll {
  display: flex;
  gap: 3px;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
  cursor: grab;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  --mask-left: black;
  --mask-right: black;
  mask-image: linear-gradient(to right, var(--mask-left), black 28px, black calc(100% - 28px), var(--mask-right));
  -webkit-mask-image: linear-gradient(to right, var(--mask-left), black 28px, black calc(100% - 28px), var(--mask-right));
}
.projects__filter-scroll::-webkit-scrollbar {
  display: none;
}
.projects__filter-scroll.is-dragging {
  cursor: grabbing;
}
.projects__filter-scroll button {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: var(--font-size-base);
  padding: 3px 9px;
  border-radius: 5px;
  background: white;
  transition: all var(--transition-fast);
  order: 1;
}
.projects__filter-scroll button.filter-all-btn {
  order: -1;
}
.projects__filter-scroll button.is-active {
  order: 0;
  background: var(--color-black);
  color: var(--color-white);
}
.projects__filter-scroll button:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.projects__filter-panel:has(.projects__filter-arrow--prev.is-visible) .projects__filter-scroll {
  --mask-left: transparent;
}

.projects__filter-panel:has(.projects__filter-arrow--next.is-visible) .projects__filter-scroll {
  --mask-right: transparent;
}

.projects__filter-arrow {
  flex-shrink: 0;
  font-size: var(--font-size-base);
  color: var(--color-black);
  opacity: 0;
  width: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity var(--transition-fast), width var(--transition-fast);
}
.projects__filter-arrow.is-visible {
  opacity: 1;
  width: auto;
  overflow: visible;
  pointer-events: auto;
}

.proj-fp-enter {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.proj-fp-leave {
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.proj-fp-from {
  opacity: 0;
  transform: translateX(-6px);
}

.proj-fp-to {
  opacity: 1;
  transform: translateX(0);
}

.projects__header {
  padding: var(--spacing-lg) 30px var(--spacing-md);
}
.projects__header h1 {
  font-family: var(--font-display);
  font-size: var(--font-main);
  font-weight: 500;
}

.projects__list {
  margin-top: 0px;
}

.projects__grid {
  padding: var(--spacing-md) 30px;
  padding-bottom: 4rem;
  min-height: 100vh;
  padding-top: 8px;
}

.projects__grid-inner {
  display: grid;
  grid-template-columns: 22% 22% 22%;
  justify-content: space-between;
  gap: 12vh 0;
}

.project-card {
  align-self: start;
  transition: opacity var(--transition-base);
}
.project-card.is-dimmed {
  opacity: 0.25;
}
.project-card.is-dimmed .project-card__inner:hover {
  opacity: 1;
}
.project-card.is-dimmed .project-card__inner img {
  filter: grayscale(1);
}
.project-card.is-dimmed .project-card__inner:hover img {
  filter: grayscale(0);
}

.project-card__inner a {
  display: block;
  overflow: hidden;
}
.project-card__inner img {
  width: 100%;
  height: auto;
  display: block;
  transition: filter var(--transition-base);
}

.project-card__caption {
  display: flex;
  flex-wrap: wrap;
  padding: var(--spacing-xs) 0;
  font-size: var(--font-size-ui);
  font-weight: var(--font-weight-base);
  line-height: var(--line-height-tight);
  color: var(--color-black);
  transition: opacity var(--transition-base);
  padding-top: 5px;
}
.project-card__caption :is(span, em):not(:last-child)::after {
  content: ", ";
}

@media (min-width: 769px) {
  .project-card__inner:hover .project-card__caption {
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .project-card__caption {
    gap: 0;
    padding-top: 5px;
    padding-left: 0;
    padding-right: 0;
    font-family: var(--font-main);
    font-size: 9px;
    color: var(--color-black);
  }
}
@media (max-width: 1380px) {
  .projects__grid-inner {
    grid-template-columns: 25% 25% 25%;
  }
}
@media (max-width: 1080px) {
  .projects__grid-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 10vh 4vw;
  }
}
@media (max-width: 768px) {
  .projects__grid-inner {
    grid-template-columns: 1fr;
  }
  .projects__list {
    height: auto;
    min-height: 100vh;
    padding-top: 60px;
  }
  .projects__list-pictures {
    display: none;
  }
  .projects__list-items {
    padding-top: 0;
    overflow-y: visible;
  }
  .project-row {
    padding: 0;
  }
  .project-row a {
    display: flex;
    padding: 4px 12px;
    width: 100%;
  }
  .project-row.is-active a .project-row__title,
  .project-row.is-active a .project-row__location {
    font-style: italic;
  }
  .project-row__title,
  .project-row__location {
    font-size: clamp(17px, 2vw, 19px);
    width: 50%;
  }
}
@media (max-width: 640px) {
  .projects__controls {
    flex-wrap: wrap;
    gap: var(--spacing-sm);
  }
}
.project-tooltip {
  position: fixed;
  pointer-events: none;
  z-index: var(--z-overlay);
  text-align: center;
  background: transparent;
}

@media (pointer: coarse) {
  .project-tooltip {
    display: none !important;
  }
}
.project-tooltip__title {
  display: block;
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  line-height: 1em;
}

.project-tooltip__location {
  display: block;
  font-size: var(--font-size-base);
}

.project-tooltip__categories {
  display: block;
  font-size: var(--font-size-base);
}
.project-tooltip__categories em {
  font-style: italic;
}
.project-tooltip__categories em:not(:last-child)::after {
  content: ", ";
  font-style: normal;
}

.projects__list {
  display: flex;
  height: 100vh;
}

.projects__list-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
}

.projects__list-items {
  overflow-y: auto;
  padding-top: 75px;
}

.project-row {
  transition: opacity var(--transition-base);
  padding: 0 30px;
}
.project-row.is-dimmed {
  opacity: 0.2;
}
.project-row.is-dimmed:hover {
  opacity: 1;
}
.project-row a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0;
  gap: 1em;
}
.project-row a:hover {
  font-style: italic;
}

.project-row__title,
.project-row__location {
  width: 50%;
  font-size: clamp(16px, 1.4vw + 10.8px, 31px);
  overflow: hidden;
  display: block;
}

.project-row__title {
  font-family: var(--font-display);
}

.project-row__location {
  color: var(--color-black);
}

.scroll-text__inner {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
}

.projects__list-pictures {
  position: relative;
  overflow: hidden;
}

.projects__list-picture {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.projects__list-picture.is-active {
  opacity: 1;
}
.projects__list-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 769px) and (max-width: 1320px) {
  .projects__list-panel {
    grid-template-columns: 3fr 2fr;
  }
}
@media (max-width: 768px) {
  .projects-page {
    padding-top: 0;
  }
  .projects__grid {
    padding: 12px;
    min-height: 100vh;
    padding-top: 37px;
  }
  .projects__grid-inner {
    gap: 12px 4px;
  }
  .projects__grid-inner.has-filter {
    grid-template-columns: 1fr 1fr;
  }
  .projects__list-panel {
    display: block;
  }
  .project-row {
    padding: 0 12px;
  }
  .projects__list-items {
    padding-top: 0;
  }
}
.project-page {
  padding-top: 0;
}

[data-page=project] #nav.nav--cover-light:not(.nav--contextual-active) .nav__link {
  color: var(--color-white);
}
[data-page=project] #nav.nav--cover-light:not(.nav--contextual-active) .nav__link.nav-link--dim {
  color: var(--color-white);
}
[data-page=project] #nav.nav--cover-light:not(.nav--contextual-active) .logo {
  color: var(--color-white);
}

.cover-mobile-logo {
  display: none;
}

.section--cover {
  position: relative;
  height: calc(100vh - 70px);
  overflow: hidden;
}

.cover-grid {
  height: 100%;
}
.cover-grid--two {
  display: flex;
}
.cover-grid__item {
  flex: 1;
  height: 100%;
  overflow: hidden;
}
.cover-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cover__info {
  display: flex;
  align-items: center;
  gap: 0;
  padding: var(--spacing-24) var(--spacing-30);
  background: transparent;
  font-size: var(--font-size-base);
}
.cover__info span + span::before,
.cover__info span + em::before,
.cover__info em + em::before {
  content: ", ";
}

.cover-scroll-arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--color-black);
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: var(--spacing-md);
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  overflow: hidden;
}
.scroll-indicator__line {
  display: block;
  width: 1px;
  height: 100%;
  background-color: #eeeeee;
  transform: translateY(-100%);
  animation: scroll-line 1.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scroll-line {
  0% {
    transform: translateY(-100%);
    opacity: 1;
  }
  60% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}
.section--intro {
  display: grid;
  min-height: 100vh;
  scroll-margin-top: 67px;
  padding: var(--spacing-xl) var(--spacing-md);
  background-color: #eeeeee;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
}
.section--intro .intro__content {
  gap: var(--spacing-md);
}
.section--intro .intro__label {
  font-size: var(--font-size-base);
  color: var(--color-black);
  text-transform: uppercase;
  width: 50%;
  display: inline-block;
}

.section--content {
  background-color: #eeeeee;
}

.layout-row {
  display: flex;
}
.layout-row--1col .layout-col {
  max-height: none;
  flex: 1;
}
.layout-row--1col .layout-col .block-image--fit {
  --fit-w: 66.666%;
}
.layout-row--1col:has(.block-image--fit) {
  overflow: hidden;
}
.layout-row--1col:has(.block-image--fit.block-image--portrait) .layout-col {
  height: 100%;
  max-height: none;
}
.layout-row--1col:has(.block-image--fit.block-image--portrait) .block-image--fit {
  --fit-w: 33.333%;
  height: auto;
}
.layout-row--1col:has(.block-image--fit.block-image--portrait) .block-image--fit picture {
  width: 100%;
}
.layout-row--1col:has(.block-image--fit.block-image--portrait) .block-image--fit img {
  height: auto;
  width: 100%;
}
.layout-row--2col .layout-col {
  flex: 0 0 50%;
  width: 50%;
}
.layout-row:has(.block-image--fit) .layout-col {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 100vh;
  max-height: 100dvh;
}

.layout-row--1col .block-text.section--text {
  align-items: center;
  min-height: 80vh;
  min-height: 80dvh;
}
.layout-row--1col .block-text.section--text .prose--editorial {
  width: 50%;
  max-width: 900px;
  padding-left: 0;
  padding-right: 0;
}

.layout-col {
  min-width: 0;
}

.layout-col--fill {
  max-height: 100vh;
  max-height: 100dvh;
}
.layout-col--fill .block-image--fill {
  height: 100%;
}
.layout-col--fill .block-image--fill picture {
  display: block;
  height: 100%;
}
.layout-col--fill .block-image--fill img {
  height: 100%;
}

.block-image {
  margin: 0;
  width: 100%;
}
.block-image figure {
  width: 100%;
}
.block-image--fill {
  position: relative;
}
.block-image--fill img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.block-image--fill .content__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--spacing-sm);
  color: var(--color-white);
}
.layout-row--2col .block-image--fill img {
  height: 100%;
  width: 100%;
}
.block-image--fit {
  --fit-pad: clamp(80px, 15vh, 180px);
  --fit-w: 66.666%;
  --fit-cap: 0px;
  --fit-max-h: calc(100dvh - var(--fit-pad) * 2 - var(--fit-cap));
  padding: var(--fit-pad) 0;
  width: min(var(--fit-w), var(--fit-max-h) * var(--img-ratio, 1.5));
  display: flex;
  flex-direction: column;
  align-items: center;
}
.block-image--fit:has(.content__caption) {
  --fit-cap: 2em;
}
.block-image--fit picture {
  display: block;
  width: 100%;
}
.block-image--fit img {
  display: block;
  width: 100%;
  height: auto;
  max-height: var(--fit-max-h);
}
.block-image--fit .content__caption {
  width: 100%;
  margin-top: 5px;
  padding: 0;
  color: var(--color-black);
}
.block-image--margin {
  padding: 0 var(--spacing-xl);
}

.content__caption {
  padding: var(--spacing-xs) var(--spacing-md);
  font-family: var(--font-ui);
  font-size: var(--font-size-ui);
  font-weight: var(--font-weight-base);
  line-height: var(--line-height-tight);
  color: var(--color-black);
}

.block-text.section--text {
  padding: var(--spacing-md);
  height: 100%;
  font-size: var(--font-size-base);
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.block-text.section--text h2 {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-base);
  text-transform: uppercase;
  margin-bottom: 1em;
}
.block-text.section--text .prose--editorial {
  padding-left: 16.666%;
  padding-right: var(--spacing-30);
  width: 100%;
}
.block-text.section--text .prose--editorial h2 + p,
.block-text.section--text .prose--editorial h3 + p,
.block-text.section--text .prose--editorial h4 + p {
  text-indent: 50%;
}
.block-text.section--text .prose--editorial p {
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-base);
}
.block-text.section--text .prose--editorial p + p {
  text-indent: 1em;
}
.block-text.section--text .prose--editorial p:last-child {
  margin-bottom: 0;
}
.block-text.section--text.block-text--dark {
  background-color: var(--color-brown);
  color: var(--color-white);
}
.block-text.section--text.block-text--dark h2 {
  color: var(--color-white);
}
.block-text.section--text.block-text--light {
  background-color: #eeeeee;
  color: var(--color-black);
}
.block-text.section--text.block-text--light h2 {
  color: var(--color-black);
}

.block-quote.section--text {
  padding: var(--spacing-md);
  height: 100%;
  font-size: var(--font-size-base);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.block-quote.section--text .prose {
  width: 66.666%;
  text-align: center;
  font-size: var(--font-size-xl);
}
.block-quote.section--text__author {
  margin-top: var(--spacing-24);
  font-size: var(--font-size-ui);
  font-weight: var(--font-weight-base);
  text-align: center;
}
.block-quote.section--text .block-quote__author {
  font-size: var(--font-size-ui);
  font-weight: var(--font-weight-base);
  text-align: center;
}
.block-quote.section--text--light {
  background-color: #eeeeee;
  color: var(--color-black);
}
.block-quote.section--text--light .block-quote__author {
  color: rgba(var(--color-black), 0.4);
}
.block-quote.section--text p.block-quote__author {
  margin-top: 1em;
}
.block-quote.section--text--dark {
  background-color: var(--color-brown);
  color: var(--color-white);
}
.block-quote.section--text--dark .block-quote__author {
  color: rgba(var(--color-white), 0.5);
}

.block-image-text.section--image-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
}
.block-image-text.section--image-text .image-text__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.block-image-text.section--image-text .image-text__body {
  display: flex;
  align-items: center;
  padding: var(--spacing-xl) var(--spacing-lg);
}

.section--specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  padding: 1.5rem 0;
  width: 50%;
  max-width: 900px;
}
.section--specs .specs__details.prose {
  font-size: var(--font-size-base);
  line-height: var(--line-height-loose);
}
.section--specs .specs__links {
  display: flex;
  flex-direction: column;
}
.section--specs .specs__links a {
  font-size: var(--font-size-base);
  text-decoration: none;
  color: var(--color-black);
}
.section--specs .specs__links a:hover {
  opacity: 0.6;
}

.section--dimensions {
  padding: 24px 30px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(50% - 60px);
  font-family: var(--font-ui);
  font-size: var(--font-size-ui);
}

.dim-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 2px;
  margin-bottom: 8px;
}

.dim-tabs__sep {
  color: var(--color-nav-inactive);
}

.dim-tabs__btn {
  text-transform: uppercase;
  color: var(--color-nav-inactive);
  transition: color var(--transition-fast);
}
.dim-tabs__btn.is-active, .dim-tabs__btn:hover {
  color: var(--color-black);
}

.dim-enter {
  transition: opacity 0.2s ease;
}

.dim-from {
  opacity: 0;
}

.dim-to {
  opacity: 1;
}

.dim-body__item {
  font-family: var(--font-ui);
  font-size: var(--font-size-ui);
}

.section--related {
  padding: var(--spacing-xl) var(--spacing-30);
  padding-bottom: var(--spacing-lg);
  background-color: #eeeeee;
}

.related__heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--spacing-lg);
}
.related__heading h2 {
  font-size: var(--font-size-base);
}
.related__heading a {
  font-size: var(--font-size-base);
}

.related__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.related-card {
  display: block;
}
.related-card:nth-child(1) {
  grid-column: 2/4;
}
.related-card:nth-child(2) {
  grid-column: 6/8;
}
.related-card:nth-child(3) {
  grid-column: 10/12;
}
.related-card img {
  width: 100%;
  aspect-ratio: 7/9;
  object-fit: cover;
  display: block;
}

.related-card__img {
  overflow: hidden;
}

.related-card__caption {
  display: inline;
  padding: var(--spacing-xs) 0;
  padding-top: 5px;
  font-size: var(--font-size-ui);
  font-weight: var(--font-weight-base);
  line-height: var(--line-height-tight);
  color: var(--color-black);
  transition: opacity var(--transition-base);
  display: inline-block;
  line-height: 1.2;
}
.related-card__caption :is(span, em):not(:last-child)::after {
  content: ", ";
}

@media (min-width: 769px) {
  .related-card:hover .related-card__caption {
    opacity: 0;
  }
}
.related-card__meta {
  padding: var(--spacing-xs) 0;
}
.related-card__meta span {
  display: block;
}
.related-card__meta span:first-child {
  font-family: var(--font-display);
  font-size: var(--font-size-base);
  margin-bottom: 2px;
}
.related-card__meta span:last-child {
  font-size: var(--font-size-base);
  color: var(--color-black);
}

@media (max-width: 1024px) {
  .section--intro {
    grid-template-columns: 1fr;
  }
  .section--intro .intro__content {
    grid-column: 1;
  }
  .layout-row--2col .layout-col {
    width: 100%;
  }
  .layout-row--2col {
    flex-direction: column;
  }
  .related__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }
  .related-card:nth-child(1),
  .related-card:nth-child(2),
  .related-card:nth-child(3) {
    grid-column: auto;
  }
  .section--text {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .section--image-text {
    grid-template-columns: 1fr;
  }
  .section--image-text .image-text__image {
    min-height: 50vh;
  }
}
@media (max-width: 768px) {
  .cover__info {
    display: none;
  }
  .section--related,
  .section--specs,
  .section--dimensions {
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 14px;
  }
  .section--related {
    padding-bottom: 0;
  }
  .related__heading {
    margin-bottom: var(--spacing-sm);
  }
  [data-page=project] .related__grid {
    --related-card-w: 46.3vw;
    display: flex;
    gap: 4px;
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 12px;
    padding-right: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 12px;
    scroll-padding-right: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  [data-page=project] .related__grid::-webkit-scrollbar {
    display: none;
  }
  [data-page=project] .related-card {
    flex: 0 0 var(--related-card-w);
    scroll-snap-align: center;
  }
  [data-page=project] .related-card:first-child {
    scroll-snap-align: start;
  }
  [data-page=project] .related-card:last-child {
    scroll-snap-align: end;
  }
  [data-page=project] .related-card__caption {
    opacity: 0;
    transition: opacity var(--transition-base);
  }
  [data-page=project] .related-card.is-active .related-card__caption {
    opacity: 1;
  }
  .section--intro {
    padding-left: 12.5%;
    padding-right: 12.5%;
    min-height: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    grid-template-columns: 1fr;
  }
  .section--intro .prose {
    font-size: 1.25rem;
  }
  .block-text.section--text {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
}
.nav__project-info {
  gap: 0;
}

@media (max-width: 768px) {
  .section--cover {
    height: calc(100vh - 40px);
    height: calc(var(--vh, 1vh) * 100 - 40px);
    height: calc(100dvh - 40px);
  }
  [data-page=project] .cover-mobile-logo {
    display: block;
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: calc(var(--z-nav) + 5);
    color: var(--color-white);
    text-decoration: none;
    pointer-events: none;
  }
  [data-page=project] .cover-mobile-logo--dark {
    color: var(--color-black);
  }
  [data-page=project] .cover-mobile-logo__inner {
    display: flex;
    justify-content: center;
    gap: 30px;
    pointer-events: auto;
  }
  [data-page=project] .cover-mobile-logo .logo__fragment {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: var(--font-weight-base);
    text-transform: uppercase;
    white-space: pre;
    text-align: center;
  }
  [data-page=project] #nav.nav--cover-light:not(.nav--contextual-active) ~ .nav__burger {
    color: var(--color-white);
  }
  [data-page=project] #nav.menu-open ~ .nav__burger {
    color: var(--color-black);
  }
  [data-page=project] .mobile-topbar {
    color: var(--color-black);
  }
  [data-page=project] .nav__contextual-right {
    display: none;
  }
  [data-page=project] .block-image--fill img {
    width: 100%;
    height: auto;
    object-fit: unset;
  }
  [data-page=project] .block-image--fit,
  [data-page=project] .block-image--margin {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  [data-page=project] .block-image--fit picture,
  [data-page=project] .block-image--margin picture {
    width: 75%;
  }
  [data-page=project] .block-image--fit img,
  [data-page=project] .block-image--margin img {
    width: 100%;
    height: auto;
    max-height: none;
  }
  [data-page=project] .block-image--fill.block-image--after-fill {
    margin-top: 30px;
  }
  [data-page=project] .block-image--fit.block-image--after-fit {
    padding-top: 0;
  }
  [data-page=project] .layout-row--1col .layout-col .block-image--fit,
  [data-page=project] .layout-row--1col:has(.block-image--fit.block-image--portrait) .block-image--fit {
    width: 75%;
  }
  [data-page=project] .layout-row--1col .layout-col .block-image--fit picture,
  [data-page=project] .layout-row--1col:has(.block-image--fit.block-image--portrait) .block-image--fit picture {
    width: 100%;
  }
  .block-quote.section--text {
    padding: 100px 12.5%;
  }
  [data-page=project] .block-text.section--text {
    min-height: 0;
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 0;
    padding-right: 0;
  }
  [data-page=project] .block-text.section--text .prose {
    width: 75%;
    text-align: left;
    margin: 0 auto;
  }
  [data-page=project] .block-text.section--text .prose--editorial {
    padding-left: 0;
    padding-right: 0;
  }
  [data-page=project] .content__caption {
    font-size: 13px;
  }
  .block-quote.section--text p.block-quote__author {
    margin-top: 0;
  }
  .prose-intro {
    width: 100%;
  }
  .intro__label {
    margin-bottom: 1em;
    display: block;
    width: 50%;
  }
  .block-image--fit {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .section--dimensions {
    position: static;
    align-self: stretch;
    width: auto;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    font-size: 13px;
  }
  .dim-body__item {
    font-size: 13px;
  }
  .dim-tabs__btn {
    font-size: 13px;
  }
  .section--specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    padding: 1.5rem 0;
    width: 100%;
    max-width: 900px;
    padding-left: 0;
    padding-right: 0;
  }
  .section--dimensions .prose {
    font-size: 1em;
  }
  .dim-body__item,
  .dim-tabs__btn {
    font-size: 10px;
  }
}
@media (min-width: 1991px) {
  .block-text.section--text .prose--editorial {
    padding-left: 16.666%;
    padding-right: 16.666%;
    width: 100%;
  }
  .block-text.section--text .prose--editorial p {
    max-width: 900px;
  }
}
.studio-page {
  display: flex;
  align-items: flex-start;
}

.studio__scroll-content {
  flex: 0 0 50%;
  width: 50%;
}

.studio__images-sticky {
  flex: 0 0 50%;
  width: 50%;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.studio__sticky-image {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.studio__sticky-image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.studio__sticky-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.studio__sticky-image[data-section=services] {
  background-color: var(--color-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
}
.studio__sticky-image[data-section=services] picture {
  height: auto;
  max-height: 100%;
}
.studio__sticky-image[data-section=services] img {
  object-fit: contain;
  height: auto;
  max-height: 70vh;
}

@media (min-width: 769px) {
  html:has(.studio-page) {
    scroll-snap-type: y proximity;
    scroll-padding-top: var(--header-h, 0px);
  }
  html:has(.studio-page) .footer {
    scroll-snap-align: start;
  }
}
.studio__section {
  min-height: 100vh;
}
@media (min-width: 769px) {
  .studio__section {
    scroll-snap-align: start;
  }
}

.studio__section-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: var(--spacing-xl) 0;
  min-height: 100vh;
  width: 66.666%;
  margin: 0 auto;
}
.studio__section-text--centered {
  justify-content: center;
  text-align: left;
}
.studio__section-text--team {
  justify-content: center;
  align-items: center;
}

@media (min-width: 769px) {
  .studio__scroll-content > .studio__section:first-child {
    min-height: calc(100vh - var(--nav-global-h));
  }
  .studio__scroll-content > .studio__section:first-child .studio__section-text {
    min-height: calc(100vh - var(--nav-global-h));
  }
}
#our-values .studio__section-body p:first-of-type {
  text-indent: 2em;
}

.section-values h3 {
  text-transform: uppercase;
}
.section-values .studio__section-body p:first-of-type {
  text-indent: 50%;
}
.section-values .studio__section-body p {
  text-indent: 2em;
}

.studio__intro-logo {
  display: flex;
  font-weight: 500;
  color: #000;
  margin: 0 auto;
  margin-bottom: 150px;
  justify-content: space-between;
}

.studio__section-label {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-base);
}

.studio__section-body.prose {
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
}
.studio__section-body--center {
  text-align: center;
}

.studio__intro-logo {
  display: flex;
  gap: 0.5em;
  font-family: var(--font-main);
  font-weight: var(--font-weight-base);
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--color-black);
}

.logo__fragment {
  display: block;
}

#services {
  text-align: left;
}
#services .studio__section-label {
  text-align: center;
}
#services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#services ul li {
  display: inline;
  font-size: var(--font-size-base);
}
#services ul li p {
  display: inline;
}
#services ul li:not(:last-child)::after {
  content: " | ";
}

#contact {
  text-align: center;
}
#contact .studio__section-body.prose {
  font-size: var(--font-size-xl);
}
#contact .studio__section-body.prose p + p {
  margin-top: 1em;
}

#opportunities .studio__section-text {
  width: 100%;
  align-items: center;
  gap: 0;
  padding: 24px 30px;
}
#opportunities .studio__section-label {
  text-align: center;
  margin-bottom: 1rem;
}

#our-team {
  position: relative;
}

.studio__founders.prose, .studio__team-members.prose {
  font-family: var(--font-main);
  font-size: var(--font-size-xl);
  text-align: center;
}

.studio__founders.prose {
  margin-bottom: 29px;
}

#founder-bio h3 + p {
  margin-top: 1em;
}
#founder-bio p {
  margin-bottom: 0;
}
#founder-bio p + h3 {
  margin-top: 1.7em;
}

.footer-teams {
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 100%;
  padding: 24px 30px;
  font-size: var(--font-size-xl);
  z-index: 2;
}

.opp-accordion {
  width: 100%;
  border-top: 1px solid var(--color-nav-inactive);
  margin-top: 0;
}

.opp-accordion__item {
  border-bottom: 1px solid var(--color-nav-inactive);
}

.opp-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 9px 0;
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-base);
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.opp-accordion__title {
  flex: 1;
  text-align: center;
  font-size: var(--font-size-xl);
}

.opp-accordion__icon {
  flex-shrink: 0;
  position: relative;
  width: 14px;
  height: 14px;
  transition: transform var(--transition-base);
}
.opp-accordion__icon::before, .opp-accordion__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
}
.opp-accordion__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
}
.opp-accordion__icon::after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
}
.opp-accordion__icon.is-open {
  transform: rotate(45deg);
}

.opp-accordion__body {
  width: 66.666%;
  margin: 0 auto;
  padding-bottom: 1.5em;
  font-size: var(--font-size-base);
  margin-top: 9px;
}
.opp-accordion__body h1, .opp-accordion__body h2, .opp-accordion__body h3, .opp-accordion__body h4 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}
.opp-accordion__body h1 + p, .opp-accordion__body h2 + p, .opp-accordion__body h3 + p, .opp-accordion__body h4 + p {
  text-indent: 50%;
}
.opp-accordion__body ul, .opp-accordion__body ol {
  margin: 1em 0;
  padding-left: 1.4em;
}
.opp-accordion__body ul {
  list-style: disc;
}
.opp-accordion__body ol {
  list-style: decimal;
}
.opp-accordion__body li + li {
  margin-top: 0.25em;
}

.opp-enter {
  transition: opacity 0.25s ease;
}

.opp-leave {
  transition: opacity 0.2s ease;
}

.opp-from {
  opacity: 0;
}

.opp-to {
  opacity: 1;
}

.studio__section-image {
  display: none;
}

@media (max-width: 768px) {
  .studio__layout {
    grid-template-columns: 1fr;
  }
  .studio__column--image {
    display: none;
  }
  .studio__section,
  .studio__services,
  .studio__team {
    padding-top: var(--spacing-xl);
  }
  .studio-page {
    flex-direction: column;
  }
  .studio__scroll-content {
    flex: none;
    width: 100%;
  }
  .studio__images-sticky {
    flex: none;
    width: 100%;
    position: relative;
    height: auto;
    overflow: visible;
  }
  .studio__sticky-image {
    position: relative;
    inset: auto;
    transform: none !important;
    height: 60vw;
  }
  .studio__sticky-image:not(.is-active) {
    display: none;
  }
}
@media (max-width: 768px) {
  .studio__images-sticky {
    display: none;
  }
  .studio__section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  .studio__section-text {
    width: 100%;
    min-height: 530px;
    padding: 40px 12.5% 40px;
  }
  .studio__section-image {
    display: block;
    width: 100%;
    flex-shrink: 0;
  }
  .studio__section-image picture {
    display: block;
    width: 100%;
  }
  .studio__section-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  .studio__intro-logo {
    font-size: clamp(1.2rem, 6vw, 2rem);
    margin-bottom: 60px;
    width: 200px;
  }
  .studio__sticky-image[data-section=services] {
    aspect-ratio: 3/2;
    height: auto;
  }
  #our-values .studio__section-text {
    min-height: 100vh;
  }
  #services .studio__section-text {
    text-align: center;
    align-items: center;
  }
  #services .studio__section-image {
    min-height: 600px;
    padding-top: 40px;
    padding-bottom: 40px;
    background: var(--color-brown);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  * #our-team .studio__section-text {
    text-align: center;
    align-items: center;
  }
  .studio__section,
  .studio__services,
  .studio__team {
    padding-top: 0;
  }
  .footer-teams {
    position: static;
    padding: 20px 12px;
  }
  .opp-accordion__body {
    width: 75%;
  }
}
.press-page,
.ideas-page,
.error-page,
.default-page {
  padding-top: 300px;
  padding-bottom: var(--spacing-2xl);
  min-height: 100vh;
}

@media (max-width: 768px) {
  .press-page,
  .ideas-page,
  .error-page,
  .default-page {
    padding-top: var(--nav-height-total);
    padding-bottom: 0;
  }
}
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-xl) var(--spacing-md);
}
.page-content h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  margin-bottom: var(--spacing-lg);
}
.page-content .prose {
  font-size: 1.25rem;
  line-height: var(--line-height-loose);
}

.legal-page {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 300px;
  min-height: 100vh;
}

.legal-page > .sr-only {
  top: 0;
  left: 0;
}

.legal__col {
  flex: 0 0 50%;
  width: 50%;
  padding: var(--spacing-30);
}

@media (min-width: 1301px) {
  .legal__col {
    flex: 0 0 25%;
    width: 25%;
    margin-right: 25%;
  }
}
@media (max-width: 768px) {
  .legal-page {
    display: block;
    padding-top: var(--nav-height-total);
    min-height: 0;
  }
  .legal__col {
    width: 100%;
    padding: var(--spacing-30);
  }
}
.legal__entry {
  margin-bottom: 40px;
}
.legal__entry:last-child {
  margin-bottom: 0;
}

.legal__entry-title {
  font-size: var(--font-size-ui);
  font-weight: var(--font-weight-base);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.legal__entry .prose {
  font-size: var(--font-size-base);
  text-align: left;
}
.legal__entry .prose p:first-of-type {
  text-indent: 0;
}

@media (min-width: 769px) {
  [data-page=legal] .nav__row--contextual {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(300px + var(--spacing-30));
    padding-bottom: 0;
    pointer-events: none;
    transition: transform 0.3s ease;
  }
  [data-page=legal] .nav--scrolled .nav__row--contextual {
    transform: translateY(calc(var(--nav-global-h) - 67px));
  }
}
.error-page {
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--spacing-md);
}
.error-page .error__code {
  font-size: var(--font-size-ui);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.error-page .error__title {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-base);
}
.error-page .prose {
  font-size: var(--font-size-base);
}

.articles-page {
  padding-top: 50px;
}

.articles__grid {
  padding: var(--spacing-md) 30px;
  min-height: 100vh;
}

.articles__grid-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vh 4%;
}

.article-card {
  cursor: pointer;
  transition: opacity var(--transition-base);
}
.article-card.is-dimmed {
  opacity: 0.2;
}
.article-card.is-dimmed:hover {
  opacity: 1;
}
.article-card__image {
  overflow: hidden;
}
.article-card__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}
.article-card:hover .article-card__image img {
  transform: scale(1.03);
}

.article-card__caption {
  display: none;
}

.article-tooltip {
  position: fixed;
  pointer-events: none;
  z-index: var(--z-overlay);
  text-align: center;
}

.article-tooltip__date {
  display: block;
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  line-height: 1em;
}

.article-tooltip__title {
  display: block;
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  line-height: 1em;
}

.article-tooltip__categories {
  display: block;
  font-size: var(--font-size-base);
}
.article-tooltip__categories em {
  font-style: italic;
}
.article-tooltip__categories em:not(:last-child)::after {
  content: ", ";
  font-style: normal;
}

.articles-overlay {
  position: fixed;
  inset: 0;
  background: rgba(240, 240, 240, 0.9);
  z-index: var(--z-overlay);
  display: flex;
  overscroll-behavior: contain;
}
.articles-overlay__visual {
  position: relative;
  width: 50%;
  flex-shrink: 0;
  overflow: hidden;
}
@media (min-width: 769px) {
  .articles-overlay__visual {
    cursor: pointer;
  }
}
.articles-overlay__visual-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  pointer-events: none;
}
.articles-overlay__visual-headline {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  gap: 0.1em;
  padding: 2rem;
}
.articles-overlay__visual-headline p {
  margin: 0;
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  line-height: 1;
}
.articles-overlay__panel {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  position: relative;
}
.articles-overlay__section-label {
  position: fixed;
  top: 23px;
  left: 31px;
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  color: var(--color-black);
  z-index: var(--z-overlay)1;
  line-height: 1;
}
@media (max-width: 768px) {
  .articles-overlay__section-label {
    display: none;
  }
}
.articles-overlay__close {
  position: fixed;
  top: 23px;
  right: 23px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: var(--font-weight-base);
  color: var(--color-black);
  z-index: var(--z-overlay)1;
  line-height: 1;
}
.articles-overlay__close:hover {
  opacity: 0.5;
}
.articles-overlay__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  font-family: var(--font-ui);
  font-size: var(--font-size-base);
  color: var(--color-black);
}

.art-ov-enter {
  transition: opacity 0.3s ease;
}

.art-ov-from {
  opacity: 0;
}

.art-ov-to {
  opacity: 1;
}

.art-ov-leave {
  transition: opacity 0.2s ease;
}

.art-ov-leave-from {
  opacity: 1;
}

.art-ov-leave-to {
  opacity: 0;
}

body.articles-overlay-open {
  overflow: hidden;
}

.article-single hr {
  display: none;
}
.article-single .gallery li + li {
  margin-top: 30px;
}
.article-single h2 + .text-block > p:first-child {
  text-indent: 50%;
}
.article-single__body ul,
.article-single__body ol, .article-single__blocks .text-block ul,
.article-single__blocks .text-block ol {
  padding-left: 1.5em;
}
.article-single__body ul, .article-single__blocks .text-block ul {
  list-style: disc;
}
.article-single__body ol, .article-single__blocks .text-block ol {
  list-style: decimal;
}
.article-single li p,
.article-single li p + p {
  text-indent: 0;
}
.article-single h2 + .img-block {
  margin-top: 1rem;
}
.article-single__body a, .article-single__blocks .text-block a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.articles-overlay__panel .article-single {
  padding-top: 30px;
  padding-bottom: 6rem;
}
.articles-overlay__panel .article-single__cover {
  margin-left: 15.6%;
  width: 71%;
  margin-bottom: 0;
}
.articles-overlay__panel .article-single__cover img {
  width: 100%;
  height: auto;
  display: block;
}
.articles-overlay__panel .article-single__headline {
  display: none;
}
.articles-overlay__panel .article-single__blocks :is(h1, h2, h3, h4, h5, h6) {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 13px;
  padding-right: 13px;
}
.articles-overlay__panel .article-single__blocks h2 + .text-block {
  padding-top: 1rem;
}
.articles-overlay__panel .article-single__body, .articles-overlay__panel .article-single__blocks .text-block {
  padding: 30px 13px;
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  line-height: 1;
  color: var(--color-black);
  max-width: 900px;
  margin: 0 auto;
}
.articles-overlay__panel .article-single__body > p + p, .articles-overlay__panel .article-single__blocks .text-block > p + p {
  margin-top: 0;
  text-indent: 1.5em;
}

.article-block--image + .article-block--image {
  margin-top: 30px;
}

.articles-overlay__panel .img-block {
  margin-left: 15.6%;
  width: 71%;
  margin-bottom: 30px;
}
.articles-overlay__panel .img-block img {
  width: 100%;
  height: auto;
  display: block;
}
.articles-overlay__panel .img-block .img-caption {
  margin-top: 0.35em;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--color-black);
}
.articles-overlay__panel .img-block + .img-block {
  margin-top: 30px;
}

.articles-overlay__panel .article-block--image {
  margin-left: 15.6%;
  width: 71%;
  margin-bottom: 0;
}
.articles-overlay__panel .article-block--image img {
  width: 100%;
  height: auto;
  display: block;
}
.articles-overlay__panel .article-block--image figcaption {
  margin-top: 0.35em;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--color-black);
}
.articles-overlay__panel .article-block--text {
  padding: 30px 13px 100px;
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  line-height: 1;
  color: var(--color-black);
}

body.article .article-single {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--nav-height-total) 30px 6rem;
}
body.article .article-single__cover {
  margin-bottom: 2rem;
}
body.article .article-single__cover img {
  width: 100%;
  height: auto;
  display: block;
}
body.article .article-single__headline {
  text-align: center;
  text-transform: uppercase;
  padding: 2rem 0 1rem;
  font-family: var(--font-main);
  font-size: var(--font-size-base);
}
body.article .article-single__headline p {
  margin: 0;
  line-height: 1.1;
}
body.article .article-single__blocks h2 + .text-block {
  margin-top: 1rem;
}
body.article .article-single__body, body.article .article-single__blocks .text-block {
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  line-height: var(--line-height-loose);
}
body.article .article-single__body > p + p, body.article .article-single__blocks .text-block > p + p {
  margin-top: 0;
  text-indent: 1.5em;
}
body.article .article-single__body, body.article .article-single__blocks .text-block {
  margin-bottom: 100px;
  margin-top: 30px;
}
body.article .article-single__body {
  padding-bottom: 2rem;
}
body.article .article-single__blocks {
  padding-bottom: 2rem;
}

body.article .img-block {
  margin-bottom: 2rem;
}
body.article .img-block img {
  width: 100%;
  height: auto;
  display: block;
}
body.article .img-block .img-caption {
  margin-top: 0.5em;
  font-family: var(--font-ui);
  font-size: var(--font-size-ui);
  color: var(--color-black);
}

body.article .article-block--image {
  margin-bottom: 2rem;
}
body.article .article-block--image img {
  width: 100%;
  height: auto;
  display: block;
}
body.article .article-block--image figcaption {
  margin-top: 0.5em;
  font-family: var(--font-ui);
  font-size: var(--font-size-ui);
  color: var(--color-black);
}
body.article .article-block--text {
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  line-height: var(--line-height-loose);
  padding-bottom: 2rem;
}

.article-sticky-label {
  display: none;
}
@media (max-width: 768px) {
  .article-sticky-label {
    display: block;
    position: sticky;
    top: 0;
    z-index: var(--z-nav);
    padding: 13px;
    background: var(--color-white);
    font-family: var(--font-main);
    font-size: var(--font-size-base);
    color: var(--color-black);
    line-height: 1;
  }
}

@media (max-width: 768px) {
  .articles-page {
    padding-top: 0;
  }
  .articles__grid {
    padding: 12px;
    padding-top: 37px;
  }
  .articles__grid-inner {
    gap: 12px 4px;
  }
  .article-card__caption {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding-top: 5px;
    font-family: var(--font-main);
    font-size: 9px;
    color: var(--color-black);
  }
  .article-card__caption span + em::before,
  .article-card__caption em + em::before {
    content: ", ";
  }
  .articles-overlay__visual {
    display: none;
  }
  .articles-overlay__panel {
    width: 100%;
  }
  body.article .article-single {
    max-width: none;
    padding: 0 0 4rem;
  }
  body.article .article-single__cover {
    margin-left: 25.3%;
    width: 74.7%;
    margin-bottom: 0;
  }
  body.article .article-single__cover img {
    width: 100%;
    height: auto;
    display: block;
  }
  body.article .article-single__headline {
    display: block;
    padding: 50px 12px 0;
    text-align: center;
    text-transform: uppercase;
    font-family: var(--font-main);
    font-size: var(--font-size-base);
  }
  body.article .article-single__headline p {
    margin: 0;
    line-height: 13px;
  }
  body.article .article-single__writer {
    text-align: center;
    margin-left: 0;
    padding: 8px 12px 0;
  }
  body.article .article-block--text {
    padding: 0 12px 50px;
    font-size: var(--font-size-base);
    line-height: 13px;
  }
  body.article .article-block--image {
    margin-left: 0;
    width: 100%;
    margin-bottom: 0;
  }
  body.article .article-block--image.article-block--indented {
    margin-left: 12.5%;
    width: 75%;
  }
  body.article .article-block--image figcaption {
    padding: 3px 0 12px;
    font-size: 9px;
  }
}
.ideas__nav-anchor {
  height: 1px;
  margin-top: var(--nav-height-total);
  pointer-events: none;
}

body.ideas .articles__grid-inner {
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  transition: filter 0.4s ease;
}

.ideas-inline-panel {
  display: none;
}

body.ideas.articles-overlay-open .articles__grid-inner {
  filter: grayscale(1);
}

.idea-card {
  cursor: pointer;
}
.idea-card__image {
  width: 100%;
  overflow: hidden;
}
.idea-card__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.idea-card:hover .idea-card__image img {
  transform: scale(1.02);
}
.idea-card__meta {
  margin-top: 0.75em;
}
.idea-card__date {
  display: block;
  font-family: var(--font-ui);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-base);
  color: var(--color-black);
}
.idea-card__title {
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-base);
  margin-top: 0.25em;
  color: var(--color-black);
}

.ideas-overlay {
  position: fixed;
  inset: 0;
  background-color: #eeeeee;
  z-index: var(--z-overlay);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.ideas-overlay__close {
  position: fixed;
  top: 39px;
  right: 29px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-base);
  color: var(--color-black);
  z-index: var(--z-overlay) 1;
  font-size: 24px;
  line-height: 1;
}
.ideas-overlay__close:hover {
  opacity: 0.5;
}
.ideas-overlay__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
}
.ideas-overlay__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  font-family: var(--font-ui);
  font-size: var(--font-size-base);
  color: var(--color-black);
}

.overlay-enter {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.overlay-enter-start {
  opacity: 0;
  transform: translateY(16px);
}

.overlay-enter-end {
  opacity: 1;
  transform: translateY(0);
}

.overlay-leave {
  transition: opacity 0.2s ease;
}

.overlay-leave-start {
  opacity: 1;
}

.overlay-leave-end {
  opacity: 0;
}

body.overlay-open {
  overflow: hidden;
}

.idea-article__header {
  margin-bottom: 4rem;
}
.idea-article__date {
  display: block;
  font-family: var(--font-ui);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-base);
  color: var(--color-black);
  margin-bottom: 0.75em;
}
.idea-article__title {
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: var(--font-weight-base);
  line-height: var(--line-height-tight);
  color: var(--color-black);
}
.idea-article__cover {
  margin-bottom: 4rem;
}
.idea-article__cover img {
  width: 100%;
  height: auto;
  display: block;
}
.idea-article__intro {
  margin-bottom: 4rem;
  font-size: var(--font-size-base);
  line-height: var(--line-height-loose);
  max-width: 680px;
}

.idea-layout {
  display: grid;
  gap: 2vw;
  margin-bottom: 4rem;
}
.idea-layout--1col {
  grid-template-columns: 1fr;
}
.idea-layout--2col {
  grid-template-columns: 1fr 1fr;
}
.idea-layout--3col {
  grid-template-columns: 1fr 2fr 1fr;
}

.idea-block--text {
  font-size: var(--font-size-base);
  line-height: var(--line-height-loose);
}
.idea-block--image.idea-block--full {
  width: 100%;
}
.idea-block--image.idea-block--half {
  width: 50%;
}
.idea-block--image img {
  width: 100%;
  height: auto;
  display: block;
}
.idea-block--image figcaption {
  margin-top: 0.5em;
  font-family: var(--font-ui);
  font-size: var(--font-size-base);
  color: var(--color-black);
}

@media (max-width: 768px) {
  body.ideas .articles__grid {
    padding-left: 0;
    padding-right: 0;
  }
  body.ideas .articles__grid-inner {
    grid-template-columns: repeat(8, 1fr);
    row-gap: 0;
    column-gap: 0;
  }
  body.ideas .article-card__caption {
    display: none;
  }
  body.ideas .article-card:nth-child(18n+1) {
    grid-column: 2/8 !important;
  }
  body.ideas .article-card:nth-child(18n+3) {
    grid-column: 3/9 !important;
  }
  body.ideas .article-card:nth-child(18n+5) {
    grid-column: 1/7 !important;
  }
  body.ideas .article-card:nth-child(18n+7) {
    grid-column: 1/9 !important;
  }
  body.ideas .article-card:nth-child(18n+9) {
    grid-column: 4/9 !important;
  }
  body.ideas .article-card:nth-child(18n+11) {
    grid-column: 1/7 !important;
  }
  body.ideas .article-card:nth-child(18n+13) {
    grid-column: 2/8 !important;
  }
  body.ideas .article-card:nth-child(18n+15) {
    grid-column: 1/9 !important;
  }
  body.ideas .article-card:nth-child(18n+17) {
    grid-column: 1/7 !important;
  }
  body.ideas .article-card:hover .article-card__image img {
    transform: none;
  }
  .article-tooltip {
    display: none !important;
  }
  .ideas-inline-panel {
    grid-column: 1/9 !important;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
  }
  .ideas-inline-panel.is-open {
    grid-template-rows: 1fr;
  }
  .ideas-inline-panel__body {
    overflow: hidden;
    min-height: 0;
  }
  .ideas-inline-panel .article-single__cover {
    display: none;
  }
  .ideas-inline-panel .article-single__headline {
    display: block;
    padding: 50px 12px 0;
    margin-bottom: 1em;
    text-align: center;
    text-transform: uppercase;
    font-family: var(--font-main);
    font-size: var(--font-size-base);
  }
  .ideas-inline-panel .article-single__headline p {
    margin: 0;
    line-height: 13px;
  }
  .ideas-inline-panel .article-single__body,
  .ideas-inline-panel .article-single__blocks .text-block {
    padding: 0 12px 50px;
    font-family: var(--font-main);
    font-size: var(--font-size-base);
    line-height: 13px;
  }
  .ideas-inline-panel .article-single__body > p + p,
  .ideas-inline-panel .article-single__blocks .text-block > p + p {
    margin-top: 0;
    text-indent: 1.5em;
  }
  .ideas-inline-panel .article-single__blocks :is(h1, h2, h3, h4, h5, h6) {
    padding-left: 12px;
    padding-right: 12px;
  }
  .ideas-inline-panel .article-block--text {
    padding: 0 12px 50px;
    font-family: var(--font-main);
    font-size: var(--font-size-base);
    line-height: 13px;
  }
  .ideas-inline-panel .article-block--image {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
  }
  .ideas-inline-panel .article-block--image img {
    width: 100%;
    height: auto;
    display: block;
  }
  .ideas-inline-panel .article-block--image figcaption {
    padding: 3px 0 12px;
    font-size: 9px;
    font-family: var(--font-ui);
    color: var(--color-black);
  }
  .ideas-inline-panel .img-block {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
  .ideas-inline-panel .img-block img {
    width: 100%;
    height: auto;
    display: block;
  }
  .ideas-inline-panel .img-block .img-caption {
    padding: 3px 0 12px;
    font-size: 9px;
    font-family: var(--font-ui);
    color: var(--color-black);
  }
  .ideas-inline-panel__loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 30vh;
    font-family: var(--font-main);
    font-size: var(--font-size-base);
    color: var(--color-black);
  }
}
.ideas__newsletter-anchor {
  position: sticky;
  bottom: 0;
  height: 0;
  overflow: visible;
  pointer-events: none;
  z-index: 210;
}

.ideas__newsletter-btn {
  position: absolute;
  bottom: 23px;
  left: 30px;
  font-size: var(--font-size-base);
  padding: 3px 12px;
  background: #fff;
  color: var(--color-black);
  border-radius: 5px;
  cursor: pointer;
  pointer-events: auto;
}

.ideas__newsletter-anchor,
.ideas__newsletter-btn--nav {
  display: none;
}

@media (min-width: 769px) {
  .ideas__newsletter-anchor {
    display: none;
  }
}
.ideas__newsletter-btn--nav {
  position: static;
}
@media (max-width: 768px) {
  .ideas__newsletter-btn--nav {
    display: none;
  }
}

.press-page {
  min-height: 100vh;
}

.section--press-header {
  padding: var(--spacing-24) var(--spacing-30);
}

.press-page__title {
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-base);
}

.section--press-grid {
  padding: 0 var(--spacing-30) var(--spacing-30);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 5px;
  row-gap: 180px;
}

.press-card {
  display: flex;
  flex-direction: column;
}

.press-card__cover {
  overflow: hidden;
  flex-shrink: 0;
}
.press-card__cover a {
  display: block;
}
.press-card__cover img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform var(--transition-slow), filter var(--transition-base), opacity var(--transition-base);
}

.press-card__caption {
  padding: 5px 0 0;
  transition: opacity var(--transition-base);
}
.press-card__caption p {
  margin: 0;
  font-family: var(--font-ui);
  font-size: var(--font-size-ui);
  font-weight: var(--font-weight-base);
  line-height: var(--line-height-tight);
  color: var(--color-black);
}

.press-grid:has(.press-card:hover) .press-card:not(:hover) .press-card__cover img {
  filter: grayscale(1);
  opacity: 0.25;
}
.press-grid:has(.press-card:hover) .press-card:not(:hover) .press-card__caption {
  opacity: 0.25;
}

@media (max-width: 1024px) {
  .press-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .press-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3px;
  }
}
.mobile-topbar {
  display: none;
}

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 14px;
  height: 9px;
  flex-shrink: 0;
  cursor: pointer;
  color: currentColor;
}
.nav__burger span {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.mobile-panel {
  display: none;
}

@media (max-width: 768px) {
  .nav--scrolled {
    transform: none;
    background-color: transparent;
    transition: background-color 0.2s ease, color 0.3s ease;
  }
  .nav__row--global {
    display: none;
  }
  .nav__filter-panel {
    display: none;
  }
  .nav {
    padding-top: 0;
    min-height: 0;
  }
  .nav__row--contextual {
    padding: 12px;
  }
  .nav--scrolled .nav__contextual-center,
  .nav--scrolled .nav__contextual-right {
    opacity: 1;
    pointer-events: auto;
  }
  .nav__burger {
    display: flex;
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 1020;
  }
  #home-nav .nav__burger {
    z-index: 1020;
  }
  .nav.menu-open,
  #home-nav.menu-open {
    z-index: 1010;
  }
  .nav__burger.is-open span:nth-child(1),
  #home-nav.menu-open .nav__burger span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }
  .nav__burger.is-open span:nth-child(2),
  #home-nav.menu-open .nav__burger span:nth-child(2) {
    opacity: 0;
  }
  .nav__burger.is-open span:nth-child(3),
  #home-nav.menu-open .nav__burger span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }
  .mobile-panel__col.col-right {
    text-align: right;
  }
  #home-nav .mobile-panel__filter-slot {
    display: none;
  }
  .mobile-panel {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: calc(var(--z-nav) + 5);
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    background-color: #eeeeee;
    color: var(--color-black);
  }
  .nav.menu-open .mobile-panel,
  #home-nav.menu-open .mobile-panel {
    transform: translateY(0);
    pointer-events: auto;
  }
  .mobile-panel__header {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 12px;
    flex-shrink: 0;
    padding-top: 20px;
  }
  .mobile-panel__close {
    display: none;
  }
  .mobile-panel__logo {
    display: flex;
    gap: 8px;
    width: 200px;
    color: var(--color-black);
    text-decoration: none;
    justify-content: space-between;
  }
  .mobile-panel__logo .logo__fragment {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: var(--font-weight-base);
    text-transform: uppercase;
    white-space: pre;
    text-align: center;
  }
  .mobile-panel__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 11px;
    height: 11px;
    flex-shrink: 0;
    cursor: pointer;
    color: var(--color-black);
  }
  .mobile-panel__filter-slot {
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    overflow: hidden;
    flex-shrink: 0;
  }
  [data-page=projects] .nav__cat-buttons {
    display: none;
  }
  [data-page=projects] .nav__contextual-center {
    display: none;
  }
  [data-page=projects] .nav__contextual-right {
    display: none;
  }
  [data-page=projects] .nav__section-label--compact {
    display: block;
  }
  [data-page=projects] .nav__row--contextual,
  [data-page=studio] .nav__row--contextual,
  [data-page=press] .nav__row--contextual,
  [data-page=project] .nav__row--contextual,
  [data-page=ideas] .nav__row--contextual {
    display: none;
  }
  [data-page=project] .mobile-topbar {
    position: sticky;
    top: 0;
    z-index: var(--z-nav);
    background: transparent;
    color: var(--color-black);
    transition: background-color 0.3s ease;
  }
  [data-page=project] .mobile-topbar.is-over-intro {
    background-color: #eeeeee;
  }
  .nav.menu-open ~ .mobile-topbar {
    display: none;
  }
  .mobile-topbar {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: transparent;
    padding: 0 12px;
    height: 38px;
    align-items: center;
    font-size: var(--font-size-base);
    color: var(--color-black);
    overflow: hidden;
  }
  .mobile-topbar__inner {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    white-space: nowrap;
  }
  .mobile-topbar__inner span + span::before {
    content: ", ";
  }
  .studio-topbar--links {
    display: none;
  }
  .mobile-topbar__inner--scroll {
    overflow-x: auto;
    scrollbar-width: none;
    gap: 0;
  }
  .mobile-topbar__inner--scroll::-webkit-scrollbar {
    display: none;
  }
  .mobile-topbar__inner--scroll a {
    flex-shrink: 0;
    text-decoration: none;
    color: var(--color-nav-inactive);
    transition: color var(--transition-fast);
  }
  .mobile-topbar__inner--scroll a.is-active {
    color: var(--color-black);
  }
  .mobile-topbar__inner--scroll a + a::before {
    content: " | ";
    color: var(--color-nav-inactive);
    margin: 0;
  }
  [data-page=projects] #nav {
    position: fixed;
    top: 0;
    z-index: 1000;
  }
  body.is-arriving[data-page=projects] .mobile-panel {
    transition: none;
  }
  [data-page=projects] .projects-page {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  body.is-arriving[data-page=projects] .projects-page {
    transform: translateY(283px);
  }
  [data-page=projects] .mobile-panel__filter-slot {
    position: absolute;
    top: 46px;
    left: 0;
    right: 0;
    background-color: #eeeeee;
    z-index: 1;
  }
  .mobile-panel__tags {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    width: 100%;
    align-items: center;
  }
  .mobile-panel__tags::-webkit-scrollbar {
    display: none;
  }
  .mobile-panel__tags button {
    flex-shrink: 0;
    white-space: nowrap;
    font-family: var(--font-main);
    font-size: var(--font-size-ui);
    padding: 3px 12px;
    border-radius: 999px;
    background: #f2f1ef;
    color: var(--color-black);
    transition: all var(--transition-fast);
    order: 1;
  }
  .mobile-panel__tags button.filter-all-btn {
    order: -1;
  }
  .mobile-panel__tags button.is-active {
    order: 0;
    background: var(--color-black);
    color: var(--color-white);
  }
  .mobile-panel__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 12px;
    gap: 0 12px;
    flex: 1;
    padding-top: 48px;
  }
  .mobile-panel__col {
    display: flex;
    flex-direction: column;
  }
  .mobile-panel__link {
    font-family: var(--font-main);
    font-size: 17px;
    font-weight: var(--font-weight-base);
    color: var(--color-nav-inactive);
    text-decoration: none;
    line-height: 1em;
    transition: color var(--transition-fast);
    padding-bottom: 1px;
  }
  .mobile-panel__link.is-active {
    color: var(--color-black);
  }
  .mobile-panel__cats {
    display: flex;
    flex-direction: column;
    padding: 4px 0 8px;
    gap: 0;
  }
  .mobile-panel__cat {
    font-family: var(--font-main);
    font-size: 17px;
    color: var(--color-nav-inactive);
    text-align: left;
    padding: 0px 0 1px 37px;
    transition: color var(--transition-fast);
    cursor: pointer;
  }
  .mobile-panel__cat.is-active {
    color: var(--color-black);
  }
  .mobile-panel__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    padding-top: 9px;
    flex-shrink: 0;
  }
  .mobile-panel__filters-btn {
    font-family: var(--font-main);
    font-size: 17px;
    transition: color var(--transition-fast);
    cursor: pointer;
  }
  .mobile-panel__view {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .mobile-panel__view button {
    font-family: var(--font-main);
    font-size: 17px;
    color: var(--color-nav-inactive);
    transition: color var(--transition-fast);
    cursor: pointer;
  }
  .mobile-panel__view button.is-active {
    color: var(--color-black);
  }
  .mobile-panel__view span {
    color: var(--color-nav-inactive);
  }
  .mobile-topbar__inner {
    gap: 3px;
  }
}/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */

/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
