:root {
  --green: #002c24;
  --green-soft: #12392f;
  --lime: #e6ffae;
  --lime-hot: #eeff8f;
  --lavender: #dfdbff;
  --paper: #f8f6f4;
  --ink: #102f29;
  --muted: #253b37;
  --rust: #a44935;
  --ease-polished: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-ui: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 0.2s;
  --duration-mid: 0.32s;
  --focus-ring: rgba(230, 255, 174, 0.72);
  --font-heading: "Aether", "Aether Regular", Georgia, "Times New Roman", serif;
  --font-body: "Neue Haas Unica Pro", "Neue Haas Unica Pro Regular", "Neue Haas Unica", "Helvetica Neue", Arial, system-ui, sans-serif;
}

@font-face {
  font-family: "Aether";
  font-style: normal;
  font-weight: 400;
  src: local("Aether"), local("Aether Regular");
}

@font-face {
  font-family: "Neue Haas Unica Pro";
  font-style: normal;
  font-weight: 400;
  src: local("Neue Haas Unica Pro"), local("Neue Haas Unica Pro Regular"), local("NeueHaasUnicaPro-Regular");
}

@font-face {
  font-family: "Neue Haas Unica Pro";
  font-style: normal;
  font-weight: 700;
  src: local("Neue Haas Unica Pro Bold"), local("NeueHaasUnicaPro-Bold");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0) 520px),
    var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  min-width: 1080px;
  text-rendering: geometricPrecision;
}

