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

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

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

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

img, picture, video {
  max-width: 100%;
  display: block;
  height: auto;
}

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

textarea:not([rows]) {
  min-height: 10em;
}

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

h1, h2, h3, h4, h5, h6, p, ul, ol {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  interpolate-size: allow-keywords;
  --nav-bg: #f0dcaa;
  --header-height: 4.25rem;
  --quicknav-height: 51.6px;
  --cursor-next: url('/assets/arrow-right.svg') 66 20;
  --cursor-prev: url('/assets/arrow-left.svg') 0 21;
  --page-max-width: 100rem;
  --max-width: 100rem;
  --padding-side: max(1vw, 2rem);
}
html:has(dialog[open]) {
  overflow: hidden;
}
html:has(body.start) {
  scrollbar-gutter: auto;
}
@media screen and (max-width: 64rem) {
  html {
    --quicknav-height: 46.4px;
  }
}
@media screen and (max-width: 48rem) {
  html {
    --header-height: 3rem;
    --padding-side: 1rem;
  }
}
html:has(.open-nav) {
  overflow: hidden;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Helvetica", Arial, sans-serif;
  line-height: 1.33;
}

a {
  cursor: pointer;
  text-underline-offset: 0.16em;
  text-decoration-thickness: 0.06em;
  text-decoration-skip-ink: none;
}
a:link, a:visited, a:hover, a:active {
  color: inherit;
}

#skip-to-content-link {
  position: fixed;
  top: 0;
  background: black;
  color: white;
  left: 50%;
  padding: 8px;
  transform: translate(-50%, -150%);
  transition: transform 0.3s;
  z-index: 100;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
#skip-to-content-link:focus {
  transform: translate(-50%, 0);
}

/*
.font-size-13{ font-size: 0.8125rem; }
.font-size-15{ font-size: 0.9375rem; }
.font-size-16{ font-size: 1rem; }
.font-size-17{ font-size: 1.0625rem; }
.font-size-19{ font-size: 1.1875rem; }
.font-size-24{ font-size: 1.5rem; }
.font-size-26{ font-size: 1.55rem; }
.font-size-29{ font-size: 1.8125rem; }
.font-size-40{ font-size: 2.5rem; }
 */
.font-size-13 {
  font-size: 0.8125rem;
}

.font-size-15 {
  font-size: 0.9375rem;
}

.font-size-16 {
  font-size: 1rem;
}

.font-size-17 {
  font-size: 1.0625rem;
}

.font-size-19 {
  font-size: 1.1875rem;
}

.font-size-24 {
  font-size: 1.5rem;
}

.font-size-26 {
  font-size: 1.625rem;
}

.font-size-29 {
  font-size: 1.8125rem;
}

.font-size-40 {
  font-size: 2.5rem;
}

@media screen and (max-width: 48rem) {
  .font-size-24 {
    font-size: 1.2rem;
  }
  .font-size-26 {
    font-size: 1.3rem;
  }
  .font-size-29 {
    font-size: 1.45rem;
  }
  .font-size-40 {
    font-size: 2rem;
  }
}
.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.content-width {
  max-width: var(--max-width);
  padding-inline: var(--padding-side);
  margin-inline: auto;
}

button {
  border: none;
  border-radius: 0;
  background: none;
  cursor: pointer;
}
button:focus:not(:focus-visible) {
  outline: none;
}

#menu-toggle {
  display: none;
  z-index: 2;
}
@media screen and (max-width: 75rem) {
  #menu-toggle {
    display: block;
  }
}
#menu-toggle {
  --button-width: 30px;
  width: var(--button-width);
  height: calc(var(--button-width) * 0.65);
  padding: 1em;
  margin-top: -1em;
  margin-right: -1em;
  margin-bottom: -1em;
  margin-left: auto;
  box-sizing: content-box;
  color: inherit;
}
#menu-toggle .bar {
  width: var(--button-width);
  height: 2px;
  display: block;
  background-color: currentColor;
  transform-origin: 56% 50%;
  transition: transform 0.2s ease-in-out 0.2s, opacity 0.1s linear 0.2s;
}
#menu-toggle .middleBar {
  margin: 7px 0;
  transition: transform 0.2s ease-in-out 0.2s, background-color 0.2s ease-in-out 0.2s;
  position: relative;
}
#menu-toggle .middleBar .inside {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: currentColor;
  transition: transform 0.2s ease-in-out;
}
.open-nav #menu-toggle {
  color: black;
}
.open-nav #menu-toggle .bar {
  transition: transform 0.2s ease-in-out, opacity 0.1s linear 0.2s;
}
.open-nav #menu-toggle .bar.topBar {
  transform: translateY(7px);
  opacity: 0;
  transform-origin: 0 1px;
}
.open-nav #menu-toggle .bar.middleBar {
  background: transparent;
  transition: transform 0.2s ease-in-out 0.2s;
}
.open-nav #menu-toggle .bar.middleBar .inside {
  transition: transform 0.2s ease-in-out 0.2s;
  transform: rotate(45deg);
}
.open-nav #menu-toggle .bar.middleBar .inside:last-child {
  transform: rotate(-45deg);
}
.open-nav #menu-toggle .bar.bottomBar {
  transform: translateY(-7px);
  opacity: 0;
}

