:root {
  --warm-white: #f8f7f4;
  --warm-paper: #efede8;
  --charcoal: #1d1b19;
  --muted: #6f675f;
  --soft-muted: #8c837a;
  --line: rgba(29, 27, 25, 0.16);
  --placeholder-a: #d7d0c5;
  --placeholder-b: #b8afa2;
  --page-gutter: 30px;
  --statement-size: clamp(4.83rem, 7.82vw, 10.64rem);
  --about-serif-size: clamp(3.6rem, 4.2vw, 5.6rem);
  --small-copy-size: clamp(1rem, 1.05vw, 1.25rem);
  --project-caption-size: clamp(1.65rem, 3.15vw, 3.75rem);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

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

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

.mobile-keep {
  white-space: normal;
}

.mobile-break {
  display: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 58px;
  padding: 30px 30px 29px;
  background: transparent;
  isolation: isolate;
  pointer-events: none;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(248, 247, 244, 1) 0%,
    rgba(248, 247, 244, 0.72) 28%,
    rgba(248, 247, 244, 0.34) 68%,
    rgba(248, 247, 244, 0.08) 90%,
    rgba(248, 247, 244, 0) 100%
  );
  pointer-events: none;
  transition: bottom 180ms ease;
}

.site-header.is-menu-open::before {
  bottom: -132px;
}

.site-header a,
.menu-toggle {
  pointer-events: auto;
  transform: translateY(-5px);
}

.nav-links a {
  transform: translateY(-5px);
}

.brand,
.nav-links a,
.text-ctas a,
.project-meta,
.services-list,
.footer-action a {
  font-family: var(--font-body);
  font-size: var(--small-copy-size);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(61px, 4.42vw, 87px);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 22px;
  height: 22px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.25px;
  background: currentColor;
  transform: scaleY(1);
  transform-origin: center;
  transition: transform 220ms ease, top 220ms ease;
}

.menu-toggle span:first-child {
  top: 5px;
}

.menu-toggle span:last-child {
  top: 16px;
}

.site-header.is-menu-open .menu-toggle span:first-child {
  top: 11px;
  transform: rotate(28deg) scaleY(1);
}

.site-header.is-menu-open .menu-toggle span:last-child {
  top: 11px;
  transform: rotate(-28deg) scaleY(1);
}

.nav-links a,
.text-ctas a,
.footer-action a {
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, opacity 180ms ease;
}

.nav-links a:hover,
.text-ctas a:hover,
.footer-action a:hover {
  border-color: currentColor;
}

.hero {
  width: 100vw;
  height: 100vh;
  min-height: 520px;
  overflow: hidden;
  background: var(--warm-paper);
}

.hero-carousel,
.hero-slide,
.hero-slide img {
  width: 100%;
  height: 100%;
}

.hero-carousel {
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1100ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  display: block;
  object-fit: cover;
  object-position: var(--object-position, center center);
  transform: scale(var(--hero-scale, 1.04));
  transform-origin: center center;
}

.section-inner {
  width: min(calc(100% - (var(--page-gutter) * 2)), 1380px);
  margin: 0 auto;
}

.section-inner.narrow {
  width: min(calc(100% - (var(--page-gutter) * 2)), 980px);
}

.headline-section {
  padding: 80px 0;
}

.headline-section .section-inner,
.intro-section .section-inner {
  width: min(80vw, calc(100% - (var(--page-gutter) * 2)));
  max-width: none;
  margin-left: var(--page-gutter);
  margin-right: auto;
  text-align: left;
}

.intro-section .section-inner {
  width: min(80vw, calc(100% - (var(--page-gutter) * 2)));
  margin-left: var(--page-gutter);
  margin-right: auto;
}

.headline-section h1,
.about-section h2,
.section-heading h2,
.footer-brand {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: 0;
}

.headline-section h1 {
  width: 100%;
  max-width: none;
  font-size: var(--statement-size);
  line-height: calc(1.02em + 2pt);
}

.headline-section h1 span {
  display: block;
  white-space: nowrap;
}

.headline-section h1 .headline-line-mobile {
  display: none;
}

