@font-face {
  font-family: "Suisse Intl";
  src: url("Fonts/SuisseIntl-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "PP Editorial New";
  src: url("Fonts/PPEditorialNew-Light.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "PP Editorial New";
  src: url("Fonts/PPEditorialNew-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "PP Editorial New UltraLight";
  src: url("Fonts/PPEditorialNew-Ultralight.woff2") format("woff2");
  font-style: normal;
  font-weight: 200;
  font-display: swap;
}

@font-face {
  font-family: "Suisse Intl Light";
  src: url("Fonts/SuisseIntl-Light.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Suisse Intl Book";
  src: url("Fonts/SuisseIntl-Book.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --landing-bg: #F24818;
  --work-placeholder-blue: #000000;
  --page-bg: var(--landing-bg);
  --header-bg: var(--landing-bg);
  --header-text: #16110d;
  --text: #16110d;
  --page-margin-top: 23px;
  --page-margin-bottom: 20px;
  --page-margin-x: 25px;
  --header-height: 24px;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 7rem;
  --content-width: 1440px;
  --legal-font-size: 14px;
  --legal-line-height: 1.05;
  --legal-leading: calc(var(--legal-font-size) * var(--legal-line-height));
}

/*
Breakpoint system
- Phone: 0 - 640px
- Tablet: 641px - 960px
- Desktop: 961px - 1799px
- Desktop XL: 1800px+

Base styles in this file are the default Desktop layer unless wrapped
in a more specific media query.
*/

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  padding: var(--page-margin-top) var(--page-margin-x) var(--page-margin-bottom);
  background: var(--page-bg);
  color: var(--text);
  font-family: "Suisse Intl", system-ui, sans-serif;
  overscroll-behavior: none;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

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

@media (hover: hover) and (pointer: fine) {
  html,
  html body,
  html body * {
    cursor: none !important;
  }
}

.crosshair-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  color: #000000;
  border: 0 solid transparent;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2000;
  opacity: 0;
  transform: translate3d(-100px, -100px, 0);
  transition: opacity 120ms ease, width 120ms ease, height 120ms ease, border-color 120ms ease;
}

.crosshair-cursor::before,
.crosshair-cursor::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transition: opacity 120ms ease;
}

.crosshair-cursor::before {
  width: 2px;
  height: 100%;
  transform: translate(-50%, -50%);
}

.crosshair-cursor::after {
  width: 100%;
  height: 2px;
  transform: translate(-50%, -50%);
}

.crosshair-cursor.is-visible {
  opacity: 1;
}

.crosshair-cursor.is-circle {
  width: 22px;
  height: 22px;
  border-width: 2px;
  border-color: currentColor;
}

.crosshair-cursor.is-circle::before,
.crosshair-cursor.is-circle::after {
  opacity: 0;
}

body.view-work {
  --page-bg: var(--landing-bg);
  --header-bg: transparent;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

body.view-home,
body.view-landing {
  --header-bg: transparent;
  padding: 0;
  transition: background-color 240ms ease, color 240ms ease;
}

body.view-about {
  --header-bg: transparent;
}

body.view-legal {
  --header-bg: transparent;
  padding: 0;
}

body.cookie-banner-visible {
  overflow: hidden;
}

body.debug-layout::before {
  content: "";
  position: fixed;
  inset: var(--page-margin-top) var(--page-margin-x) var(--page-margin-bottom);
  border: 1px dashed rgba(255, 255, 255, 0.95);
  pointer-events: none;
  z-index: 9999;
}

body.debug-layout .site-header,
body.debug-layout .header-bar,
body.debug-layout .view,
body.debug-layout .hero,
body.debug-layout .hero-copy,
body.debug-layout .about-shell,
body.debug-layout .about-copy,
body.debug-layout .about-meta,
body.debug-layout .about-links,
body.debug-layout .legal-split-main,
body.debug-layout .legal-pane,
body.debug-layout .legal-shell,
body.debug-layout .legal-section,
body.debug-layout .work-canvas,
body.debug-layout .work-track,
body.debug-layout .work-segment,
body.debug-layout .work-placeholder,
body.debug-layout .work-stack,
body.debug-layout .work-stack-item {
  outline: 1px solid rgba(255, 255, 255, 0.8);
  outline-offset: -1px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

main {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.legal-split-page {
  padding: 0;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

.legal-split-main {
  position: static;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1fr);
  align-items: stretch;
  gap: 3rem;
  flex: 1;
  min-height: 0;
  height: 100%;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: var(--page-margin-x);
  padding-right: var(--page-margin-x);
  overflow: hidden;
}

.legal-pane {
  min-width: 0;
  min-height: 0;
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: clamp(2rem, 5vh, 4rem);
}

.legal-pane::-webkit-scrollbar {
  display: none;
}

.legal-shell {
  width: 100%;
  margin: 0;
  padding-top: calc(var(--header-height) + clamp(1.5rem, 4vh, 3rem) + 50px);
  display: grid;
  gap: var(--legal-leading);
}

.legal-pane--left .legal-shell {
  margin-left: 0;
  margin-right: 0;
}

.legal-pane--right .legal-shell {
  margin-left: 0;
  margin-right: 0;
}

.legal-section {
  display: grid;
  gap: var(--legal-leading);
}

.legal-kicker,
.legal-heading,
.legal-text,
.legal-address,
.legal-inline-link {
  font-family: "Suisse Intl", system-ui, sans-serif;
  font-size: var(--legal-font-size);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: var(--legal-line-height);
  margin: 0;
  text-transform: none;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.legal-address {
  display: grid;
  gap: 0;
}

.legal-address p {
  margin: 0;
}

.legal-inline-link {
  color: inherit;
}

@media (min-width: 961px) {
  .about-nowrap-xl {
    white-space: nowrap;
  }
}

@media (min-width: 1800px) {
  .legal-split-main {
    width: min(100%, 2200px);
    gap: 3rem;
    margin-left: 0;
    margin-right: auto;
  }

  .about-shell {
    margin-top: clamp(150px, 16vh, 240px);
  }

  .about-copy {
    font-size: 36px;
  }

  .site-nav {
    --link-underline-thickness: 1.6px;
  }
}

.view {
  position: absolute;
  inset: 0;
  display: none;
  padding-top: var(--header-height);
  z-index: 0;
}

.view.is-active {
  display: flex;
  z-index: 1;
}

.view--page {
  align-items: flex-end;
}

.view--landing {
  align-items: stretch;
  padding-top: 0;
  background: var(--page-bg);
}

.view--landing.is-transition-exit {
  z-index: 1;
  transform: translateY(0);
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.view--landing.is-transition-exit.is-transition-exit-active {
  transform: translateY(-100%);
}

.view--work {
  align-items: stretch;
  padding-top: calc(var(--header-height) + 15px);
}

.view--work.is-transition-enter {
  z-index: 2;
  transform: translateY(100%);
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.view--work.is-transition-enter.is-transition-enter-active {
  transform: translateY(0);
}

.view--about {
  flex-direction: column;
  align-items: flex-start;
}

.view--legal {
  align-items: stretch;
  padding-top: 0;
}

.view--landing .hero {
  width: 100%;
  flex: 1;
  position: relative;
  padding-top: calc(var(--header-height) + var(--page-margin-top));
  padding-left: var(--page-margin-x);
  padding-right: var(--page-margin-x);
}

.site-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: fixed;
  top: var(--page-margin-top);
  left: var(--page-margin-x);
  right: var(--page-margin-x);
  padding: 0;
  color: var(--header-text);
  z-index: 1000;
  transition: color 240ms ease;
}

.header-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: calc(var(--header-height) + var(--page-margin-top) + 15px);
  background: var(--header-bg);
  pointer-events: none;
  z-index: 900;
  transition: background 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.legal-split-page .header-bar {
  display: none;
}

.cookie-banner-overlay {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1300;
}

.cookie-banner-overlay[hidden] {
  display: none;
}

body.cookie-banner-visible .cookie-banner-overlay {
  display: block;
}

.cookie-banner {
  position: fixed;
  left: var(--page-margin-x);
  right: auto;
  bottom: calc(var(--page-margin-bottom) + 24px);
  width: clamp(28rem, 30vw, 34rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: end;
  padding: 14px 16px;
  background: rgba(246, 236, 223, 0.96);
  border: 1px solid rgba(22, 17, 13, 0.18);
  border-radius: 4px;
  backdrop-filter: blur(10px);
  z-index: 1400;
  transform: translateY(calc(100% + 48px));
  pointer-events: none;
  will-change: transform;
  transition: transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-banner[hidden] {
  display: none;
}

body.cookie-banner-visible .cookie-banner {
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner__copy,
.cookie-banner__button {
  font-family: "Suisse Intl", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.08;
  color: var(--text);
}

.cookie-banner__copy {
  margin: 0;
  max-width: 42rem;
}

.cookie-banner__link {
  text-decoration: underline;
  text-underline-offset: 0.12em;
  text-decoration-thickness: 1px;
}

.cookie-banner__actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.cookie-banner__button {
  appearance: none;
  border: 1px solid currentColor;
  border-radius: 4px;
  background: #16110d;
  color: #f6ecdf;
  padding: 0.52rem 0.82rem 0.46rem;
  cursor: pointer;
  transition: background 130ms ease, color 130ms ease, transform 90ms ease;
}

.cookie-banner__button:focus-visible,
.cookie-banner__button:hover,
.cookie-banner__button:active {
  background: #f6ecdf;
  color: #16110d;
}

.cookie-banner__button:active {
  transform: translateY(1px);
}

.caption,
.eyebrow,
.project-number {
  font-size: 18.5px;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.caption,
.site-nav {
  font-family: "Suisse Intl", system-ui, sans-serif;
  font-weight: 400;
}

.body {
  font-size: 25.4px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.28em;
  transform: translateY(-2px);
}

.brand::after {
  content: "←";
  display: inline-block;
  width: 0.72em;
  flex: 0 0 0.72em;
  font-family: "Suisse Intl", system-ui, sans-serif;
  font-size: 1em;
  line-height: 1;
  opacity: 0;
  transform: translateX(0.12em);
  transition: opacity 130ms ease, transform 130ms ease;
}

.brand:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.site-nav {
  display: flex;
  width: 25vw;
  justify-content: space-between;
  align-items: start;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.28em;
  text-decoration: none;
  font-style: normal;
}

.site-nav a::before {
  content: "→";
  display: inline-block;
  width: 0.72em;
  flex: 0 0 0.72em;
  font-family: "Suisse Intl", system-ui, sans-serif;
  font-size: 1em;
  line-height: 1;
  opacity: 0;
  transform: translateX(0.12em);
  transition: opacity 130ms ease, transform 130ms ease;
}

.site-nav a::after {
  content: none;
}

.site-nav a[aria-current="page"]::before,
.site-nav a:focus-visible::before {
  opacity: 1;
  transform: translateX(0);
}

@keyframes nav-arrow-blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.about-links a,
.about-meta a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-style: normal;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 2px;
  padding-bottom: 0.06em;
  transition: background-size 130ms ease;
}

.about-links a::after,
.about-meta a::after {
  content: none;
}

.about-links a:focus-visible,
.about-meta a:focus-visible {
  background-size: 100% 2px;
}

@media (hover: hover) and (pointer: fine) {
  .brand:hover::after {
    opacity: 1;
    transform: translateX(0);
    animation: nav-arrow-blink 0.65s steps(1, end) infinite;
  }

  .site-nav a:not([aria-current="page"]):hover::before {
    opacity: 1;
    transform: translateX(0);
    animation: nav-arrow-blink 0.65s steps(1, end) infinite;
  }

  .about-links a:hover,
  .about-meta a:hover {
    background-size: 100% 2px;
  }
}

.hero {
  width: 100%;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
}

.hero-copy {
  align-self: flex-end;
  width: 100%;
  max-width: none;
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1), opacity 420ms ease;
  will-change: transform, opacity;
  position: relative;
  z-index: 2;
}

.hero-centerpiece {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(17rem, 31vw, 28rem);
  aspect-ratio: 1;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translate(-50%, -50%);
  z-index: 1;
  cursor: pointer;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

.hero-centerpiece__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-centerpiece__image--secondary {
  opacity: 0;
}

.hero-centerpiece__image.is-loaded.hero-centerpiece__image--primary {
  visibility: visible;
  opacity: 1;
}

.hero-centerpiece__image.is-loaded.hero-centerpiece__image--secondary {
  visibility: visible;
  opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
  .hero-centerpiece:hover .hero-centerpiece__image--primary.is-loaded,
  .hero-centerpiece:focus-visible .hero-centerpiece__image--primary.is-loaded {
    opacity: 0;
  }

  .hero-centerpiece:hover .hero-centerpiece__image--secondary.is-loaded,
  .hero-centerpiece:focus-visible .hero-centerpiece__image--secondary.is-loaded {
    opacity: 1;
  }
}

.hero-centerpiece.is-alt .hero-centerpiece__image--primary.is-loaded {
  opacity: 0;
}

.hero-centerpiece.is-alt .hero-centerpiece__image--secondary.is-loaded {
  opacity: 1;
}

body.is-home-inverted .view--landing,
body.is-home-inverted.view-home,
body.is-home-inverted.view-landing {
  --page-bg: #000;
  --header-text: var(--landing-bg);
}

.work-canvas {
  width: 100%;
  flex: 1;
  min-width: 0;
  min-height: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.work-canvas::-webkit-scrollbar {
  display: none;
}

.work-track {
  width: max-content;
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  padding: 0;
}

.work-segment {
  flex: 0 0 auto;
  width: max-content;
  height: 100%;
  display: flex;
  align-items: stretch;
}

.work-placeholder {
  flex: 0 0 auto;
  height: 100%;
  border-right: 1px solid #16110d;
}

.work-placeholder--image {
  position: relative;
  display: flex;
  align-items: stretch;
  margin: 0;
  overflow: hidden;
  background: var(--work-placeholder-bg, transparent);
}

.work-image {
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: contain;
}

.work-video {
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: contain;
  display: block;
}

.js-lazy-media {
  opacity: 0;
  transition: opacity 260ms ease;
}

.js-lazy-media.is-loaded {
  opacity: 1;
}

.work-placeholder--image-auto {
  width: auto;
  flex: 0 0 auto;
}

.work-stack {
  flex: 0 0 auto;
  width: auto;
  height: 100%;
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-right: 1px solid #16110d;
  background: #fff;
}

.work-stack-item {
  flex: 1 1 0;
  min-height: 0;
  width: 100%;
  display: flex;
  align-items: stretch;
  margin: 0;
  overflow: hidden;
  background: var(--work-placeholder-bg, #fff);
}

.work-stack-item .work-image {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
}

.work-stack-item + .work-stack-item {
  border-top: 1px solid #16110d;
}

.work-image--soft-bleed {
  transform: scale(1.01);
  transform-origin: center center;
}

.work-placeholder--tone-charcoal {
  --work-placeholder-bg: var(--work-placeholder-blue);
}

.work-placeholder--tone-cream {
  --work-placeholder-bg: var(--work-placeholder-blue);
}

.work-placeholder--tone-paper {
  --work-placeholder-bg: #f4f1ea;
}

.work-placeholder--tone-sage {
  --work-placeholder-bg: var(--work-placeholder-blue);
}

.work-placeholder--tone-blue {
  --work-placeholder-bg: var(--work-placeholder-blue);
}

.work-placeholder--tone-rose {
  --work-placeholder-bg: var(--work-placeholder-blue);
}

.work-placeholder--tone-sand {
  --work-placeholder-bg: var(--work-placeholder-blue);
}

.about-shell {
  width: min(60rem, 100%);
  margin-top: clamp(130px, 14vh, 200px);
  margin-left: auto;
  margin-right: 0;
  align-self: flex-start;
}

.about-copy {
  font-family: "PP Editorial New", serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0.02em;
  text-align: right;
  text-transform: none;
}

.about-meta {
  margin-top: auto;
  margin-left: auto;
  margin-right: 0;
  margin-bottom: 0.35rem;
  align-self: flex-end;
  font-family: "Suisse Intl", system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-align: right;
  text-transform: lowercase;
}

.about-meta a {
  color: inherit;
  text-decoration: none;
}

.about-links {
  margin-top: 26px;
  margin-left: auto;
  margin-right: 0;
  display: grid;
  justify-items: end;
  gap: 0.3rem;
  align-self: flex-end;
  font-family: "Suisse Intl", system-ui, sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.65rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.96;
  text-align: right;
  text-transform: lowercase;
}

.about-links a {
  color: inherit;
  text-decoration: none;
  width: max-content;
  justify-self: end;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "PP Editorial New", serif;
  font-weight: 300;
  line-height: 0.92;
}

.hero-title {
  display: block;
  width: calc(100% + (var(--page-margin-x) * 2));
  font-family: "PP Editorial New UltraLight", serif;
  font-weight: 200;
  font-size: calc((100vw - (var(--page-margin-x) * 2)) / 4.28);
  line-height: 0.82;
  letter-spacing: -0.04em;
  word-spacing: 0.04em;
  white-space: nowrap;
  margin-left: calc(var(--page-margin-x) * -1);
  padding-top: 0.16em;
  margin-top: -0.16em;
  transform: translateY(0.045em);
  transform-origin: bottom left;
  overflow: hidden;
  -webkit-text-stroke: 0 transparent;
  transition: color 240ms ease, -webkit-text-stroke-color 240ms ease;
}

body.is-home-inverted .hero-title {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--landing-bg);
}

body.is-home-inverted .brand,
body.is-home-inverted .site-nav a {
  color: var(--landing-bg);
}

body.is-home-inverted .crosshair-cursor {
  color: var(--landing-bg);
}

.hero-marquee-track {
  --hero-marquee-gap: 0.3em;
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: hero-marquee 42s linear infinite;
  will-change: transform;
}

.hero-marquee-group {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: baseline;
  gap: var(--hero-marquee-gap);
  padding-right: var(--hero-marquee-gap);
}

.hero-marquee-item {
  flex: 0 0 auto;
  display: inline-block;
}

@keyframes hero-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-marquee-track {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }
}

/* Tablet and below */
@media (max-width: 960px) {
  .hero-centerpiece__image {
    transition: none;
  }

  .view--about {
    padding-bottom: clamp(1.5rem, 4vh, 2.5rem);
  }

  .cookie-banner {
    left: var(--page-margin-x);
    right: var(--page-margin-x);
    bottom: calc(var(--page-margin-bottom) + 16px);
    width: auto;
    transform: none;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cookie-banner__actions {
    justify-content: flex-start;
  }

  .caption {
    font-size: 16px;
  }

  .body {
    font-size: 21px;
  }

  .hero {
    min-height: 0;
    padding-top: 0;
  }

  .work-canvas {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .work-track {
    width: 100%;
    min-width: 0;
    min-height: 100%;
    height: max-content;
    flex-direction: column;
  }

  .work-segment {
    width: 100%;
    height: auto;
    min-height: 100%;
    flex-direction: column;
  }

  .work-placeholder {
    width: 100%;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid #16110d;
  }

  .work-placeholder--image,
  .work-placeholder--image-auto {
    width: 100%;
    height: auto;
  }

  .work-stack {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    display: block;
    align-items: stretch;
    border-right: 0;
    border-bottom: 1px solid #16110d;
  }

  .work-stack-item {
    display: block;
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
  }

  .work-stack-item + .work-stack-item {
    border-top: 1px solid #16110d;
  }

  .work-stack-item .work-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
  }

  .work-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
  }

  .work-video {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: -1px;
  }

  .work-image--soft-bleed {
    transform: translateY(-0.18%) scale(1.004);
  }

  .about-shell {
    width: 100%;
    margin-top: 100px;
    margin-left: 0;
    margin-right: 0;
  }

  .about-copy {
    font-size: 26px;
    text-align: left;
  }

  .about-nowrap-xl {
    white-space: normal;
  }

  .about-meta {
    position: absolute;
    left: var(--page-margin-x);
    bottom: max(clamp(1.5rem, 4vh, 2.5rem), env(safe-area-inset-bottom));
    margin: 0;
    align-self: auto;
    text-align: left;
  }

  .about-links {
    margin-top: 24px;
    justify-items: start;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
  }

  .about-links a {
    justify-self: start;
  }
}

/* Phone */
@media (max-width: 640px) {
  .legal-split-page {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .legal-split-page::-webkit-scrollbar {
    display: none;
  }

  body.view-legal main {
    min-height: auto;
    overflow: visible;
  }

  .view--legal.is-active {
    position: relative;
    inset: auto;
    display: block;
    overflow: visible;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: flex-start;
  }

  .brand {
    justify-self: start;
  }

  .site-nav {
    display: contents;
  }

  .site-nav a {
    display: inline-block;
    line-height: 1;
  }

  .site-nav a::before {
    position: absolute;
    top: 50%;
    left: -0.88em;
    width: auto;
    flex: none;
    transform: translate3d(0.12em, -50%, 0);
  }

  .site-nav a[aria-current="page"]::before,
  .site-nav a:focus-visible::before {
    transform: translate3d(0, -50%, 0);
  }

  .site-nav a:not([aria-current="page"]):hover::before {
    transform: translate3d(0, -50%, 0);
  }

  .site-nav a:first-child {
    justify-self: center;
  }

  .site-nav a:last-child {
    grid-column: 3;
    justify-self: end;
  }

  .hero {
    width: min(100%, var(--content-width));
  }

  .hero-centerpiece {
    width: calc(100vw - (var(--page-margin-x) * 4.4));
    max-width: calc(100vw - (var(--page-margin-x) * 4.4));
  }

  .legal-shell {
    width: 100%;
  }

  .legal-split-main {
    display: block;
    flex: 0 0 auto;
    height: auto;
    min-height: 0;
    overflow: visible;
    padding-bottom: clamp(2rem, 6vh, 3rem);
  }

  .legal-pane {
    height: auto;
    overflow: visible;
  }

  .legal-pane + .legal-pane {
    margin-top: calc(var(--legal-leading) * 2);
    padding-top: calc(var(--legal-leading) * 2);
    border-top: 1px solid currentColor;
  }

  .legal-pane--left .legal-shell,
  .legal-pane--right .legal-shell {
    margin-left: 0;
    margin-right: 0;
  }

  .about-shell {
    width: 100%;
    margin-top: 100px;
    margin-left: 0;
    margin-right: 0;
  }

  .caption {
    font-size: 16px;
  }

  .body {
    font-size: 21px;
  }

  .about-copy {
    font-size: 26px;
    text-align: center;
  }

  .about-nowrap-xl {
    white-space: nowrap;
  }

  .about-meta {
    position: absolute;
    left: var(--page-margin-x);
    right: var(--page-margin-x);
    bottom: max(clamp(1.5rem, 4vh, 2.5rem), env(safe-area-inset-bottom));
    margin: 0;
    width: auto;
    align-self: auto;
    text-align: center;
  }

  .about-links {
    font-size: clamp(1rem, 4.1vw, 1.2rem);
    margin-top: 24px;
    justify-items: center;
    margin-left: auto;
    margin-right: auto;
    align-self: center;
    text-align: center;
  }

  .about-links a {
    justify-self: center;
  }

  .cookie-banner {
    left: var(--page-margin-x);
    right: var(--page-margin-x);
    bottom: max(var(--page-margin-bottom), env(safe-area-inset-bottom));
    padding: 12px 14px;
    gap: 0.9rem;
  }

  .cookie-banner__copy,
  .cookie-banner__button {
    font-size: 14px;
  }

  .hero-title {
    font-size: var(--hero-mobile-fit-size, calc((100vw - (var(--page-margin-x) * 2)) / 2.2));
    line-height: 0.89;
    word-spacing: 0.04em;
  }
}