#main-header {
  --bg-color: white;
}
.start #main-header {
  --bg-color: transparent;
}
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
  max-width: var(--page-max-width);
  padding-inline: var(--padding-side);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 1rem;
  pointer-events: none;
  background: var(--bg-color);
  transition: background-color 0.2s ease-out 0.25s, color 0.4s ease-out;
}
@media screen and (max-width: 48rem) {
  #main-header {
    padding-block: 0.75rem;
  }
}
#main-header::after {
  content: " ";
  position: absolute;
  left: 50%;
  width: 100vw;
  translate: -50% 0;
  top: 0;
  bottom: 0;
  background-color: var(--bg-color);
  z-index: -1;
  transition: background-color 0.2s ease-out 0.25s;
}
#main-header h1 {
  text-align: center;
  transition: opacity 0.2s ease-out 0.2s;
}
#main-header a, #main-header button {
  pointer-events: auto;
}
#main-header #menu-toggle {
  grid-column-start: 3;
}

#main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  line-height: 1.5;
  transition: translate 0.4s ease-out;
}
@media screen and (max-width: 75rem) {
  #main-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    background: white;
    padding: 4rem;
    text-align: right;
  }
}
@media screen and (max-width: 48rem) {
  #main-nav {
    width: 100%;
    text-align: center;
  }
}
#main-nav ul {
  list-style-type: "";
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}
@media screen and (max-width: 75rem) {
  #main-nav ul {
    flex-direction: column;
  }
}
@media screen and (max-width: 48rem) {
  #main-nav ul {
    gap: 2rem;
    width: 100%;
  }
}
#main-nav ul a {
  display: block;
}
.open-nav #main-nav {
  display: flex;
  transition: translate 0.4s ease-out;
}
@starting-style {
  .open-nav #main-nav {
    translate: 100% 0;
  }
}

.open-nav::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.open-nav #main-header {
  --bg-color: transparent;
}

.logo {
  position: relative;
  white-space: nowrap;
  z-index: 3;
  --bg: white;
}
.start .logo {
  --bg: transparent;
}
.start .logo .longform {
  position: static;
}
@media (width < 26.5rem) {
  .logo {
    font-size: 4.6vw;
  }
}
.logo .longform {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: var(--bg);
  transition: opacity 0s ease-out 0.4s;
}
.logo .longform span {
  max-width: 0;
  transition: max-width 0.4s ease-out;
  overflow: hidden;
}
.logo .longform span.visible {
  max-width: none;
}
body:not(.scrolled) .logo .longform, .start .logo .longform {
  opacity: 1;
  transition: opacity 0s ease-out 0s;
  padding-right: 0.25em;
}
body:not(.scrolled) .logo .longform span, .start .logo .longform span {
  max-width: 1.5ch;
}
@media (hover: hover) {
  .logo:hover .longform {
    opacity: 1;
    transition: opacity 0s ease-out 0s;
    padding-right: 0.25em;
  }
  .logo:hover .longform span {
    max-width: 1.5ch;
  }
}

@media (hover: hover) {
  .start.scrolled:has(.logo:hover) #quick-nav ul {
    opacity: 0;
    transition-delay: 0s;
  }
  body:not(.start):has(.logo:hover) #main-header h1 {
    opacity: 0;
    transition-delay: 0s;
  }
}
.nav-headline {
  text-align: center;
  margin-top: 5rem;
}