.headline-section h1 .take-kern {
  display: inline-flex;
}

.headline-section h1 .take-kern span {
  display: inline-block;
}

.headline-section h1 .take-kern span + span {
  margin-left: calc(-0.25rem + 2pt);
}

.headline-section h1 .take-kern .take-k {
  margin-left: calc(-0.125rem + 2pt);
}

.headline-section p {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--soft-muted);
  font-size: var(--small-copy-size);
  line-height: 1.25;
  text-transform: uppercase;
}

.text-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 0;
}

.intro-ctas {
  margin-top: 20px;
  color: var(--soft-muted);
  font-size: var(--small-copy-size);
}

.intro-section {
  padding: 30px 0;
  background: rgba(163, 163, 163, 0.18);
  color: var(--charcoal);
}

.intro-section p {
  width: 100%;
  max-width: min(80vw, calc(100vw - (var(--page-gutter) * 2)));
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--about-serif-size);
  font-weight: 300;
  line-height: 1.08;
  text-wrap: pretty;
}

.intro-section p span {
  display: block;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: normal;
}

.intro-copy-compact {
  display: none;
}

.work-section {
  padding: 30px 0 25px;
  scroll-margin-top: 94px;
}

.work-section .section-inner {
  width: calc(100% - (var(--page-gutter) * 2));
  max-width: none;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(32px, 5vw, 72px);
}

.section-heading h2,
.about-section h2 {
  font-size: clamp(3rem, 8vw, 9rem);
}

.section-heading p {
  margin: 0 0 12px;
  color: var(--muted);
}

.project-list {
  display: grid;
  gap: 30px;
}

.project-module {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 15px;
  width: 100%;
}

.project-module-offset {
  justify-self: stretch;
  width: 100%;
}

.project-image-placeholder {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  transition: filter 240ms ease, transform 240ms ease;
}

.project-image-placeholder img,
.project-image-placeholder video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.project-image-contain {
  background: #fff;
}

.project-image-video-contain {
  position: relative;
  background: #ebe8e2;
  isolation: isolate;
}

.project-image-video-contain::before,
.project-image-video-contain::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.project-image-video-contain::before {
  inset: 0;
  background:
    linear-gradient(
      to right,
      #ebe8e2 0%,
      #ebe8e2 28%,
      rgba(255, 255, 255, 0) 39%,
      rgba(255, 255, 255, 0) 59%,
      #ebe8e2 70%,
      #ebe8e2 100%
    ),
    linear-gradient(
      to bottom,
      #ebe8e2 0,
      #ebe8e2 7px,
      rgba(255, 255, 255, 0) 22px
    );
}

.project-image-video-contain::after {
  display: none;
}

.project-image-video-contain video {
  position: relative;
  z-index: 0;
  object-fit: contain;
  background: #ebe8e2;
  object-position: center center;
  mix-blend-mode: multiply;
  transform: scale(1);
}

.project-image-contain img {
  object-fit: contain;
  transform: translate(0%, -3%) scale(1.22);
}

.project-image-summer img {
  object-fit: cover;
  object-position: 78% 54%;
  transform: scale(2.37);
  transform-origin: 78% 54%;
}

.project-module:hover .project-image-placeholder {
  filter: brightness(0.96);
  transform: translateY(-2px);
}

.project-meta {
  display: grid;
  justify-content: start;
  gap: 2px;
  color: var(--charcoal);
  font-size: var(--project-caption-size);
  line-height: 0.96;
}

.project-meta span {
  white-space: nowrap;
}

.project-meta span:last-child {
  color: var(--charcoal);
  text-align: left;
}

.about-section {
  padding: 80px 0 0;
  background: var(--warm-white);
  color: var(--charcoal);
  scroll-margin-top: 94px;
}

.about-section .section-inner {
  width: calc(100% - (var(--page-gutter) * 2));
  max-width: none;
}

.services-section .section-inner {
  width: min(78vw, calc(100vw - (var(--page-gutter) * 2)));
  max-width: none;
  margin-left: var(--page-gutter);
  margin-right: auto;
}

.about-grid {
  display: block;
}