body::before {
  background:
    linear-gradient(rgba(0, 44, 36, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 44, 36, 0.028) 1px, transparent 1px);
  background-size: 100% 64px, 96px 100%;
  content: "";
  inset: 0;
  opacity: 0.32;
  pointer-events: none;
  position: fixed;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

h1,
h2,
h3,
.contact-copy .eyebrow {
  font-family: var(--font-heading);
}

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

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

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

.site-header {
  align-items: center;
  background: var(--green);
  border-bottom: 1px solid rgba(230, 255, 174, 0.16);
  box-shadow: 0 12px 30px rgba(0, 26, 22, 0.12);
  color: #f7ffe5;
  display: flex;
  height: 82px;
  justify-content: space-between;
  padding: 0 64px 0 46px;
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand-mark {
  align-items: center;
  display: flex;
  height: 54px;
  width: 54px;
}

.brand-mark img {
  height: 54px;
  object-fit: contain;
  width: 54px;
  transform-origin: 50% 50%;
  transition: transform var(--duration-mid) var(--ease-ui);
}

.brand-mark:hover img {
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  gap: 34px;
  margin-left: 120px;
}

.menu-toggle {
  display: none;
}

.main-nav a {
  color: #eff7de;
  font-size: 16px;
  line-height: 1;
  transition: color var(--duration-fast) var(--ease-ui);
}

.main-nav a:hover,
.contact-pill:hover {
  color: var(--lime);
}

.contact-pill {
  align-items: center;
  background: var(--lime);
  color: var(--green);
  display: inline-flex;
  font-size: 16px;
  height: 22px;
  justify-content: center;
  min-width: 96px;
  padding: 0 22px;
  transition: background-color var(--duration-fast) var(--ease-ui), color var(--duration-fast) var(--ease-ui), transform var(--duration-fast) var(--ease-ui);
}

.contact-pill:active {
  transform: translateY(1px);
}

.hero {
  --hero-bg: #012b24;
  --hero-bg-light: #0a3a32;
  --hero-bg-soft: #12493f;
  --hero-fx: rgba(238, 246, 221, 0.88);
  --hero-fx-quiet: rgba(238, 246, 221, 0.2);
  --hero-fx-shadow: rgba(0, 24, 20, 0.18);
  background:
    radial-gradient(circle at 18% 20%, rgba(248, 246, 244, 0.06), transparent 20%),
    radial-gradient(circle at 82% 28%, rgba(248, 246, 244, 0.05), transparent 18%),
    radial-gradient(circle at 14% 82%, rgba(248, 246, 244, 0.05), transparent 22%),
    radial-gradient(circle at 78% 74%, rgba(248, 246, 244, 0.04), transparent 18%),
    linear-gradient(180deg, var(--hero-bg-light) 0%, var(--hero-bg) 52%, #001f1a 100%);
  color: var(--lime);
  isolation: isolate;
  min-height: 612px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  animation: hero-grain 1.4s steps(2) infinite;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  content: "";
  inset: -30%;
  mix-blend-mode: soft-light;
  opacity: 0.16;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.hero-interaction {
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-mist {
  background:
    radial-gradient(circle at 50% 48%, rgba(248, 246, 244, 0.035), transparent 18%),
    radial-gradient(circle at 42% 72%, rgba(248, 246, 244, 0.025), transparent 16%);
  filter: blur(26px);
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-seesaw-wrap {
  bottom: 6vh;
  height: min(22vh, 210px);
  left: min(62vw, calc(100% - 470px));
  pointer-events: none;
  position: absolute;
  right: auto;
  width: min(34vw, 430px);
}

.hero-seesaw {
  height: 100%;
  inset: 0;
  margin: auto;
  pointer-events: none;
  position: absolute;
  width: 100%;
}

.hero-beam {
  background: var(--hero-fx);
  border-radius: 999px;
  box-shadow: 0 1px 3px var(--hero-fx-shadow);
  height: 6px;
  left: 50%;
  position: absolute;
  top: 96px;
  transform: translateX(-50%);
  transform-origin: 50% 50%;
  width: 108%;
}

.hero-fulcrum {
  background: var(--hero-fx);
  border-radius: 50%;
  box-shadow: 0 1px 5px var(--hero-fx-shadow);
  height: 46px;
  left: 50%;
  position: absolute;
  top: 95px;
  transform: translate(-50%, 9px);
  width: 46px;
}

.hero-note {
  color: var(--hero-fx);
  display: grid;
  font-size: 74px;
  height: 72px;
  left: 50%;
  line-height: 1;
  place-items: center;
  position: absolute;
  text-shadow: 0 1px 3px var(--hero-fx-shadow);
  top: 38px;
  transform: translate(-50%, 0);
  width: 56px;
  will-change: transform;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1038px;
  padding: 78px 0 80px;
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 720px;
}

.hero-copy h1 {
  animation: slide-fade-in 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
  color: var(--lime);
  font-size: 96px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0 0 28px;
}

.hero-copy p {
  animation: slide-fade-in 1.2s 0.16s cubic-bezier(0.22, 1, 0.36, 1) both;
  color: #f7fbf2;
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

.studio-section {
  background: var(--paper);
  min-height: 506px;
}

.studio-inner {
  align-items: center;
  display: grid;
  gap: 72px;
  grid-template-columns: 290px 1fr;
  margin: 0 auto;
  max-width: 1038px;
  padding: 88px 0 80px;
}

.studio-logo img {
  margin: 0 auto;
  width: 184px;
  transform-origin: 50% 50%;
  transition: transform var(--duration-mid) var(--ease-ui);
}

.studio-logo img:hover {
  transform: scale(1.025);
}

.story-panel {
  background: #fff970;
  border-radius: 0 42px 0 0;
  padding: 32px 32px 28px;
  transform-origin: 15% 50%;
}

.story-panel h2 {
  color: var(--rust);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.25;
  margin: 0 0 27px;
}

.story-panel p {
  color: #263832;
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 18px;
}

.story-panel p:last-child {
  margin-bottom: 0;
}

.outline-button {
  border: 1px solid #2e3935;
  color: #213831;
  display: inline-flex;
  font-size: 16px;
  justify-content: center;
  margin-top: 28px;
  min-width: 142px;
  padding: 10px 20px;
  transition: background-color var(--duration-mid) var(--ease-ui), color var(--duration-mid) var(--ease-ui), transform var(--duration-mid) var(--ease-ui);
}

.outline-button:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-1px);
}

.outline-button:active {
  transform: translateY(1px);
}

.work-section {
  --score-x: 50%;
  --score-y: 50%;
  background:
    radial-gradient(circle at var(--score-x) var(--score-y), rgba(255, 255, 255, 0.36), transparent 23rem),
    linear-gradient(180deg, #dfdbff 0%, #d9e2ff 54%, #dfdbff 100%);
  overflow: hidden;
  padding: 84px 0 0;
  position: relative;
}

.score-field {
  display: none;
}

.score-field span {
  background: rgba(255, 255, 255, 0.38);
  height: 2px;
  left: -4vw;
  position: absolute;
  right: -4vw;
  transform: rotate(-1.2deg);
}

.score-field span:nth-child(1) {
  top: 19%;
}

.score-field span:nth-child(2) {
  top: 20.3%;
}

.score-field span:nth-child(3) {
  top: 21.6%;
}

.score-field span:nth-child(4) {
  top: 22.9%;
}

.score-field span:nth-child(5) {
  top: 24.2%;
}

.score-field i {
  background: rgba(0, 44, 36, 0.08);
  display: block;
  height: 76%;
  position: absolute;
  top: 12%;
  width: 1px;
}

.score-field i:nth-of-type(1) {
  left: 22%;
}

.score-field i:nth-of-type(2) {
  left: 52%;
}

.score-field i:nth-of-type(3) {
  left: 78%;
}

.work-inner {
  margin: 0 auto;
  max-width: 1120px;
  position: relative;
  z-index: 1;
}

.work-heading {
  margin-bottom: 54px;
  padding-bottom: 10px;
}

.work-heading::after {
  background: var(--ink);
  content: "";
  display: block;
  height: 1px;
  margin-top: 10px;
  transform: scaleX(1);
  transform-origin: left center;
}

.work-heading h2 {
  color: var(--green);
  font-size: 88px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
}

.work-heading p {
  color: var(--ink);
  font-size: 17px;
  margin: 12px 0 0;
}

.work-row {
  align-items: center;
  background: transparent;
  border-left: 1px solid rgba(0, 44, 36, 0.08);
  display: grid;
  grid-template-columns: 610px 1fr;
  gap: 74px;
  margin-bottom: 128px;
  padding: 18px 0 18px 22px;
  position: relative;
  transition: transform var(--duration-mid) var(--ease-ui), background-color var(--duration-mid) var(--ease-ui);
}

.work-row::before {
  content: none;
}

.work-row:hover {
  background-color: transparent;
  transform: translateY(-4px);
}

.work-row-reverse {
  grid-template-columns: 330px 610px;
  gap: 42px;
  justify-content: end;
  padding-left: 0;
  padding-right: 22px;
}

.work-row-flamingo {
  grid-template-columns: 610px 1fr;
  gap: 74px;
  justify-content: start;
  margin-bottom: 126px;
}

.project-media {
  box-shadow: 0 18px 34px rgba(0, 44, 36, 0.12);
  position: relative;
  transition: box-shadow var(--duration-mid) var(--ease-ui), transform var(--duration-mid) var(--ease-ui);
  width: 610px;
}

.work-row:hover .project-media {
  box-shadow: 0 23px 42px rgba(0, 44, 36, 0.17);
  transform: translateY(-2px);
}

.project-media img {
  height: 337px;
  object-fit: cover;
  width: 610px;
}

.flamingo-media {
  height: 337px;
  overflow: hidden;
  width: 610px;
}

.flamingo-media img {
  object-position: center 50%;
  transform: scale(1.36);
  transform-origin: center center;
}

.ticker {
  align-items: center;
  background: #021812;
  bottom: 0;
  color: #fff;
  display: flex;
  font-size: 16px;
  gap: 18px;
  height: 26px;
  left: 0;
  letter-spacing: 0;
  line-height: 1;
  overflow: hidden;
  padding: 0 12px;
  position: absolute;
  right: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track {
  align-items: center;
  animation: ticker-drift 11s linear infinite;
  display: flex;
  flex: 0 0 auto;
  gap: 18px;
  min-width: max-content;
  will-change: transform;
}

.ticker-track-long {
  animation-duration: 14s;
}

.ticker-track b {
  font-size: 18px;
  font-weight: 400;
}

.ticker-track span,
.ticker-track b {
  flex: 0 0 auto;
}

.project-copy h3 {
  color: var(--green);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.08;
  margin: 0 0 8px;
}

.project-copy p {
  color: #34433f;
  font-size: 14px;
  margin: 0 0 42px;
}

.project-copy .highlight {
  background: var(--lime-hot);
  box-decoration-break: clone;
  color: var(--green);
  display: inline;
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
  padding: 0 2px;
}

.project-copy-left {
  align-self: start;
  padding-top: 82px;
}

.project-copy-left h3 {
  font-size: 47px;
  margin-bottom: 16px;
}

.pop-project {
  margin-bottom: 112px;
}

.pop-project .project-copy h3 {
  font-size: 34px;
  line-height: 1.12;
  max-width: 390px;
}

.pop-project .project-copy p {
  margin-bottom: 36px;
}

.read-more-wrap {
  margin: -10px auto 46px;
  text-align: center;
}

.read-more {
  align-items: center;
  background: var(--lime);
  color: #172e28;
  display: inline-flex;
  font-size: 15px;
  gap: 9px;
  justify-content: center;
  letter-spacing: 1.5px;
  min-width: 142px;
  padding: 14px 20px;
  transition: background-color var(--duration-fast) var(--ease-ui), color var(--duration-fast) var(--ease-ui), transform var(--duration-fast) var(--ease-ui);
}

.read-more:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-1px);
}

.read-more:active {
  transform: translateY(1px);
}

.read-more span {
  font-size: 30px;
  line-height: 14px;
  margin-top: -2px;
}

.score-cta-staff {
  height: 118px;
  left: 50%;
  margin: 18px 0 0;
  max-width: none;
  position: relative;
  transform: translateX(-50%);
  width: 100vw;
}

.score-line {
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
}

.score-line:nth-child(1) {
  top: 31px;
}

.score-line:nth-child(2) {
  top: 43px;
}

.score-line:nth-child(3) {
  top: 55px;
}

.score-line:nth-child(4) {
  top: 67px;
}

.score-line:nth-child(5) {
  top: 79px;
}

.score-note {
  animation: note-wiggle 1.35s ease-in-out infinite;
  color: #bb4525;
  display: inline-block;
  font-size: 42px;
  position: absolute;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
  transform-origin: 50% 75%;
}

.note-a {
  left: 38%;
  top: 28px;
}

.note-b {
  animation-duration: 1.22s;
  animation-delay: -0.12s;
  left: 50%;
  top: 18px;
}

.note-c {
  animation-duration: 1.12s;
  animation-delay: -0.22s;
  left: 62%;
  top: 30px;
}

.contact-section {
  background: var(--paper);
  padding: 78px 0 92px;
}

.contact-inner {
  display: grid;
  gap: 78px;
  grid-template-columns: 1fr 450px;
  margin: 0 auto;
  max-width: 1038px;
}

.contact-copy .eyebrow {
  color: #282828;
  font-size: 62px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 52px;
}

.contact-copy h2 {
  color: #242323;
  font-size: 36px;
  line-height: 1;
  margin: 0 0 24px;
}

.contact-copy p:not(.eyebrow) {
  color: #242323;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  max-width: 520px;
}

.contact-form {
  padding-top: 80px;
}

.contact-form h3 {
  color: var(--green);
  font-size: 16px;
  margin: 0 0 22px;
}

.contact-form label {
  color: var(--green);
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
}

.contact-form input {
  background: transparent;
  border: 1px solid #666;
  color: var(--green);
  display: block;
  font: inherit;
  height: 44px;
  margin-bottom: 12px;
  padding: 8px 12px;
  width: 376px;
  transition: border-color var(--duration-fast) var(--ease-ui), box-shadow var(--duration-fast) var(--ease-ui), background-color var(--duration-fast) var(--ease-ui);
}

.contact-form input:focus {
  background: rgba(255, 255, 255, 0.32);
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(230, 255, 174, 0.34);
  outline: 0;
}

.contact-form button {
  background: var(--lime);
  border: 0;
  color: var(--green);
  cursor: pointer;
  font: inherit;
  height: 41px;
  min-width: 176px;
  transition: background-color var(--duration-fast) var(--ease-ui), color var(--duration-fast) var(--ease-ui), transform var(--duration-fast) var(--ease-ui);
}

.contact-form button:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-1px);
}

.contact-form button:active {
  transform: translateY(1px);
}

.form-message {
  color: var(--green);
  font-size: 14px;
  min-height: 20px;
  margin: 12px 0 0;
}

.form-message.error {
  color: #9a321f;
}

.services-page,
.about-page,
.projects-page,
.recognition-page {
  background: var(--paper);
  color: var(--green);
}

body.services-page {
  min-width: 0;
}

.services-page main,
.about-page main,
.projects-page main,
.recognition-page main {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 300px),
    linear-gradient(90deg, rgba(0, 44, 36, 0.025), transparent 18%, transparent 82%, rgba(0, 44, 36, 0.025)),
    var(--paper);
  box-shadow: inset 0 1px 0 rgba(0, 44, 36, 0.08);
  overflow: hidden;
}

.services-page main > section,
.about-page main > section,
.projects-page main > section,
.recognition-page main > section {
  position: relative;
}

.services-page main > section::selection,
.about-page main > section::selection,
.projects-page main > section::selection,
.recognition-page main > section::selection {
  background: rgba(230, 255, 174, 0.66);
}

.services-page .site-header,
.about-page .site-header,
.projects-page .site-header,
.recognition-page .site-header {
  height: 55px;
  padding: 0 60px 0 30px;
}

.services-page .brand-mark,
.services-page .brand-mark img,
.about-page .brand-mark,
.about-page .brand-mark img,
.projects-page .brand-mark,
.projects-page .brand-mark img,
.recognition-page .brand-mark,
.recognition-page .brand-mark img {
  height: 53px;
  width: 53px;
}

.services-page .main-nav,
.about-page .main-nav,
.projects-page .main-nav,
.recognition-page .main-nav {
  gap: 0;
  margin-left: 19px;
}

.services-page .main-nav a,
.about-page .main-nav a,
.projects-page .main-nav a,
.recognition-page .main-nav a {
  align-items: center;
  display: inline-flex;
  font-size: 16px;
  height: 30px;
  justify-content: center;
  padding: 0 18px;
}

.services-page .contact-pill,
.about-page .contact-pill,
.projects-page .contact-pill,
.recognition-page .contact-pill {
  height: 22px;
  min-width: 94px;
  padding: 0 18px;
}

.services-hero {
  background: #f8f6f4;
  color: var(--green);
  padding: 92px 0 0;
}

.services-hero-inner {
  border-bottom: 1px solid rgba(0, 44, 36, 0.72);
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 980px;
  padding: 0 0 66px 0;
}

.services-hero h1 {
  color: var(--green);
  font-size: 88px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0 0 18px;
}

.services-hero p {
  color: var(--green);
  font-size: 17px;
  line-height: 1.58;
  margin: 0;
  max-width: 560px;
}

.services-intro {
  background: #f8f6f4;
  color: var(--green);
  padding: 76px 0 78px;
}

.services-intro-inner {
  align-items: start;
  display: grid;
  gap: 88px;
  grid-template-columns: 430px 1fr;
  margin: 0 auto;
  max-width: 980px;
  min-height: 0;
}

.services-statement {
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 42px;
  line-height: 1.04;
  margin: 0;
}

.services-intro-copy {
  max-width: 510px;
  padding: 8px 0 0;
}

.services-intro-copy p {
  color: var(--green);
  font-size: 16px;
  line-height: 1.72;
  margin: 0 0 18px;
}

.services-intro-copy h2 {
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 48px 0 0;
}

.service-list {
  background: transparent;
  color: var(--green);
  margin: 0 auto;
  max-width: min(940px, calc(100vw - 56px));
  overflow: visible;
  padding: 18px 0 64px;
}

.service-entry {
  --service-accent: #8caeac;
  --service-drift-x: 0px;
  --service-drift-y: 0px;
  --service-glow-scale: 1;
  --service-wash: rgba(140, 174, 172, 0.14);
  align-items: center;
  background: transparent;
  cursor: default !important;
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 1fr);
  justify-items: stretch;
  min-height: 0;
  outline: 0;
  overflow: visible;
  padding: 58px 0 70px;
  position: relative;
  transition: transform 0.45s var(--ease-polished);
}

.service-entry:nth-child(2) {
  --service-accent: #b7ac72;
  --service-wash: rgba(183, 172, 114, 0.15);
}

.service-entry:nth-child(3) {
  --service-accent: #c9907e;
  --service-wash: rgba(201, 144, 126, 0.14);
}

.service-entry:nth-child(4) {
  --service-accent: #98a3ce;
  --service-wash: rgba(152, 163, 206, 0.15);
}

.service-entry:nth-child(5) {
  --service-accent: #9aba78;
  --service-wash: rgba(154, 186, 120, 0.15);
}

.service-entry + .service-entry {
  border-top: 1px solid rgba(0, 44, 36, 0.16);
}

.service-entry:focus,
.service-entry:focus-visible,
.service-entry:active {
  outline: 0;
}

.service-entry * {
  cursor: default !important;
}

.service-entry::before {
  content: none;
}

.service-entry::after {
  background: radial-gradient(ellipse at center, var(--service-wash), rgba(248, 246, 244, 0) 68%);
  content: "";
  inset: 34px 50% 38px auto;
  opacity: 0.82;
  pointer-events: none;
  position: absolute;
  transform: translate3d(var(--service-drift-x), var(--service-drift-y), 0) scale(var(--service-glow-scale));
  transition: opacity 0.45s var(--ease-polished), transform 0.45s var(--ease-polished);
  width: min(720px, 82vw);
  z-index: 0;
}

.service-entry:hover {
  --service-glow-scale: 1.025;
}

.service-entry:hover::after {
  opacity: 0.92;
}

.service-entry-right::after {
  inset-inline: 0 auto;
}

.service-entry-left::after {
  inset-inline: auto 0;
}

.service-index {
  display: none;
}

.service-copy {
  align-items: center;
  color: var(--green);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  max-width: 740px;
  padding-top: 0;
  position: relative;
  row-gap: 20px;
  z-index: 1;
}

.service-entry-right .service-copy {
  align-items: start;
  justify-items: start;
  justify-self: start;
}

.service-entry-left .service-copy {
  align-items: end;
  justify-items: end;
  justify-self: end;
}

.service-copy h2 {
  color: var(--green);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
  max-width: 640px;
  text-align: center;
  transition: none;
}

.service-entry-right .service-copy h2,
.service-entry-right .service-copy p {
  text-align: left;
}

.service-entry-left .service-copy h2,
.service-entry-left .service-copy p {
  text-align: right;
}

.service-copy p {
  color: var(--green);
  font-size: 16px;
  grid-column: 1;
  line-height: 1.72;
  margin: 0;
  max-width: 650px;
  text-align: center;
}

.service-focus {
  align-self: center;
  display: grid;
  gap: 0;
  grid-column: 1;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  margin-top: 8px;
  max-width: 680px;
  padding-top: 0;
}

.service-entry-right .service-focus {
  justify-items: start;
}

.service-entry-left .service-focus {
  justify-items: end;
}

.service-copy h3 {
  color: var(--service-accent);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  line-height: 1.2;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.service-copy ul {
  align-items: center;
  color: var(--green);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  font-size: 14px;
  justify-content: center;
  line-height: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-entry-right .service-copy ul {
  justify-content: flex-start;
}

.service-entry-left .service-copy ul {
  justify-content: flex-end;
}

.service-copy li {
  align-items: center;
  background: var(--service-wash);
  border: 1px solid rgba(0, 44, 36, 0.04);
  border-radius: 999px;
  box-sizing: border-box;
  display: inline-grid;
  height: 34px;
  justify-content: center;
  line-height: 1;
  min-height: 0;
  padding: 0 13px;
  place-items: center;
  position: relative;
  text-align: center;
  transition: background-color var(--duration-fast) var(--ease-ui), border-color var(--duration-fast) var(--ease-ui), box-shadow var(--duration-fast) var(--ease-ui), transform var(--duration-fast) var(--ease-ui);
  white-space: nowrap;
}

.service-copy li span {
  display: block;
  line-height: 1;
  transform: translateY(1px);
}

.service-copy li + li {
  border-top: 0;
  padding-top: 0;
}

.service-copy li:hover {
  background: color-mix(in srgb, var(--service-wash) 72%, #ffffff 28%);
  border-color: rgba(0, 44, 36, 0.1);
  box-shadow: 0 8px 20px rgba(0, 44, 36, 0.07);
  transform: translateY(-1px);
}

.how-we-work {
  background: #f8f6f4;
  color: var(--green);
  padding: 78px 0 104px;
}

.how-we-work-inner {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr);
  margin: 0 auto;
  max-width: 980px;
  min-height: 0;
  padding: 0;
  position: relative;
}

.how-we-work-inner::before {
  background: rgba(0, 44, 36, 0.2);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: -34px;
  width: 100%;
}

.process-heading {
  align-items: end;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1fr);
}

.how-we-work h2 {
  color: var(--green);
  font-size: 54px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
}

.process-heading p {
  color: var(--green);
  font-size: 17px;
  line-height: 1.58;
  margin: 0;
  max-width: 520px;
}

.process-steps {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.process-steps li {
  border-left: 1px solid rgba(0, 44, 36, 0.18);
  min-height: 178px;
  padding: 24px 26px 28px;
  transition: background-color var(--duration-mid) var(--ease-ui), transform var(--duration-mid) var(--ease-ui);
}

.process-steps li:last-child {
  border-right: 1px solid rgba(0, 44, 36, 0.18);
}

.process-steps li:hover {
  background: rgba(0, 44, 36, 0.035);
  transform: translateY(-2px);
}

.process-steps strong {
  color: var(--green);
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0 0 18px;
}

.process-steps span {
  color: var(--green);
  display: block;
  font-size: 16px;
  line-height: 1.58;
  margin: 0;
}

.process-line {
  border-top: 1px solid rgba(0, 44, 36, 0.18);
  color: var(--green);
  display: block;
  font-size: 14px;
  letter-spacing: 0.2px;
  line-height: 1.4;
  margin: 0;
  padding-top: 18px;
  text-align: center;
}

.services-page main > section,
.services-hero,
.services-intro,
.service-list,
.service-entry,
.how-we-work {
  background: transparent;
  background-image: none;
  box-shadow: none;
}

.projects-hero {
  background: #f8f6f4;
  color: var(--green);
  padding: 154px 0 0;
}

.projects-hero-inner,
.selected-projects-inner,
.arclis-preview-inner {
  margin: 0 auto;
  max-width: 880px;
}

.full-credits-inner {
  margin: 0 auto;
  max-width: 980px;
}

.projects-hero h1,
.full-credits h2,
.arclis-preview h2 {
  color: var(--green);
  font-size: 71px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0 0 24px;
}

.projects-hero p,
.credits-heading p,
.arclis-preview p {
  color: var(--green);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  max-width: 400px;
}

.selected-projects {
  background: #f8f6f4;
  color: var(--green);
  padding: 92px 0 146px;
}

.selected-projects-inner {
  display: flex;
  flex-direction: column;
  gap: 104px;
  position: relative;
}

.project-list-item {
  border-top: 1px solid rgba(0, 44, 36, 0.34);
  cursor: pointer;
  max-width: none;
  padding-top: 30px;
  position: relative;
  transition: border-color var(--duration-fast) var(--ease-ui);
  width: 100%;
  z-index: 1;
}

.project-list-item:hover {
  border-color: rgba(0, 44, 36, 0.68);
  z-index: 4;
}

.project-list-left {
  align-self: flex-start;
  text-align: left;
  width: 100%;
}

.project-list-right {
  align-self: flex-end;
  text-align: right;
  width: 100%;
}

.project-list-wide {
  max-width: none;
}

.project-title {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--green);
  cursor: pointer;
  display: inline;
  font-family: var(--font-heading);
  font-size: 31px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0 0 14px;
  padding: 0;
  text-align: left;
  transition: color var(--duration-fast) var(--ease-ui);
}

.project-list-item:hover .project-title,
.project-title:focus-visible {
  color: #43655d;
  outline: 0;
}

.project-inline-poster {
  box-shadow: 0 20px 48px rgba(0, 44, 36, 0.16);
  height: auto;
  left: 520px;
  max-width: none;
  max-height: 360px;
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: -104px;
  transform: translateY(10px);
  transition: opacity var(--duration-fast) var(--ease-ui), transform var(--duration-fast) var(--ease-ui);
  visibility: hidden;
  width: auto;
  z-index: 5;
}

.project-list-right .project-inline-poster {
  left: auto;
  right: 520px;
}

.project-inline-wide {
  height: auto;
  left: 430px;
  max-height: 235px;
  max-width: 420px;
  object-fit: contain;
  width: auto;
}

.project-list-right .project-inline-wide {
  left: auto;
  right: 430px;
}

.project-list-item:hover .project-inline-poster,
.project-title:focus-visible + .project-inline-poster {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.project-list-item p,
.project-list-item span {
  color: var(--green);
  display: block;
  font-size: 16px;
  line-height: 1.45;
  margin: 0;
}

.project-list-item p {
  margin-top: 6px;
}

.project-list-item span {
  margin-top: 3px;
}

.arclis-preview {
  background: #f8f6f4;
  color: var(--green);
  padding: 0 0 108px;
}

.arclis-preview-inner {
  border-bottom: 1px solid rgba(0, 44, 36, 0.34);
  border-top: 1px solid rgba(0, 44, 36, 0.34);
  padding: 45px 0 50px;
}

.arclis-kicker {
  color: var(--rust);
  font-size: 13px;
  letter-spacing: 1.7px;
  line-height: 1.2;
  margin: 0 0 13px;
  text-transform: uppercase;
}

.arclis-preview h2 {
  margin-bottom: 18px;
}

.arclis-preview p:not(.arclis-kicker) {
  max-width: 520px;
}

.arclis-button {
  align-items: center;
  background: var(--green);
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  justify-content: center;
  letter-spacing: 1.2px;
  margin-top: 30px;
  min-width: 154px;
  padding: 13px 21px;
  text-transform: uppercase;
  transition: background-color var(--duration-fast) var(--ease-ui), color var(--duration-fast) var(--ease-ui), transform var(--duration-fast) var(--ease-ui);
}

.arclis-button:hover {
  background: var(--lime);
  color: var(--green);
  transform: translateY(-1px);
}

.arclis-button:active {
  transform: translateY(1px);
}

.full-credits {
  background: #f8f6f4;
  color: var(--green);
  padding: 35px 0 134px;
}

.arclis-page main {
  background: var(--paper);
  color: var(--green);
}

.arclis-hero {
  background:
    linear-gradient(135deg, rgba(223, 219, 255, 0.55), rgba(230, 255, 174, 0.34) 48%, rgba(248, 246, 244, 0) 78%),
    var(--paper);
  overflow: hidden;
  padding: 154px 0 96px;
}

.arclis-hero-inner,
.arclis-work-inner,
.arclis-manifesto-inner {
  margin: 0 auto;
  max-width: 980px;
}

.arclis-hero h1 {
  color: var(--green);
  font-size: 86px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0 0 26px;
  max-width: 760px;
}

.arclis-hero p:not(.arclis-kicker) {
  color: var(--green);
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
  max-width: 555px;
}

.arclis-work {
  background: #f8f6f4;
  padding: 42px 0 112px;
}

.arclis-section-heading {
  border-top: 1px solid rgba(0, 44, 36, 0.34);
  padding-top: 34px;
}

.arclis-section-heading h2,
.arclis-manifesto h2 {
  color: var(--green);
  font-size: 62px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 17px;
}

.arclis-section-heading p {
  color: var(--green);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.arclis-feature-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 54px;
}

.arclis-project {
  border-top: 1px solid rgba(0, 44, 36, 0.32);
  margin-top: 68px;
  padding-top: 34px;
}

.arclis-project + .arclis-project {
  margin-top: 96px;
}

.arclis-project-body {
  display: grid;
  gap: 36px;
}

.arclis-project-body > .arclis-project-copy {
  max-width: 640px;
}

.arclis-project-copy h3 {
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0 0 18px;
  max-width: 760px;
}

.arclis-project-copy p:not(.arclis-kicker) {
  color: var(--green);
  font-size: 17px;
  line-height: 1.58;
  margin: 0;
}

.arclis-orbit-frame {
  background: #050f0a;
  border: 0;
  box-shadow: 0 22px 55px rgba(0, 44, 36, 0.18);
  display: block;
  height: 620px;
  overflow: hidden;
  width: 100%;
}

.arclis-rhythm-media {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.25fr 0.75fr;
}

.arclis-rhythm-media img {
  background: #e9e5df;
  box-shadow: 0 22px 55px rgba(0, 44, 36, 0.14);
  display: block;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.arclis-rhythm-media img:first-child {
  aspect-ratio: 3 / 2;
}

.arclis-rhythm-media img:nth-child(2) {
  aspect-ratio: 3 / 4;
}

.arclis-detail-grid {
  display: grid;
  gap: 42px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.arclis-detail-grid-loose {
  gap: 34px;
  grid-template-columns: 1fr;
  max-width: 760px;
}

.arclis-detail-grid section,
.arclis-table-wrap {
  border-top: 1px solid rgba(0, 44, 36, 0.22);
  padding-top: 22px;
}

.arclis-detail-grid-loose section {
  padding-bottom: 24px;
}

.arclis-detail-grid-loose h4 {
  font-size: 36px;
  max-width: 560px;
}

.arclis-detail-grid-loose p,
.arclis-detail-grid-loose .arclis-bullet-list {
  max-width: 640px;
}

.arclis-project h4 {
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0 0 16px;
}

.arclis-detail-grid p,
.arclis-bullet-list li {
  color: var(--green);
  font-size: 16px;
  line-height: 1.58;
}

.arclis-detail-grid p {
  margin: 0;
}

.arclis-bullet-list {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.arclis-bullet-list li {
  border-top: 1px solid rgba(0, 44, 36, 0.14);
  padding-top: 8px;
}

.arclis-table {
  border-collapse: collapse;
  color: var(--green);
  font-size: 14px;
  line-height: 1.35;
  width: 100%;
}

.arclis-table th,
.arclis-table td {
  border-bottom: 1px solid rgba(0, 44, 36, 0.16);
  padding: 12px 14px 12px 0;
  text-align: left;
  vertical-align: top;
}

.arclis-table th {
  color: var(--rust);
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.arclis-feature {
  border-top: 1px solid rgba(0, 44, 36, 0.28);
  display: grid;
  gap: 24px;
  grid-template-rows: auto 1fr;
  padding-top: 26px;
}

.arclis-feature-wide {
  grid-column: 1 / -1;
  grid-template-columns: 1.2fr 0.8fr;
}

.arclis-feature-media {
  background: #e9e5df;
  box-shadow: 0 22px 55px rgba(0, 44, 36, 0.14);
  min-height: 280px;
  overflow: hidden;
}

.arclis-feature-media img {
  display: block;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  width: 100%;
}

.arclis-feature-copy {
  align-self: start;
}

.arclis-feature-copy h3 {
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0 0 15px;
}

.arclis-feature-copy p:not(.arclis-kicker) {
  color: var(--green);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

.arclis-code-copy {
  background:
    linear-gradient(rgba(0, 44, 36, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 44, 36, 0.05) 1px, transparent 1px),
    #e8f5cf;
  background-size: 32px 32px;
  min-height: 100%;
  padding: 32px;
}

.arclis-link-row {
  align-items: center;
  display: flex;
  gap: 22px;
  margin-top: 30px;
}

.arclis-link-row .arclis-button {
  margin-top: 0;
}

.arclis-text-link,
.arclis-back-link {
  color: var(--green);
  display: inline-flex;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition: color var(--duration-fast) var(--ease-ui), text-underline-offset var(--duration-fast) var(--ease-ui);
}

.arclis-text-link:hover,
.arclis-back-link:hover {
  color: var(--rust);
  text-underline-offset: 7px;
}

.arclis-manifesto {
  background: var(--green);
  color: #fff;
  padding: 82px 0 98px;
}

.arclis-manifesto h2 {
  color: #fff;
  margin-bottom: 38px;
}

.arclis-manifesto ul {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0 0 44px;
  padding: 0;
}

.arclis-manifesto li {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 22px;
  line-height: 1.35;
  padding: 24px 0;
}

.arclis-manifesto li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.arclis-manifesto .arclis-back-link {
  color: #fff;
}

.credits-heading {
  padding-left: 68px;
  padding-top: 0;
}

.credits-grid {
  align-items: center;
  display: grid;
  gap: 38px 41px;
  grid-template-columns: 263px 1fr;
  margin-left: 54px;
  margin-top: 128px;
}

.credits-grid h3 {
  align-self: start;
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.05;
  margin: 0;
  position: relative;
}

.credits-grid h3::before {
  background: rgba(0, 44, 36, 0.34);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: -30px;
  width: calc(100% + 41px + 572px);
}

.credits-grid ul {
  display: grid;
  gap: 24px;
  list-style: none;
  margin: 0 0 24px;
  max-width: 572px;
  padding: 0;
}

.credits-grid .credits-columns {
  column-gap: 52px;
  display: grid;
  grid-template-columns: 400px 400px;
  max-width: none;
}

.credits-grid .credits-film-title,
.credits-grid .credits-film-title + .credits-columns {
  grid-column: 1 / -1;
  margin-left: -32px;
}

.credits-grid .credits-film-title {
  align-self: start;
  margin-bottom: -18px;
  margin-top: 40px;
}

.credits-grid .credits-film-title::before {
  width: 100%;
}

.credits-grid .credits-film-title + .credits-columns {
  column-gap: 52px;
  margin-bottom: 33px;
  margin-top: 18px;
  max-width: 852px;
}

.credits-grid h3:nth-of-type(3),
.credits-grid h3:nth-of-type(3) + ul {
  margin-top: 47px;
}

.credits-grid h3:nth-of-type(5),
.credits-grid h3:nth-of-type(5) + ul {
  margin-top: 53px;
}

.credits-grid h3:nth-of-type(6),
.credits-grid h3:nth-of-type(6) + ul {
  margin-top: 40px;
}

.credits-grid li {
  color: var(--green);
  break-inside: avoid;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 0;
  min-height: 48px;
}

.credits-grid .credits-columns li {
  margin-bottom: 24px;
}

.recognition-hero {
  background: #f8f6f4;
  color: var(--green);
  padding: 132px 0 0;
}

.recognition-hero-inner,
.recognition-years-inner,
.recognition-extra-inner,
.recognition-awards-inner {
  margin: 0 auto;
  max-width: 980px;
}

.recognition-hero h1 {
  color: var(--green);
  font-size: 64px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.06;
  margin: 0 0 0 -49px;
  max-width: 565px;
}

.recognition-years {
  background: #f8f6f4;
  color: var(--green);
  padding: 94px 0 84px;
}

.recognition-years-inner {
  display: flex;
  flex-direction: column;
  gap: 105px;
}

.recognition-year {
  display: grid;
  gap: 28px;
  grid-template-columns: 146px 1fr;
  max-width: 934px;
  position: relative;
}

.recognition-year::before,
.recognition-extra article::before {
  background: rgba(0, 44, 36, 0.34);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: -32px;
  width: 100%;
}

.recognition-year-right {
  align-self: flex-end;
  margin-right: 26px;
}

.recognition-year-left {
  align-self: flex-start;
  margin-left: -21px;
}

.recognition-year h2 {
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 400;
  line-height: 0.9;
  margin: 0;
}

.recognition-year ul,
.recognition-extra ul {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.recognition-year li,
.recognition-extra li {
  color: var(--green);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.recognition-extra {
  background: #f8f6f4;
  color: var(--green);
  padding: 14px 0 78px;
}

.recognition-extra-inner {
  display: grid;
  gap: 86px;
}

.recognition-extra article {
  display: grid;
  gap: 44px;
  grid-template-columns: 1fr 694px;
  margin: 0 auto;
  max-width: 1050px;
  position: relative;
  width: 100%;
}

.recognition-extra h2 {
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.05;
  margin: 0;
}

.recognition-awards {
  background: #f8f6f4;
  color: var(--green);
  overflow: hidden;
  padding: 44px 0 106px;
  position: relative;
}

.recognition-awards::before,
.recognition-awards::after {
  content: "";
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 140px;
  z-index: 2;
}

.recognition-awards::before {
  background: linear-gradient(90deg, var(--paper), rgba(248, 246, 244, 0));
  left: 0;
}

.recognition-awards::after {
  background: linear-gradient(270deg, var(--paper), rgba(248, 246, 244, 0));
  right: 0;
}

.recognition-awards-inner {
  align-items: center;
  --award-scroll-distance: -980px;
  animation: recognition-awards-drift 30s linear infinite;
  display: grid;
  gap: 34px 42px;
  grid-auto-columns: 126px;
  grid-auto-flow: column;
  grid-template-columns: none;
  grid-template-rows: repeat(2, 78px);
  justify-items: center;
  max-width: none;
  width: max-content;
}

body.recognition-page.motion-ready .recognition-awards-inner.is-visible {
  animation: recognition-awards-drift 30s linear infinite !important;
  opacity: 1 !important;
}

.recognition-awards img {
  display: block;
  max-height: 74px;
  max-width: 118px;
  object-fit: contain;
  transform: translateZ(0);
}

.recognition-awards img.award-logo-black {
  filter: brightness(0);
}

@keyframes recognition-awards-drift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(var(--award-scroll-distance));
  }
}

.about-hero {
  background: #f8f6f4;
  color: var(--green);
  min-height: 518px;
  padding: 158px 0 0;
}

.about-hero-inner,
.about-story-inner,
.about-team-inner,
.about-clients-inner {
  margin: 0 auto;
  max-width: 980px;
}

.about-hero h1 {
  color: var(--green);
  font-size: 56px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 54px;
  margin: 0 0 7px;
}

.about-hero p {
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 19px 129px;
}

.about-hero img {
  height: 241px;
  object-fit: cover;
  width: 980px;
}

.about-story {
  background: #f8f6f4;
  color: var(--green);
  min-height: 428px;
  padding: 80px 0 0;
}

.about-story h2,
.about-team h2,
.about-clients h2 {
  color: var(--green);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 38.76px;
  margin: 0;
  scroll-margin-top: 118px;
}

.about-story-copy {
  color: var(--green);
  margin: 42px 0 0 161px;
  max-width: 635px;
}

.about-story-copy p {
  color: var(--green);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 0;
}

.about-team {
  background: #f8f6f4;
  color: var(--green);
  padding: 39px 0 120px;
}

.team-carousel {
  margin: 52px auto 0;
  max-width: 1120px;
}

.team-stage {
  background: transparent;
  border: 0;
  border-radius: 8px;
  min-height: 520px;
  overflow: hidden;
  padding: 46px 30px 38px;
  perspective: 1500px;
  position: relative;
}

.team-track {
  height: 410px;
  margin: 0 auto;
  max-width: 980px;
  position: relative;
  transform-style: preserve-3d;
}

.team-member {
  --team-x: 0px;
  --team-y: 0px;
  --team-rotate: 0deg;
  --team-scale: 0.82;
  --team-opacity: 0;
  --team-depth: 0;
  color: var(--green);
  cursor: pointer;
  height: 390px;
  left: 50%;
  opacity: var(--team-opacity);
  outline: 0;
  position: absolute;
  top: 0;
  transform:
    translateX(calc(-50% + var(--team-x)))
    translateY(var(--team-y))
    translateZ(var(--team-depth))
    rotateY(var(--team-rotate))
    scale(var(--team-scale));
  transform-style: preserve-3d;
  width: 280px;
  will-change: transform, opacity;
  z-index: 1;
}

.team-member.is-active {
  --team-scale: 1;
  --team-opacity: 1;
  --team-depth: 86px;
  z-index: 6;
}

.team-member.is-prev {
  --team-x: -245px;
  --team-rotate: 18deg;
  --team-scale: 0.88;
  --team-opacity: 0.78;
  z-index: 4;
}

.team-member.is-next {
  --team-x: 245px;
  --team-rotate: -18deg;
  --team-scale: 0.88;
  --team-opacity: 0.78;
  z-index: 4;
}

.team-member.is-far-prev {
  --team-x: -440px;
  --team-y: 28px;
  --team-rotate: 34deg;
  --team-scale: 0.7;
  --team-opacity: 0.42;
  z-index: 2;
}

.team-member.is-far-next {
  --team-x: 440px;
  --team-y: 28px;
  --team-rotate: -34deg;
  --team-scale: 0.7;
  --team-opacity: 0.42;
  z-index: 2;
}

.team-card-inner {
  border-radius: 8px;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.56s var(--ease-polished);
  width: 100%;
}

.team-member:hover .team-card-inner,
.team-member:focus .team-card-inner {
  transform: rotateY(180deg);
}

.team-card-face {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: #f8f6f4;
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(0, 44, 36, 0.16);
  height: 100%;
  inset: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
}

.team-card-front {
  transform: rotateY(0deg);
}

.team-card-front::after {
  background: linear-gradient(180deg, transparent 42%, rgba(0, 44, 36, 0.82));
  content: "";
  inset: 0;
  position: absolute;
}

.team-card-front img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.team-card-back {
  align-items: stretch;
  background:
    radial-gradient(circle at 18% 14%, rgba(230, 255, 174, 0.44), transparent 30%),
    radial-gradient(circle at 88% 86%, rgba(223, 219, 255, 0.54), transparent 34%),
    #f8f6f4;
  display: flex;
  padding: 28px;
  transform: rotateY(180deg);
}

.member-copy {
  color: var(--green);
  position: relative;
  z-index: 2;
}

.member-copy p {
  color: inherit;
  margin: 0;
}

.team-card-front .member-copy {
  bottom: 24px;
  left: 22px;
  position: absolute;
  right: 22px;
  transition: opacity var(--duration-fast) var(--ease-ui);
}

.team-member:hover .team-card-front .member-copy,
.team-member:focus .team-card-front .member-copy {
  opacity: 0;
}

.member-copy p:first-child {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.12;
}

.team-card-front .member-copy p:first-child,
.team-card-front .member-copy p:nth-child(2) {
  color: #f7ffe5;
  text-shadow: 0 1px 12px rgba(0, 26, 22, 0.32);
}

.member-copy p:nth-child(2) {
  font-size: 17px;
  line-height: 1.25;
  margin-top: 8px;
}

.team-card-back .member-copy {
  display: flex;
  flex-direction: column;
}

.team-card-back .member-copy p:nth-child(3) {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 18px;
}

.team-controls {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 22px;
}

.team-nav {
  background: transparent;
  border: 1px solid rgba(0, 44, 36, 0.58);
  border-radius: 999px;
  color: var(--green);
  cursor: pointer;
  font: 700 26px/1 var(--font-body);
  height: 54px;
  min-width: 0;
  padding: 0 0 3px;
  transition:
    background var(--duration-fast) var(--ease-ui),
    color var(--duration-fast) var(--ease-ui),
    transform var(--duration-fast) var(--ease-ui);
  width: 54px;
}

.team-nav:hover,
.team-nav:focus-visible {
  background: var(--green);
  color: #f7ffe5;
  outline: 0;
}

.team-nav:active {
  transform: translateY(1px);
}

.about-clients {
  background: #f8f6f4;
  color: var(--green);
  min-height: 700px;
  padding: 70px 0 110px;
}

.client-logo-grid {
  align-items: center;
  display: grid;
  gap: 68px 42px;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
  margin: 86px auto 0;
  max-width: 960px;
  width: min(960px, calc(100vw - 80px));
}

.client-logo-grid img {
  display: block;
  height: 82px;
  object-fit: contain;
  transform-origin: 50% 50%;
  transition:
    filter var(--duration-fast) var(--ease-ui),
    opacity var(--duration-fast) var(--ease-ui),
    transform var(--duration-fast) var(--ease-ui);
  width: 148px;
  will-change: transform;
}

.client-logo-grid img:hover,
.client-logo-grid img:focus-visible {
  opacity: 1;
  position: relative;
  transform: scale(1.1);
  z-index: 2;
}

.client-logo-grid img[alt="Netflix"] {
  height: 98px;
  width: 72px;
}

.client-logo-grid img[alt="Banff"],
.client-logo-grid img[alt="Taikoo Yuan Residences"],
.client-logo-grid img[alt="Zhejiang Art Museum"] {
  height: 98px;
  width: 132px;
}

.client-logo-grid img[alt="Molly Tea"],
.client-logo-grid img[alt="Yangshengtang"] {
  width: 168px;
}

.client-logo-grid img[alt="Molly Tea"] {
  filter: brightness(0);
}

.client-logo-grid img[alt="Bilibili"] {
  width: 156px;
}

.client-logo-grid img[alt="Clarins"] {
  width: 172px;
}

.client-logo-grid img[alt="Fotile"],
.client-logo-grid img[alt="Hulu"] {
  width: 160px;
}

.client-logo-grid img[alt="Nongfu Spring"] {
  width: 138px;
}

@media (prefers-reduced-motion: reduce) {
  .client-logo-grid img {
    transition: none;
    will-change: auto;
  }

  .client-logo-grid img:hover,
  .client-logo-grid img:focus-visible {
    transform: none;
  }
}

.site-footer {
  background:
    linear-gradient(180deg, rgba(230, 255, 174, 0.06), transparent 34%),
    var(--green);
  color: #f3f3f3;
  min-height: 338px;
  padding: 70px 0 64px;
  box-shadow: inset 0 1px 0 rgba(230, 255, 174, 0.12);
}

.footer-inner {
  margin: 0 auto;
  max-width: 1184px;
}

.footer-rule {
  border-top: 1px solid rgba(255, 255, 255, 0.76);
  margin-bottom: 38px;
}

.site-footer h2 {
  align-items: center;
  color: #d7d7d7;
  display: flex;
  font-size: 42px;
  font-weight: 700;
  gap: 12px;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 24px 80px;
}

.site-footer h2 .instagram-link {
  align-items: center;
  color: #d7d7d7;
  display: inline-flex;
  height: 28px;
  justify-content: center;
  margin: 3px 0 0;
  transition: color var(--duration-fast) var(--ease-ui), transform var(--duration-fast) var(--ease-ui);
  width: 28px;
}

.site-footer h2 .instagram-link:hover {
  color: var(--lime);
  transform: translateY(-1px);
}

.site-footer h2 .instagram-link:active {
  transform: translateY(1px);
}

:where(a, button, input):focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 4px;
}

.site-header :where(a, button):focus-visible,
.site-footer :where(a, button):focus-visible,
.arclis-manifesto :where(a, button):focus-visible {
  outline-color: rgba(230, 255, 174, 0.9);
}

.project-title:focus-visible,
.team-nav:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 5px;
}

.instagram-icon {
  background-color: currentColor;
  display: block;
  height: 24px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.75 2h8.5A5.76 5.76 0 0 1 22 7.75v8.5A5.76 5.76 0 0 1 16.25 22h-8.5A5.76 5.76 0 0 1 2 16.25v-8.5A5.76 5.76 0 0 1 7.75 2Zm0 2A3.75 3.75 0 0 0 4 7.75v8.5A3.75 3.75 0 0 0 7.75 20h8.5A3.75 3.75 0 0 0 20 16.25v-8.5A3.75 3.75 0 0 0 16.25 4h-8.5ZM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm5.25-2.35a1.1 1.1 0 1 1 0 2.2 1.1 1.1 0 0 1 0-2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.75 2h8.5A5.76 5.76 0 0 1 22 7.75v8.5A5.76 5.76 0 0 1 16.25 22h-8.5A5.76 5.76 0 0 1 2 16.25v-8.5A5.76 5.76 0 0 1 7.75 2Zm0 2A3.75 3.75 0 0 0 4 7.75v8.5A3.75 3.75 0 0 0 7.75 20h8.5A3.75 3.75 0 0 0 20 16.25v-8.5A3.75 3.75 0 0 0 16.25 4h-8.5ZM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm5.25-2.35a1.1 1.1 0 1 1 0 2.2 1.1 1.1 0 0 1 0-2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  width: 24px;
}

.site-footer a {
  color: #fff;
  display: inline-block;
  font-size: 16px;
  margin-left: 80px;
}

.site-footer p {
  color: #d7d7d7;
  font-size: 14px;
  margin: 80px 0 0 80px;
}

body.motion-ready .story-panel,
body.motion-ready .outline-button,
body.motion-ready .work-heading h2,
body.motion-ready .work-heading p,
body.motion-ready .work-heading::after,
body.motion-ready .work-row,
body.motion-ready .read-more-wrap,
body.motion-ready .contact-copy,
body.motion-ready .contact-form,
body.motion-ready .about-story h2,
body.motion-ready .about-story-copy p,
body.motion-ready .projects-hero h1,
body.motion-ready .projects-hero p,
body.motion-ready .project-list-item,
body.motion-ready .services-hero h1,
body.motion-ready .services-hero p,
body.motion-ready .services-statement,
body.motion-ready .services-intro-copy,
body.motion-ready .service-entry,
body.motion-ready .how-we-work-inner,
body.motion-ready .team-carousel,
body.motion-ready .arclis-preview-inner,
body.motion-ready .arclis-hero-inner,
body.motion-ready .arclis-section-heading,
body.motion-ready .arclis-project,
body.motion-ready .arclis-feature,
body.motion-ready .arclis-manifesto-inner,
body.motion-ready .credits-heading,
body.motion-ready .credits-grid,
body.motion-ready .recognition-hero h1,
body.motion-ready .recognition-year,
body.motion-ready .recognition-extra article,
body.motion-ready .recognition-awards-inner,
body.motion-ready .footer-inner {
  opacity: 0;
}

body.motion-ready .story-panel h2,
body.motion-ready .story-panel p {
  opacity: 0;
  transform: translateY(18px);
}

body.motion-ready .story-panel.is-visible {
  animation: slide-fade-in-soft 0.84s var(--ease-polished) both;
}

body.motion-ready .story-panel.is-visible h2,
body.motion-ready .story-panel.is-visible p {
  animation: slide-fade-in-tight 0.76s var(--ease-polished) both;
}

body.motion-ready .story-panel.is-visible p:nth-of-type(1) {
  animation-delay: 0.08s;
}

body.motion-ready .story-panel.is-visible p:nth-of-type(2) {
  animation-delay: 0.16s;
}

body.motion-ready .outline-button.is-visible {
  animation: slide-fade-in-tight 0.72s 0.12s var(--ease-polished) both;
}

body.motion-ready .work-heading h2.is-visible,
body.motion-ready .work-heading p.is-visible,
body.motion-ready .contact-copy.is-visible,
body.motion-ready .contact-form.is-visible,
body.motion-ready .about-story h2.is-visible,
body.motion-ready .about-story-copy p.is-visible,
body.motion-ready .projects-hero h1.is-visible,
body.motion-ready .projects-hero p.is-visible,
body.motion-ready .project-list-item.is-visible,
body.motion-ready .services-hero h1.is-visible,
body.motion-ready .services-hero p.is-visible,
body.motion-ready .services-statement.is-visible,
body.motion-ready .services-intro-copy.is-visible,
body.motion-ready .how-we-work-inner.is-visible,
body.motion-ready .team-carousel.is-visible,
body.motion-ready .arclis-preview-inner.is-visible,
body.motion-ready .arclis-hero-inner.is-visible,
body.motion-ready .arclis-section-heading.is-visible,
body.motion-ready .arclis-project.is-visible,
body.motion-ready .arclis-feature.is-visible,
body.motion-ready .arclis-manifesto-inner.is-visible,
body.motion-ready .credits-heading.is-visible,
body.motion-ready .credits-grid.is-visible,
body.motion-ready .recognition-hero h1.is-visible,
body.motion-ready .recognition-year.is-visible,
body.motion-ready .recognition-extra article.is-visible,
body.motion-ready .recognition-awards-inner.is-visible,
body.motion-ready .footer-inner.is-visible {
  animation: slide-fade-in 1.05s var(--ease-polished) both;
}

body.motion-ready .work-heading::after {
  opacity: 1;
  transform: scaleX(0);
}

body.motion-ready .work-heading.is-visible::after {
  animation: line-reveal 1.05s var(--ease-polished) both;
}

body.motion-ready .work-row.is-visible {
  animation: glide-fade-in 1.05s var(--ease-polished) both;
}

body.motion-ready .service-entry-right.is-visible {
  animation: service-enter-left 0.95s var(--ease-polished) both;
}

body.motion-ready .service-entry-left.is-visible {
  animation: service-enter-right 0.95s var(--ease-polished) both;
}

body.motion-ready .service-copy li {
  opacity: 0;
  transform: translateY(8px);
}

body.motion-ready .service-entry.is-visible .service-copy li {
  animation: service-tag-rise 0.68s var(--ease-polished) both;
}

body.motion-ready .service-entry.is-visible .service-copy li:nth-child(2) {
  animation-delay: 0.08s;
}

body.motion-ready .service-entry.is-visible .service-copy li:nth-child(3) {
  animation-delay: 0.16s;
}

body.motion-ready .service-entry.is-visible .service-copy li:nth-child(4) {
  animation-delay: 0.24s;
}

body.motion-ready .read-more-wrap.is-visible {
  animation: slide-fade-in 1.05s var(--ease-polished) both;
}

body.projects-page.motion-ready .projects-hero h1.is-visible,
body.projects-page.motion-ready .projects-hero p.is-visible,
body.projects-page.motion-ready .project-list-item.is-visible,
body.projects-page.motion-ready .arclis-preview-inner.is-visible,
body.projects-page.motion-ready .credits-heading.is-visible,
body.projects-page.motion-ready .credits-grid.is-visible {
  animation-duration: 0.58s;
}

body.motion-ready .about-story-copy p:nth-child(2).is-visible {
  animation-delay: 0.1s;
}

body.motion-ready .about-story-copy p:nth-child(3).is-visible {
  animation-delay: 0.2s;
}

body.motion-ready .delay-1 {
  animation-delay: 0.12s !important;
}

body.motion-ready .delay-2 {
  animation-delay: 0.22s !important;
}

body.motion-ready .delay-3 {
  animation-delay: 0.32s !important;
}

@keyframes hero-grain {
  0% {
    transform: translate(-1%, 1%);
  }
  25% {
    transform: translate(1%, -1%);
  }
  50% {
    transform: translate(2%, 1%);
  }
  75% {
    transform: translate(-1%, -2%);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes slide-fade-in {
  from {
    opacity: 0;
    transform: translateY(42px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-fade-in-soft {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-fade-in-tight {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glide-fade-in {
  from {
    opacity: 0;
    transform: translateX(58px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes service-enter-left {
  from {
    opacity: 0;
    transform: translateX(-44px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes service-enter-right {
  from {
    opacity: 0;
    transform: translateX(44px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes service-tag-rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tilt-fade-in {
  0% {
    clip-path: inset(0 100% 0 0 round 0 42px 0 0);
    opacity: 0;
    transform: perspective(900px) rotateY(-10deg) translateY(28px);
  }
  100% {
    clip-path: inset(0 0 0 0 round 0 42px 0 0);
    opacity: 1;
    transform: perspective(900px) rotateY(0deg) translateY(0);
  }
}

@keyframes art-tilt-in {
  0% {
    opacity: 0;
    transform: perspective(900px) rotateY(-10deg) translateY(28px);
  }
  100% {
    opacity: 1;
    transform: perspective(900px) rotateY(0deg) translateY(0);
  }
}

@keyframes line-reveal {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes ticker-drift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes note-wiggle {
  0%,
  100% {
    transform: rotate(0deg) translateY(0);
  }
  25% {
    transform: rotate(-8deg) translateY(-4px);
  }
  50% {
    transform: rotate(8deg) translateY(2px);
  }
  75% {
    transform: rotate(-5deg) translateY(-2px);
  }
}

@keyframes speck-drift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(8px, -7px);
  }
}

@keyframes service-blob-drift-a {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  35% {
    transform: translate3d(18px, -14px, 0) scale(1.04);
  }
  70% {
    transform: translate3d(-12px, 10px, 0) scale(0.98);
  }
}

@keyframes service-blob-drift-b {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  40% {
    transform: translate3d(-16px, 16px, 0) scale(1.05);
  }
  76% {
    transform: translate3d(14px, -8px, 0) scale(0.99);
  }
}

@keyframes service-blob-drift-c {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  30% {
    transform: translate3d(12px, 18px, 0) scale(1.03);
  }
  68% {
    transform: translate3d(-18px, -10px, 0) scale(1);
  }
}

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

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

  body.motion-ready .story-panel,
  body.motion-ready .outline-button,
  body.motion-ready .work-heading h2,
  body.motion-ready .work-heading p,
  body.motion-ready .work-row,
  body.motion-ready .read-more-wrap,
  body.motion-ready .contact-copy,
  body.motion-ready .contact-form,
  body.motion-ready .about-story h2,
  body.motion-ready .about-story-copy p,
  body.motion-ready .projects-hero h1,
  body.motion-ready .projects-hero p,
  body.motion-ready .project-list-item,
  body.motion-ready .services-hero h1,
  body.motion-ready .services-hero p,
  body.motion-ready .services-statement,
  body.motion-ready .services-intro-copy,
  body.motion-ready .service-entry,
  body.motion-ready .service-copy li,
  body.motion-ready .how-we-work-inner,
  body.motion-ready .team-carousel,
  body.motion-ready .arclis-preview-inner,
  body.motion-ready .arclis-hero-inner,
  body.motion-ready .arclis-section-heading,
  body.motion-ready .arclis-project,
  body.motion-ready .arclis-feature,
  body.motion-ready .arclis-manifesto-inner,
  body.motion-ready .credits-heading,
  body.motion-ready .credits-grid,
  body.motion-ready .recognition-hero h1,
  body.motion-ready .recognition-year,
  body.motion-ready .recognition-extra article,
  body.motion-ready .recognition-awards-inner,
  body.motion-ready .footer-inner {
    opacity: 1;
    transform: none;
  }

  body.motion-ready .work-heading::after {
    transform: scaleX(1);
  }

  .ticker-track,
  .score-note,
  .studio-logo img,
  .recognition-awards-inner,
  body.recognition-page.motion-ready .recognition-awards-inner.is-visible {
    animation: none !important;
  }
}

@media (max-width: 1079px) {
  body:not(.services-page) {
    min-width: 1080px;
  }

  .hero-seesaw-wrap {
    bottom: 8vh;
    height: 150px;
    left: min(61vw, 620px);
    right: auto;
    width: min(46vw, 260px);
  }

  .hero-beam {
    height: 5px;
    top: 70px;
    width: 110%;
  }

  .hero-fulcrum {
    height: 34px;
    top: 69px;
    transform: translate(-50%, 8px);
    width: 34px;
  }

  .hero-note {
    font-size: 56px;
    height: 58px;
    top: 28px;
    width: 44px;
  }

  .services-page main {
    overflow: hidden;
  }

  .services-page .site-header {
    min-width: 0;
  }

  .services-page .main-nav {
    gap: 18px;
    margin-left: 16px;
  }

  .services-page .main-nav a {
    font-size: 15px;
    padding: 0;
  }

  .services-page .contact-pill {
    min-width: 74px;
    padding: 0 14px;
  }

  .service-list {
    max-width: calc(100vw - 40px);
    padding-bottom: 48px;
  }

  .service-entry {
    gap: 0;
    grid-template-columns: minmax(0, 1fr);
    padding: 44px 0 54px;
  }

  .service-index {
    font-size: 11px;
    padding-top: 0;
  }

  .service-copy {
    max-width: none;
    row-gap: 17px;
    width: min(620px, 100%);
  }

  .service-copy h2 {
    font-size: 31px;
    max-width: 92%;
  }

  .service-copy p {
    font-size: 15px;
    line-height: 1.62;
    max-width: 94%;
  }

  .service-entry-right .service-copy h2,
  .service-entry-right .service-copy p {
    text-align: left;
  }

  .service-entry-left .service-copy h2,
  .service-entry-left .service-copy p {
    text-align: right;
  }

  .service-focus {
    gap: 0;
    grid-template-columns: 1fr;
    margin-top: 2px;
  }

  .service-copy h3 {
    margin: 0;
  }

  .service-copy ul {
    gap: 8px 9px;
  }

  .service-copy li {
    height: 34px;
    font-size: 14px;
    padding: 0 12px;
  }

  .how-we-work {
    padding: 64px 0 86px;
  }

  .how-we-work-inner {
    max-width: calc(100vw - 40px);
  }

  .how-we-work-inner::before {
    top: -26px;
  }

  .process-heading {
    align-items: start;
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .how-we-work h2 {
    font-size: 42px;
  }

  .process-heading p {
    font-size: 15px;
    line-height: 1.62;
    max-width: 620px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    margin-top: 8px;
  }

  .process-steps li {
    border-left: 0;
    border-top: 1px solid rgba(0, 44, 36, 0.18);
    min-height: 0;
    padding: 20px 0 22px;
  }

  .process-steps li:last-child {
    border-bottom: 1px solid rgba(0, 44, 36, 0.18);
    border-right: 0;
  }

  .process-steps strong {
    font-size: 25px;
    margin-bottom: 10px;
  }

  .process-steps span {
    font-size: 15px;
    line-height: 1.58;
    max-width: 620px;
  }

  .process-line {
    border-top: 0;
    font-size: 13px;
    padding-top: 0;
    text-align: left;
  }
}

@media (max-width: 1079px) {
  body,
  body:not(.services-page),
  .services-page,
  .about-page,
  .projects-page,
  .recognition-page {
    min-width: 0;
    overflow-x: hidden;
  }

  .site-header,
  .services-page .site-header,
  .about-page .site-header,
  .projects-page .site-header,
  .recognition-page .site-header {
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    height: auto;
    min-height: 76px;
    padding: 14px 22px;
    position: sticky;
  }

  .brand-mark,
  .brand-mark img,
  .services-page .brand-mark,
  .services-page .brand-mark img,
  .about-page .brand-mark,
  .about-page .brand-mark img,
  .projects-page .brand-mark,
  .projects-page .brand-mark img,
  .recognition-page .brand-mark,
  .recognition-page .brand-mark img {
    height: 44px;
    width: 44px;
  }

  .menu-toggle {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    color: #f7ffe5;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    height: 42px;
    justify-content: center;
    margin-left: auto;
    padding: 0;
    position: relative;
    width: 48px;
    z-index: 31;
  }

  .menu-toggle:focus,
  .menu-toggle:focus-visible,
  .menu-toggle:active {
    box-shadow: none;
    outline: 0;
  }

  .menu-toggle span {
    background: currentColor;
    display: block;
    height: 2px;
    transform-origin: center;
    transition: transform var(--duration-fast) var(--ease-ui), opacity var(--duration-fast) var(--ease-ui);
    width: 22px;
  }

  .site-header.is-menu-open .menu-toggle span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-toggle span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav,
  .services-page .main-nav,
  .about-page .main-nav,
  .projects-page .main-nav,
  .recognition-page .main-nav {
    background: var(--green);
    box-shadow: 0 22px 34px rgba(0, 26, 22, 0.16);
    display: grid;
    gap: 0;
    left: 0;
    margin-left: 0;
    opacity: 0;
    padding: 12px 22px 18px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 100%;
    transform: translateY(-8px);
    transition: opacity var(--duration-fast) var(--ease-ui), transform var(--duration-fast) var(--ease-ui);
    width: 100%;
    z-index: 30;
  }

  .site-header.is-menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a,
  .services-page .main-nav a,
  .about-page .main-nav a,
  .projects-page .main-nav a,
  .recognition-page .main-nav a {
    display: flex;
    font-size: 17px;
    height: auto;
    justify-content: flex-start;
    padding: 14px 0;
    white-space: normal;
  }

  .contact-pill,
  .services-page .contact-pill,
  .about-page .contact-pill,
  .projects-page .contact-pill,
  .recognition-page .contact-pill {
    display: none;
  }

  .hero-inner,
  .studio-inner,
  .work-inner,
  .contact-inner,
  .services-hero-inner,
  .services-intro-inner,
  .how-we-work-inner,
  .projects-hero-inner,
  .selected-projects-inner,
  .arclis-preview-inner,
  .full-credits-inner,
  .arclis-hero-inner,
  .arclis-work-inner,
  .arclis-manifesto-inner,
  .recognition-hero-inner,
  .recognition-years-inner,
  .recognition-extra-inner,
  .about-hero-inner,
  .about-story-inner,
  .about-team-inner,
  .about-clients-inner,
  .footer-inner {
    max-width: min(100% - 44px, 980px);
  }

  .hero-copy h1,
  .work-heading h2,
  .projects-hero h1,
  .full-credits h2,
  .arclis-preview h2,
  .arclis-hero h1,
  .recognition-hero h1,
  .about-hero h1 {
    font-size: clamp(48px, 10vw, 74px);
  }

  .studio-inner,
  .contact-inner,
  .services-intro-inner,
  .arclis-detail-grid,
  .recognition-extra article {
    grid-template-columns: 1fr;
  }

  .work-row,
  .work-row-reverse,
  .work-row-flamingo {
    gap: 28px;
    grid-template-columns: 1fr;
    margin-bottom: 82px;
    padding: 16px 0 0;
  }

  .project-media,
  .flamingo-media,
  .project-media img {
    width: 100%;
  }

  .project-media {
    order: 1;
  }

  .project-copy,
  .project-copy-left {
    order: 2;
  }

  .project-media img,
  .flamingo-media {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .project-copy,
  .project-copy-left {
    padding-top: 0;
  }

  .project-copy-left,
  .project-copy-left h3 {
    text-align: left;
  }

  .contact-form,
  .credits-heading {
    padding-top: 0;
  }

  .contact-form input {
    width: 100%;
  }

  .project-inline-poster,
  .project-list-right .project-inline-poster,
  .project-inline-wide,
  .project-list-right .project-inline-wide {
    display: block;
    height: auto;
    left: auto;
    margin-top: 18px;
    max-height: 260px;
    max-width: min(100%, 480px);
    object-fit: contain;
    opacity: 1;
    position: static;
    right: auto;
    transform: none;
    visibility: visible;
    width: auto;
  }

  .project-list-right,
  .project-list-left {
    text-align: left;
  }

  .recognition-year,
  .recognition-year-left,
  .recognition-year-right {
    align-self: stretch;
    grid-template-columns: 118px 1fr;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }

  .about-hero p,
  .about-story-copy {
    margin-left: 0;
  }

  .about-hero img {
    height: auto;
    aspect-ratio: 16 / 9;
    width: 100%;
  }

  .team-stage {
    min-height: 460px;
    padding-left: 0;
    padding-right: 0;
  }

  .team-member.is-prev,
  .team-member.is-far-prev {
    --team-x: -190px;
  }

  .team-member.is-next,
  .team-member.is-far-next {
    --team-x: 190px;
  }

  .client-logo-grid {
    gap: 42px 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .arclis-rhythm-media,
  .arclis-feature-grid,
  .arclis-feature-wide {
    grid-template-columns: 1fr;
  }

  .arclis-orbit-frame {
    height: min(620px, 72vw);
  }

  .arclis-table-wrap {
    overflow-x: auto;
  }

  .arclis-table {
    min-width: 640px;
  }
}

@media (max-width: 767px) {
  .site-header,
  .services-page .site-header,
  .about-page .site-header,
  .projects-page .site-header,
  .recognition-page .site-header {
    padding: 12px 16px 10px;
  }

  .hero-inner,
  .studio-inner,
  .work-inner,
  .contact-inner,
  .services-hero-inner,
  .services-intro-inner,
  .how-we-work-inner,
  .projects-hero-inner,
  .selected-projects-inner,
  .arclis-preview-inner,
  .full-credits-inner,
  .arclis-hero-inner,
  .arclis-work-inner,
  .arclis-manifesto-inner,
  .recognition-hero-inner,
  .recognition-years-inner,
  .recognition-extra-inner,
  .recognition-awards-inner,
  .about-hero-inner,
  .about-story-inner,
  .about-team-inner,
  .about-clients-inner,
  .footer-inner {
    max-width: calc(100% - 32px);
  }

  .hero {
    min-height: min(760px, 100dvh);
  }

  .hero-inner {
    min-height: calc(100dvh - 118px);
    padding: 68px 0 76px;
  }

  .hero-copy h1 {
    font-size: clamp(48px, 15vw, 62px);
    line-height: 0.98;
    margin-bottom: 22px;
  }

  .hero-copy p {
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-seesaw-wrap {
    bottom: 28px;
    height: 112px;
    left: auto;
    right: 18px;
    width: 178px;
  }

  .studio-section,
  .about-story {
    min-height: 0;
  }

  .studio-inner {
    gap: 34px;
    padding: 62px 0 70px;
  }

  .studio-logo img {
    width: 132px;
  }

  .story-panel {
    border-radius: 0 28px 0 0;
    padding: 25px 22px 24px;
  }

  .story-panel h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .work-section {
    padding-top: 62px;
  }

  .work-heading {
    margin-bottom: 38px;
  }

  .work-heading h2,
  .projects-hero h1,
  .full-credits h2,
  .arclis-preview h2,
  .arclis-section-heading h2,
  .arclis-manifesto h2,
  .recognition-hero h1,
  .about-hero h1,
  .about-story h2,
  .about-team h2,
  .about-clients h2 {
    font-size: clamp(38px, 12vw, 52px);
    line-height: 1;
  }

  .work-heading p,
  .projects-hero p,
  .credits-heading p,
  .arclis-preview p,
  .arclis-section-heading p,
  .recognition-year li,
  .recognition-extra li,
  .about-story-copy p {
    font-size: 15px;
  }

  .work-row,
  .work-row-reverse,
  .work-row-flamingo {
    margin-bottom: 64px;
  }

  .project-copy h3,
  .project-copy-left h3,
  .pop-project .project-copy h3,
  .project-title,
  .arclis-project-copy h3 {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.08;
  }

  .project-media,
  .work-row:hover .project-media {
    box-shadow: 0 14px 28px rgba(0, 44, 36, 0.12);
    transform: none;
  }

  .ticker {
    font-size: 12px;
    height: 23px;
  }

  .contact-section {
    padding: 62px 0 74px;
  }

  .contact-inner {
    gap: 34px;
  }

  .contact-copy .eyebrow {
    font-size: clamp(42px, 15vw, 58px);
    margin-bottom: 30px;
  }

  .contact-copy h2 {
    font-size: 28px;
  }

  .services-hero,
  .projects-hero,
  .arclis-hero,
  .recognition-hero,
  .about-hero {
    min-height: 0;
    padding-top: 72px;
  }

  .services-hero {
    padding-bottom: 72px;
  }

  .services-hero h1 {
    font-size: clamp(44px, 14vw, 62px);
  }

  .services-intro,
  .selected-projects,
  .arclis-work,
  .recognition-years,
  .about-team,
  .about-clients {
    padding-top: 58px;
    padding-bottom: 76px;
  }

  .services-statement {
    font-size: clamp(30px, 9vw, 42px);
  }

  .service-list {
    max-width: calc(100vw - 32px);
  }

  .service-entry-left .service-copy h2,
  .service-entry-left .service-copy p {
    text-align: left;
  }

  .service-entry-left .service-copy,
  .service-entry-right .service-copy,
  .service-entry-left .service-focus,
  .service-entry-right .service-focus {
    align-items: start;
    justify-items: start;
    justify-self: start;
    text-align: left;
  }

  .service-entry-left .service-copy h2,
  .service-entry-left .service-copy p,
  .service-entry-left .service-copy h3,
  .service-entry-right .service-copy h2,
  .service-entry-right .service-copy p,
  .service-entry-right .service-copy h3 {
    margin-left: 0;
    margin-right: auto;
    text-align: left;
  }

  .service-entry-left .service-copy ul,
  .service-entry-right .service-copy ul {
    justify-content: flex-start;
  }

  .service-copy h2 {
    max-width: 100%;
  }

  .selected-projects-inner {
    gap: 62px;
  }

  .project-list-item {
    padding-top: 22px;
  }

  .project-inline-poster,
  .project-list-right .project-inline-poster,
  .project-inline-wide,
  .project-list-right .project-inline-wide {
    max-height: 220px;
    max-width: min(100%, 390px);
  }

  .project-list-item p,
  .project-list-item span {
    font-size: 14px;
  }

  .arclis-preview,
  .full-credits,
  .recognition-extra,
  .recognition-awards {
    padding-bottom: 72px;
  }

  .credits-heading {
    padding-left: 0;
  }

  .credits-grid {
    align-items: start;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr);
    margin-left: 0;
    margin-top: 82px;
    width: 100%;
  }

  .credits-grid h3,
  .credits-grid h3:nth-of-type(3),
  .credits-grid h3:nth-of-type(5),
  .credits-grid h3:nth-of-type(6),
  .credits-grid .credits-film-title {
    font-size: 28px;
    margin: 22px 0 0;
    max-width: 100%;
  }

  .credits-grid h3:first-child {
    margin-top: 0;
  }

  .credits-grid h3::before {
    top: -18px;
    width: 100%;
  }

  .credits-grid h3:first-child::before {
    top: -24px;
  }

  .credits-grid ul,
  .credits-grid h3:nth-of-type(3) + ul,
  .credits-grid h3:nth-of-type(5) + ul,
  .credits-grid h3:nth-of-type(6) + ul,
  .credits-grid .credits-film-title + .credits-columns {
    gap: 14px;
    margin: 0 0 18px;
    max-width: 100%;
    width: 100%;
  }

  .credits-grid .credits-columns {
    column-gap: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .credits-grid .credits-film-title,
  .credits-grid .credits-film-title + .credits-columns {
    grid-column: auto;
    margin-left: 0;
  }

  .credits-grid li,
  .credits-grid .credits-columns li {
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 0;
    min-height: 0;
  }

  .arclis-preview-inner {
    padding: 34px 0 38px;
  }

  .arclis-kicker {
    font-size: 11px;
    letter-spacing: 1.3px;
  }

  .arclis-project {
    margin-top: 54px;
  }

  .arclis-project + .arclis-project {
    margin-top: 72px;
  }

  .arclis-orbit-frame {
    height: 68vw;
    min-height: 280px;
  }

  .arclis-link-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .recognition-hero h1 {
    margin-left: 0;
  }

  .recognition-years-inner {
    gap: 72px;
  }

  .recognition-year,
  .recognition-year-left,
  .recognition-year-right {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .recognition-year h2 {
    font-size: 52px;
  }

  .recognition-extra article {
    gap: 20px;
  }

  .recognition-awards::before,
  .recognition-awards::after {
    width: 38px;
  }

  .recognition-awards-inner {
    gap: 24px 28px;
    grid-auto-columns: 96px;
    grid-template-rows: repeat(2, 64px);
  }

  .recognition-awards img {
    max-height: 58px;
    max-width: 92px;
  }

  .about-hero p {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .team-carousel {
    margin-top: 34px;
  }

  .team-stage {
    min-height: 438px;
    overflow: hidden;
    padding-bottom: 20px;
  }

  .team-track {
    height: 370px;
  }

  .team-member {
    height: 350px;
    width: min(260px, 78vw);
  }

  .team-member.is-prev,
  .team-member.is-far-prev {
    --team-x: -150px;
  }

  .team-member.is-next,
  .team-member.is-far-next {
    --team-x: 150px;
  }

  .client-logo-grid {
    gap: 30px 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 48px;
  }

  .client-logo-grid img,
  .client-logo-grid img[alt] {
    height: 66px;
    max-width: 138px;
    width: 100%;
  }

  .site-footer {
    min-height: 0;
    padding: 48px 0 42px;
  }

  .site-footer h2 {
    align-items: flex-start;
    font-size: clamp(34px, 10.4vw, 42px);
    justify-content: space-between;
    line-height: 0.98;
    margin: 0 0 24px;
    width: 100%;
  }

  .site-footer h2 .instagram-link {
    flex: 0 0 auto;
    height: 26px;
    margin-top: 4px;
    width: 26px;
  }

  .instagram-icon {
    height: 22px;
    width: 22px;
  }

  .site-footer a {
    font-size: 15px;
    margin-left: 0;
  }

  .site-footer p {
    font-size: 13px;
    margin: 62px 0 0;
  }
}

@media (max-width: 420px) {
  .main-nav,
  .services-page .main-nav,
  .about-page .main-nav,
  .projects-page .main-nav,
  .recognition-page .main-nav {
    padding-left: 18px;
    padding-right: 18px;
  }

  .main-nav a,
  .services-page .main-nav a,
  .about-page .main-nav a,
  .projects-page .main-nav a,
  .recognition-page .main-nav a {
    font-size: 16px;
  }

  .contact-pill {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-inner,
  .studio-inner,
  .work-inner,
  .contact-inner,
  .services-hero-inner,
  .services-intro-inner,
  .how-we-work-inner,
  .projects-hero-inner,
  .selected-projects-inner,
  .arclis-preview-inner,
  .full-credits-inner,
  .arclis-hero-inner,
  .arclis-work-inner,
  .arclis-manifesto-inner,
  .recognition-hero-inner,
  .recognition-years-inner,
  .recognition-extra-inner,
  .about-hero-inner,
  .about-story-inner,
  .about-team-inner,
  .about-clients-inner,
  .footer-inner {
    max-width: calc(100% - 28px);
  }

  .team-member.is-prev,
  .team-member.is-far-prev {
    --team-x: -124px;
  }

  .team-member.is-next,
  .team-member.is-far-next {
    --team-x: 124px;
  }
}