#main-footer {
  margin-top: 5rem;
  border-top: 1px solid lightgray;
}
#main-footer .contact {
  max-width: var(--page-max-width);
  padding-inline: var(--padding-side);
  margin-inline: auto;
  padding-block: 3rem;
}
#main-footer .contact .address,
#main-footer .contact .social-media {
  margin-bottom: 1lh;
}

#quick-nav {
  position: absolute;
  top: calc(var(--header-height));
  left: 50%;
  width: 100%;
  padding-bottom: 1rem;
  padding-inline: var(--padding-side);
  z-index: 2;
  pointer-events: none;
  background-color: white;
  translate: -50% 0%;
}
.start #quick-nav, .projects #quick-nav {
  top: 0;
  left: initial;
  position: sticky;
  translate: 0 0;
}
.scrolled:not(.start) #quick-nav {
  position: fixed;
  top: calc(var(--header-height) - var(--quicknav-height));
  translate: -50% 0%;
  pointer-events: none;
  transition: translate 0.4s ease-out;
}
.scrolled.nav-down:not(.start) #quick-nav {
  translate: -50% 100%;
  pointer-events: auto;
}
#quick-nav ul {
  list-style-type: "";
  display: flex;
  justify-content: center;
  column-gap: 1em;
  flex-wrap: wrap;
  transition: opacity 0.2s ease-out 0.2s;
}
#quick-nav a {
  pointer-events: auto;
}

.featured-swiper img {
  width: 100%;
}
@media screen and (max-width: 48rem) {
  .featured-swiper {
    margin-inline: calc(var(--padding-side) * -1);
  }
}
.featured-swiper .swiper-slide {
  height: auto;
  overflow: clip;
}
@media screen and (max-width: 48rem) {
  .featured-swiper .swiper-slide .project-name {
    padding-inline: var(--padding-side);
  }
}
.featured-swiper .swiper-pagination {
  display: none;
  left: auto;
  width: max-content;
  right: 0;
  bottom: 0.2em;
}
.featured-swiper .inner {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.featured-swiper a {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.featured-swiper a picture {
  flex: 1;
}
.featured-swiper img {
  width: 100%;
  height: 100%;
  max-height: 80vh;
  object-fit: cover;
}

.no-underline a {
  text-decoration: none;
}
.underline-hover a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 0.06em;
  transition: text-decoration-color 0.2s ease-out;
}
.underline-hover a:hover, .underline-hover a:focus, .underline-hover a[aria-current=page] {
  text-decoration-color: currentColor;
}

.masonry {
  --cols: 2;
  display: grid;
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  column-gap: 3rem;
  row-gap: 3rem;
  align-items: start;
}
@media screen and (max-width: 48rem) {
  .masonry {
    --cols: 1;
    grid-auto-rows: initial;
  }
}
@supports (display: grid-lanes) {
  .masonry {
    display: grid-lanes;
  }
}
.masonry .masonry-element.center {
  margin-inline: auto;
}
.masonry .masonry-element.right {
  margin-left: auto;
}
.masonry .masonry-element.narrow {
  width: 60%;
}
.masonry .masonry-element.margin-minus3 {
  margin-top: -6rem;
}
.masonry .masonry-element.margin-minus2 {
  margin-top: -4rem;
}
.masonry .masonry-element.margin-minus1 {
  margin-top: -2rem;
}
.masonry .masonry-element.margin-1 {
  margin-top: 2rem;
}
.masonry .masonry-element.margin-2 {
  margin-top: 4rem;
}
.masonry .masonry-element.margin-3 {
  margin-top: 6rem;
}
@media screen and (max-width: 48rem) {
  .masonry .masonry-element {
    margin-top: 0 !important;
  }
}
.masonry .masonry-element .text {
  max-width: 100%;
}

.start section:not(:first-of-type),
.projects section:not(:first-of-type) {
  margin-top: 5rem;
}
@media screen and (max-width: 48rem) {
  .start section:not(:first-of-type),
  .projects section:not(:first-of-type) {
    margin-top: 3rem;
  }
}

.start.header-light {
  --cursor-next: url('/assets/arrow-right-light.svg') 66 20;
  --cursor-prev: url('/assets/arrow-left-light.svg') 0 21;
}
.start #main {
  --padding-top: 0px;
  /* --padding-top: var(--header-height); */
  padding-top: var(--padding-top);
}
.start .swiper.images {
  height: calc(100dvh - var(--padding-top));
}
.start .swiper.images .swiper-slide {
  height: 100%;
}
.start .swiper.images .swiper-slide figure {
  height: 100%;
  margin: 0;
}
.start .swiper.images .swiper-slide figure picture {
  display: block;
  height: 100%;
}
.start .swiper.images .swiper-slide figure picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.start .swiper.images .swiper-footer {
  display: none;
}