.about-section p {
  margin: 0;
  max-width: min(78vw, calc(100vw - (var(--page-gutter) * 2)));
  color: var(--charcoal);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--about-serif-size);
  line-height: 1.08;
}

.services-section {
  padding: 30px 0 80px;
  background: var(--warm-white);
}

.services-list {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: space-between;
  gap: 5px;
  margin: 0;
  padding: 0;
  border-top: 0;
}

.services-list ul {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-list li,
.services-list a {
  min-height: 0;
  padding: 0;
  border-bottom: 0;
  color: var(--charcoal);
  font-size: var(--small-copy-size);
  line-height: 1.25;
}

.services-list a {
  color: var(--soft-muted);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 25px;
  min-height: 116px;
  padding: 36px var(--page-gutter) 30px;
  background: var(--warm-white);
}

.footer-main {
  display: grid;
  gap: 2px;
  max-width: none;
  margin: 0;
  padding: 0;
  border-top: 0;
}

.footer-main p {
  margin: 0;
}

.footer-main p {
  color: var(--soft-muted);
  font-size: calc(0.57rem * 1.3);
  line-height: 1.25;
}

.footer-brand {
  width: calc(38px * 1.3);
  min-width: 0;
  margin-bottom: calc(9px * 1.3);
  transform: translateY(-3px);
}

.footer-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-action {
  display: flex;
  justify-content: flex-end;
}

.footer-action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 7px 9px;
  border-radius: 999px;
  background: #4f75ff;
  color: #fff;
  font-size: var(--small-copy-size);
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  border-bottom: 0;
}

.case-study-page {
  padding-top: 120px;
}

.case-study-hero,
.case-study-body {
  padding: 25px 0;
}