.start-tiles a {
  display: block;
}

.pageTile .text {
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.16em;
  text-decoration-thickness: 0.06em;
  text-decoration-skip-ink: none;
  transition: text-decoration-color 0.2s ease-out;
}

.projectPreview .type, .projectPreview picture, .projectPreview video,
.pageTile .type,
.pageTile picture,
.pageTile video {
  margin-bottom: 0.8rem;
}

.projectPreview .text {
  margin-top: 0.5lh;
  margin-bottom: 0.5rem;
  /*
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.16em;
  text-decoration-thickness: 0.06em;
  text-decoration-skip-ink: none;

  transition: text-decoration-color 0.2s ease-out;
  */
}
.projectPreview a {
  text-decoration: none;
}
.projectPreview a .title {
  /* text-decoration: underline;
  text-underline-offset: 0.16em;
  text-decoration-thickness: 0.06em;
  text-decoration-skip-ink: none;
  font-weight: bold;*/
}
.projectPreview .teaser {
  text-decoration: none;
}

.content-blocks .headline,
.content-blocks .text {
  width: 100%;
  max-width: 70ch;
  margin-inline: auto;
}
.content-blocks .quote {
  max-width: 90ch;
  margin-inline: auto;
  margin-block: 5rem;
  text-wrap: balance;
  text-align: center;
}
.content-blocks .quote blockquote {
  line-height: 1.2;
  font-style: italic;
}
.content-blocks .quote .source {
  margin-top: 1lh;
}
.content-blocks .headline {
  margin-top: 5em;
  margin-bottom: 2em;
  text-align: center;
}
.content-blocks .headline h2 {
  scroll-margin-top: calc(var(--header-height) + 4rem);
}
.content-blocks .text {
  text-wrap: balance;
}
@supports (text-wrap: pretty) {
  .content-blocks .text {
    text-wrap: pretty;
  }
}
.content-blocks .text p + p {
  margin-top: 1lh;
}
.content-blocks .text h2:not(:first-child), .content-blocks .text h3:not(:first-child) {
  margin-top: 1.2em;
}
.content-blocks .text h2, .content-blocks .text h3 {
  margin-bottom: 0.8em;
}
.content-blocks .text .teaser p {
  display: inline;
}
.content-blocks .text .teaser button {
  color: #4d4d4d;
  padding: 0;
  transition: color 0.2s ease-out;
}
.content-blocks .text .teaser button:hover, .content-blocks .text .teaser button:focus {
  color: currentColor;
}
.content-blocks .text .teaser + .long-text {
  display: none;
  transition-property: height, margin, display;
  transition-timing-function: ease-out;
  transition-duration: 0.4s, 0.2s, 0.1s;
  transition-behavior: allow-discrete;
}
.content-blocks .text.show .teaser + .long-text {
  display: block;
  height: auto;
  margin-top: 1lh;
}
@starting-style {
  .content-blocks .text.show .teaser + .long-text {
    margin-top: 0;
    height: 0px;
  }
}
.content-blocks .text.show .teaser p {
  display: block;
}
.content-blocks .text.show .teaser button {
  display: none;
}
.content-blocks .block.images img {
  width: 100%;
}
.content-blocks .block.images .grid {
  --cols: 2;
  display: grid;
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  gap: 1rem;
}
@media screen and (max-width: 48rem) {
  .content-blocks .block.images .grid {
    --cols: 1;
  }
}
.content-blocks .block.images.swiper {
  margin-block-end: 0;
  padding-block-end: 1.2rem;
}
.content-blocks .block.images .swiper-slide figcaption {
  display: none;
}
.content-blocks .block.images .swiper-slide video {
  pointer-events: none;
}
.content-blocks .block.images .swiper-footer {
  display: flex;
  gap: 1rem;
}
.content-blocks .block.images .swiper-footer .caption {
  flex: 1;
}
.content-blocks .block.images.multiple {
  display: grid;
  grid-template-columns: subgrid;
  gap: 2rem;
}
@media screen and (max-width: 48rem) {
  .content-blocks .block.images.multiple {
    gap: 1rem;
  }
}
.content-blocks .block.images.fullBleed {
  padding-inline: 0;
  max-width: 100%;
}
.content-blocks .block.images.fullBleed img {
  width: 100%;
}
.content-blocks .block.images.fullBleed.swiper {
  max-height: calc(100vh - var(--header-height) * 2 - 3rem);
}
@media (max-aspect-ratio: 4/3) {
  .content-blocks .block.images.fullBleed.swiper {
    height: auto;
  }
}
.content-blocks .block.images.fullBleed.swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-blocks .block.images.wide {
  max-width: min(var(--max-width), 100%);
}
@media screen and (max-width: 48rem) {
  .content-blocks .block.images.wide {
    max-width: 100%;
    padding-inline: 0;
    grid-column: 1/-1;
  }
  .content-blocks .block.images.wide figcaption {
    padding-inline: var(--padding-side);
  }
}
.content-blocks .block.images.narrow {
  margin-inline: 9rem;
}
@media screen and (max-width: 75rem) {
  .content-blocks .block.images.narrow {
    margin-inline: 7rem;
  }
}
@media screen and (max-width: 64rem) {
  .content-blocks .block.images.narrow {
    margin-inline: 5rem;
  }
}
@media screen and (max-width: 48rem) {
  .content-blocks .block.images.narrow {
    margin-inline: 2rem;
  }
}
@media screen and (max-width: 48rem) {
  .content-blocks .block.images.wide .swiper-footer, .content-blocks .block.images.fullBleed .swiper-footer {
    padding-inline: var(--padding-side);
  }
}
.content-blocks .block.images .swiper-pagination {
  position: static;
  text-align: left;
  width: 4ch;
  font-variant-numeric: tabular-nums;
}
.content-blocks .credits {
  margin-top: 4rem;
}
.content-blocks .credits h2, .content-blocks .credits dt {
  color: #43855e;
}
.content-blocks .credits h2 {
  margin-bottom: 1lh;
}
.content-blocks .credits dl {
  column-count: 2;
  column-gap: 1em;
}
@media screen and (max-width: 48rem) {
  .content-blocks .credits dl {
    column-count: 1;
  }
}
.content-blocks .credits dl dt, .content-blocks .credits dl dd {
  display: inline;
}
.content-blocks .team {
  --cols: 4;
  display: grid;
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  gap: 2rem 1rem;
}
@media screen and (max-width: 64rem) {
  .content-blocks .team {
    --cols: 3;
  }
}
@media screen and (max-width: 48rem) {
  .content-blocks .team {
    --cols: 2;
  }
}

figure figcaption {
  margin-top: 0.4rem;
}

.projects #main,
.single-project #main,
.about #main,
.studio #main {
  margin-bottom: 6rem;
}
.projects .content-blocks,
.single-project .content-blocks,
.about .content-blocks,
.studio .content-blocks {
  --gap: 2rem;
}

.studio #main,
.about #main,
.contact #main {
  margin-top: calc(var(--header-height) * 0.5);
}

.imageText,
.mapText {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: var(--gap, 2rem);
  row-gap: 1lh;
  align-content: center;
  min-height: 60vh;
}
@media screen and (max-width: 48rem) {
  .imageText,
  .mapText {
    grid-template-columns: 1fr;
  }
}
.imageText img,
.mapText img {
  width: 100%;
}
.imageText .text-wrapper,
.mapText .text-wrapper {
  padding-left: 2em;
}
@media screen and (max-width: 48rem) {
  .imageText .text-wrapper,
  .mapText .text-wrapper {
    padding-left: 0;
  }
}
.imageText:has(.center),
.mapText:has(.center) {
  align-items: center;
}
.imageText:has(.image-wrapper.right) .headline,
.mapText:has(.image-wrapper.right) .headline {
  grid-column-start: 1;
}
.imageText:has(.image-wrapper.right) .image-wrapper,
.mapText:has(.image-wrapper.right) .image-wrapper {
  grid-column-start: 2;
}
.imageText:has(.image-wrapper.right) .text-wrapper,
.mapText:has(.image-wrapper.right) .text-wrapper {
  grid-column-start: 1;
  grid-row-start: 2;
  padding-right: 2em;
  padding-left: 0;
}
@media screen and (max-width: 48rem) {
  .imageText:has(.image-wrapper.right) .text-wrapper,
  .mapText:has(.image-wrapper.right) .text-wrapper {
    padding-right: 0;
  }
}
.imageText:has(.image-wrapper.right):not(:has(.headline)) .text-wrapper,
.mapText:has(.image-wrapper.right):not(:has(.headline)) .text-wrapper {
  grid-row-start: 1;
}
@media screen and (max-width: 48rem) {
  .imageText:has(.image-wrapper.right):not(:has(.headline)) .text-wrapper,
  .mapText:has(.image-wrapper.right):not(:has(.headline)) .text-wrapper {
    grid-row-start: initial;
  }
}
.imageText .text-wrapper,
.mapText .text-wrapper {
  display: flex;
  flex-direction: column;
}
.imageText .text-wrapper.top,
.mapText .text-wrapper.top {
  justify-content: start;
}
.imageText .text-wrapper.center,
.mapText .text-wrapper.center {
  justify-content: center;
}
.imageText .text-wrapper.bottom,
.mapText .text-wrapper.bottom {
  justify-content: end;
}
.imageText .text-wrapper h2, .imageText .text-wrapper h3,
.mapText .text-wrapper h2,
.mapText .text-wrapper h3 {
  margin-bottom: 1lh;
  font-weight: bold;
}
@media screen and (max-width: 48rem) {
  .imageText .text-wrapper h2, .imageText .text-wrapper h3,
  .mapText .text-wrapper h2,
  .mapText .text-wrapper h3 {
    font-size: 1.2em;
    margin-bottom: 0.6lh;
  }
}