.case-study-kicker,
.case-study-details ul {
  margin: 0;
  color: var(--soft-muted);
  font-family: var(--font-body);
  font-size: var(--small-copy-size);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.case-study-hero h1 {
  max-width: min(78vw, calc(100vw - (var(--page-gutter) * 2)));
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: var(--statement-size);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.95;
}

.case-study-summary,
.case-study-details p {
  max-width: min(78vw, calc(100vw - (var(--page-gutter) * 2)));
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: var(--about-serif-size);
  font-weight: 300;
  line-height: 1.08;
}

.case-study-media {
  padding: 25px 0;
}

.case-study-media figure {
  margin: 0;
}

.case-study-media img,
.case-study-media video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.case-study-details {
  display: grid;
  gap: 25px;
}

.case-study-details ul {
  display: grid;
  gap: 4px;
  padding: 0;
  list-style: none;
}

@media (max-width: 820px) {
  :root {
    --about-serif-size: clamp(1.8rem, 3.45vw, 3.25rem);
    --project-caption-size: clamp(1.4rem, 3.4vw, 2.5rem);
  }

  @supports (height: 100svh) {
    .hero {
      height: 100svh;
    }
  }

  @supports (height: 100dvh) {
    .hero {
      height: 100dvh;
    }
  }

  .site-header {
    min-height: 52px;
    padding-top: 13px;
    padding-bottom: 23px;
  }

  .intro-copy-desktop {
    display: none;
  }

  .intro-copy-compact {
    display: block;
  }

  .intro-copy-compact-tight {
    display: none;
  }

  .intro-section .section-inner {
    width: calc(100% - (var(--page-gutter) * 2));
  }

  .hero {
    min-height: 420px;
  }

  .section-heading,
  .project-meta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .project-module,
  .project-module-offset {
    width: 100%;
  }

  .project-meta span:last-child {
    text-align: left;
  }

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

  .about-section p {
    max-width: 690px;
    font-size: var(--about-serif-size);
  }

  .services-list {
    grid-template-columns: repeat(3, max-content);
    justify-content: space-between;
    gap: 10px;
  }

  .services-list li {
    min-height: 0;
  }
}

@media (min-width: 821px) and (max-width: 1180px) and (orientation: landscape) {
  .intro-section .section-inner {
    width: min(88vw, calc(100% - (var(--page-gutter) * 2)));
  }

  .intro-section p {
    max-width: 100%;
    font-size: clamp(3.2rem, 5vw, 4.6rem);
  }
}

@media (min-width: 1181px) {
  :root {
    --project-caption-size: calc(clamp(1.65rem, 3.15vw, 3.75rem) * 0.8);
  }

  .services-section .section-inner {
    width: min(68vw, calc(100vw - (var(--page-gutter) * 2)));
  }
}

@media (orientation: portrait) {
  .site-header {
    align-items: flex-start;
    min-height: 70px;
    padding: 25px 25px 22px;
  }

  .site-header a,
  .menu-toggle {
    transform: translateY(-5px);
  }

  .menu-toggle {
    display: block;
    transform: translateY(-5px);
  }

  .nav-links {
    position: absolute;
    top: 56px;
    left: auto;
    right: 25px;
    display: grid;
    gap: 5px;
    justify-items: end;
    padding: 6px 0 0;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-header.is-menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .section-inner,
  .section-inner.narrow {
    width: calc(100% - (var(--page-gutter) * 2));
  }

  .headline-section h1 > span,
  .intro-section p span {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .headline-section h1 .headline-line-desktop {
    display: none;
  }

  .headline-section h1 .headline-line-mobile {
    display: block;
    white-space: nowrap;
    overflow-wrap: normal;
  }

  .intro-copy-compact span {
    white-space: nowrap;
    overflow-wrap: normal;
  }

  .headline-section h1,
  .intro-section p {
    text-wrap: pretty;
  }

  :root {
    --page-gutter: 25px;
    --statement-size: clamp(2.45rem, 10.8vw, 4rem);
    --about-serif-size: clamp(1.58rem, 5.75vw, 2.35rem);
    --small-copy-size: 11pt;
    --project-caption-size: 11pt;
  }

  .work-section {
    padding-top: 28px;
    padding-bottom: 15px;
  }

  .intro-section {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .headline-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .headline-section p {
    margin-top: 20px;
  }

  .headline-section p span {
    display: block;
    width: max-content;
    max-width: 100%;
  }

  .mobile-keep {
    white-space: nowrap;
  }

  .mobile-break {
    display: block;
  }

  .intro-ctas {
    margin-top: 20px;
    gap: 8px 44px;
  }

  .nav-links a,
  .headline-section p,
  .text-ctas a,
  .services-list li,
  .services-list a {
    font-size: var(--small-copy-size);
    line-height: 1.18;
  }

  .project-list {
    gap: 25px;
  }

  .project-module {
    gap: 11px;
  }

  .about-section {
    padding-top: 80px;
  }

  .services-section .section-inner {
    width: calc(100% - (var(--page-gutter) * 2));
    margin-left: var(--page-gutter);
    margin-right: var(--page-gutter);
  }

  .services-list {
    grid-template-columns: repeat(2, minmax(0, max-content));
    justify-content: space-between;
    gap: 14px 24px;
    width: 100%;
  }

  .services-list li,
  .services-list a {
    line-height: 1.18;
    white-space: nowrap;
  }

  .services-section {
    padding-top: 25px;
    padding-bottom: 80px;
  }

  .site-footer {
    min-height: 80px;
    padding-top: 18px;
    padding-bottom: 25px;
    gap: 15px;
  }

  .footer-main p {
    font-size: calc(0.43rem * 1.3);
  }

  .footer-brand {
    width: calc(29px * 1.3);
    margin-bottom: calc(7px * 1.3);
    transform: translateY(-2px);
  }

  .footer-action a {
    min-height: 16px;
    padding: 7px 9px;
  }
}

@media (max-width: 380px) {
  :root {
    --statement-size: clamp(2.15rem, 10.3vw, 3.4rem);
    --about-serif-size: clamp(1.37rem, 5.67vw, 1.96rem);
  }

  .intro-copy-compact-wide {
    display: none;
  }

  .intro-copy-compact-tight {
    display: block;
  }
}

@media (max-width: 340px) {
  :root {
    --statement-size: clamp(1.9rem, 9.8vw, 3rem);
    --about-serif-size: clamp(1.19rem, 5.39vw, 1.75rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