.studio #main,
.about #main,
.contact #main {
  font-size: 1.125rem;
}

.single-project,
.studio,
.page-with-blocks {
  padding-top: calc(var(--header-height) + 1px);
}
.single-project h1,
.studio h1,
.page-with-blocks h1 {
  line-height: 1.2;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.single-project .intro,
.studio .intro,
.page-with-blocks .intro {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1/-1;
  row-gap: 1lh;
}
.single-project .intro .block.text,
.studio .intro .block.text,
.page-with-blocks .intro .block.text {
  text-align: center;
  margin-top: 0;
}
.single-project .intro .block.text .location,
.studio .intro .block.text .location,
.page-with-blocks .intro .block.text .location {
  min-height: 1lh;
}
.single-project .intro .block.intro-image,
.studio .intro .block.intro-image,
.page-with-blocks .intro .block.intro-image {
  grid-column: 2/-2;
}
.single-project .intro .block.intro-image figure, .single-project .intro .block.intro-image picture, .single-project .intro .block.intro-image img,
.studio .intro .block.intro-image figure,
.studio .intro .block.intro-image picture,
.studio .intro .block.intro-image img,
.page-with-blocks .intro .block.intro-image figure,
.page-with-blocks .intro .block.intro-image picture,
.page-with-blocks .intro .block.intro-image img {
  height: 100%;
}
.single-project .intro .block.intro-image img,
.studio .intro .block.intro-image img,
.page-with-blocks .intro .block.intro-image img {
  width: 100%;
  object-fit: cover;
}
.single-project .intro + .content-blocks,
.studio .intro + .content-blocks,
.page-with-blocks .intro + .content-blocks {
  margin-top: 0;
}
.single-project.test .intro .block.text,
.studio.test .intro .block.text,
.page-with-blocks.test .intro .block.text {
  grid-row-start: 2;
}
.single-project .content-blocks,
.studio .content-blocks,
.page-with-blocks .content-blocks {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1/-1;
  row-gap: inherit;
}
@media screen and (max-width: 48rem) {
  .single-project .content-blocks,
  .studio .content-blocks,
  .page-with-blocks .content-blocks {
    margin-top: 0;
  }
}
.single-project .related-projects,
.studio .related-projects,
.page-with-blocks .related-projects {
  margin-top: 5rem;
}
.single-project .related-projects ul,
.studio .related-projects ul,
.page-with-blocks .related-projects ul {
  --cols: 3;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  gap: 1rem;
  list-style-type: "";
}
@media screen and (max-width: 48rem) {
  .single-project .related-projects ul,
  .studio .related-projects ul,
  .page-with-blocks .related-projects ul {
    --cols: 2;
  }
}
.single-project .related-projects ul li:nth-child(n+3),
.studio .related-projects ul li:nth-child(n+3),
.page-with-blocks .related-projects ul li:nth-child(n+3) {
  display: none;
}
.single-project .related-projects ul picture,
.studio .related-projects ul picture,
.page-with-blocks .related-projects ul picture {
  margin-bottom: 1rem;
}
.single-project .related-projects ul a,
.studio .related-projects ul a,
.page-with-blocks .related-projects ul a {
  display: block;
}
.single-project .grid,
.studio .grid,
.page-with-blocks .grid {
  --cols: 2;
  display: grid;
  grid-template-columns: var(--padding-side) repeat(var(--cols), minmax(0, 1fr)) var(--padding-side);
  row-gap: 6rem;
  padding-inline: 0;
}
@media (min-width: 1200px) {
  .single-project .grid,
  .studio .grid,
  .page-with-blocks .grid {
    row-gap: 8rem;
  }
}
@media screen and (max-width: 48rem) {
  .single-project .grid,
  .studio .grid,
  .page-with-blocks .grid {
    --cols: 1;
    row-gap: 4rem;
  }
}
.single-project .grid .block,
.studio .grid .block,
.page-with-blocks .grid .block {
  grid-column: 2/-2;
}
.single-project .singleImage,
.single-project .imageText,
.studio .singleImage,
.studio .imageText,
.page-with-blocks .singleImage,
.page-with-blocks .imageText {
  display: grid;
  grid-column: 2/-2;
  grid-template-columns: subgrid;
  column-gap: 2rem;
}
.single-project .singleImage .right,
.studio .singleImage .right,
.page-with-blocks .singleImage .right {
  grid-column-start: -1;
}
.single-project .singleImage .center,
.studio .singleImage .center,
.page-with-blocks .singleImage .center {
  margin-inline: auto;
  grid-column: 1/-1;
  width: 50%;
}
@media screen and (max-width: 48rem) {
  .single-project .singleImage .center,
  .studio .singleImage .center,
  .page-with-blocks .singleImage .center {
    width: 100%;
  }
}
.single-project .imageText,
.studio .imageText,
.page-with-blocks .imageText {
  min-height: initial;
}
.single-project .imageText p + p,
.studio .imageText p + p,
.page-with-blocks .imageText p + p {
  margin-top: 1lh;
}

.awards ul,
.clients ul {
  list-style-type: "";
}
.awards ul li,
.clients ul li {
  text-wrap: balance;
}
.awards a,
.clients a {
  text-underline-offset: 0.15em;
}
.awards .columns,
.clients .columns {
  column-count: var(--cols, 3);
  column-gap: 1rem;
}

.clients {
  --cols: 3;
}
@media screen and (max-width: 56rem) {
  .clients {
    --cols: 2;
  }
}
@media screen and (max-width: 48rem) {
  .clients {
    --cols: 1;
  }
}
.clients {
  margin-top: 4rem;
}
.headline + .clients {
  margin-top: 0;
}
.clients h3 {
  margin-bottom: 1em;
  text-align: center;
}
.clients li {
  padding-left: 1em;
  text-indent: -1em;
  break-inside: avoid;
}

.awards {
  --cols: 2;
}
@media screen and (max-width: 48rem) {
  .awards {
    --cols: 1;
  }
}
.awards .year,
.awards .awards-list {
  margin-bottom: 1lh;
}
.awards .awards-list li {
  padding-left: 1em;
  text-indent: -1em;
  break-inside: avoid;
}

.team {
  margin-top: 2rem;
}

.person {
  position: relative;
  overflow: clip;
  overflow-clip-margin: 0.5rem;
}
.person:has(details[open]) {
  grid-column-end: span 2;
}
.person:has(details[open])::after {
  content: "";
  position: absolute;
  inset: -0.5rem;
  background: var(--nav-bg);
  z-index: -1;
}
.person:has(details[open]) details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.person:has(details[open]) summary .name, .person:has(details[open]) summary .titles {
  display: none;
}
.person:has(details[open]) .name {
  margin-top: 0;
}
.person .image-wrapper {
  aspect-ratio: 2/3;
  display: block;
  background-color: ghostwhite;
}
.person .content {
  padding: 1rem 0.5rem;
  font-size: 0.9em;
  scroll-margin-block-start: 5rem;
}
.person summary {
  list-style: none;
}
.person summary .name {
  display: block;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 0.15em;
  transition: text-decoration 0.2s ease-out;
}
.person .name {
  font-weight: bold;
  margin-top: 0.5em;
}
.person .titles {
  display: block;
}
.person .infos {
  margin-top: 1lh;
}
.person .infos:first-child {
  margin-top: 1lh;
}
.person .infos p:not(:last-child) {
  margin-bottom: 1lh;
}

details:has(.content) {
  cursor: pointer;
}
details:has(.content):hover .name {
  text-decoration-color: currentColor;
}

details summary::-webkit-details-marker {
  display: none;
}

.page .content-blocks {
  margin-top: 5rem;
}

#slideshow {
  --swiper-navigation-color: currentColor;
  --distanceSide: 3rem;
  --swiper-navigation-size: 28px;
  margin: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  padding: 3rem var(--distanceSide);
}
@media screen and (max-width: 48rem) {
  #slideshow {
    --distanceSide: 1rem;
  }
}
#slideshow {
  color: white;
  background-color: black;
  border: none;
}
#slideshow img, #slideshow video {
  max-height: 80svh;
  object-fit: contain;
  object-position: center;
}
#slideshow figure:has(figcaption) img, #slideshow figure:has(figcaption) video {
  max-height: calc(80svh - 2lh);
}
#slideshow .swiper {
  height: calc(100svh - 6rem - 2lh);
  margin-right: 3rem;
}
#slideshow .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#slideshow aside {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 1rem;
  position: fixed;
  top: 3rem;
  bottom: 3rem;
  right: calc(var(--distanceSide) * 0.6);
  z-index: 2;
}
#slideshow .swiper-buttons {
  display: flex;
  flex-direction: column;
  gap: 2ch;
  justify-content: space-between;
  width: auto;
  z-index: 12;
}
#slideshow .swiper-buttons .swiper-button-prev,
#slideshow .swiper-buttons .swiper-button-next {
  position: static;
  translate: 0 50%;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid currentColor;
  transition-property: background, border, color;
  transition-duration: 0.2s;
}
#slideshow .swiper-buttons .swiper-button-prev:hover, #slideshow .swiper-buttons .swiper-button-prev:focus,
#slideshow .swiper-buttons .swiper-button-next:hover,
#slideshow .swiper-buttons .swiper-button-next:focus {
  background: white;
  border-color: white;
  color: black;
}
#slideshow .swiper-buttons .swiper-button-prev::after,
#slideshow .swiper-buttons .swiper-button-next::after {
  translate: var(--translate, 0 0);
}
#slideshow .swiper-buttons .swiper-button-prev {
  --translate: -10% 0 ;
}
#slideshow .swiper-buttons .swiper-button-next {
  --translate: 10% 0 ;
}
#slideshow .swiper-pagination {
  position: static;
  width: max-content;
  margin-inline: auto;
}
#slideshow form {
  --height: 1.2rem;
}
#slideshow form button {
  position: relative;
  color: inherit;
  display: block;
  height: 2.5rem;
  width: 2.5rem;
  padding: 0.5rem;
  border: 1px solid currentColor;
  border-radius: 50%;
}
#slideshow form button::after, #slideshow form button::before {
  content: " ";
  width: calc(var(--height) * 1);
  height: 2px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background-color: currentColor;
}
#slideshow form button::after {
  rotate: 45deg;
}
#slideshow form button::before {
  rotate: -45deg;
}
#slideshow form button {
  transition-property: background, border, color;
  transition-duration: 0.2s;
}
#slideshow form button:hover, #slideshow form button:focus {
  background: white;
  border-color: white;
  color: black;
}
#slideshow .swiper-footer {
  position: fixed;
  bottom: 1rem;
  left: var(--distanceSide);
  right: var(--distanceSide);
  display: flex;
  gap: 2rem;
  align-items: center;
}
#slideshow .swiper-footer .caption {
  flex: 1;
  height: 2lh;
  display: flex;
  align-items: center;
}
#slideshow .swiper-footer .caption .inner {
  max-width: 40ch;
  text-wrap: balance;
}
@supports (text-wrap: pretty) {
  #slideshow .swiper-footer .caption .inner {
    text-wrap: pretty;
  }
}

.swiper.images .swiper-slide {
  cursor: var(--cursor-next), auto;
}
.swiper.images.cursor-prev .swiper-slide {
  cursor: var(--cursor-prev), auto;
}

.swiper-pagination-fraction {
  display: flex;
  gap: 0.2ch;
}

.map {
  aspect-ratio: 5/4;
}
@media screen and (max-width: 48rem) {
  .map {
    aspect-ratio: 3/2;
  }
}

.header-light:not(.open-nav) #main-header {
  color: white;
}

/*# sourceMappingURL=bhs-la.css.map */
