:root {
  --black: #000000;
  --mist: #F4F1EA;
  --body: #C8C8C8;
  --raspberry: #e00040;
  --ice: #88a8b8;
  --sand: #f8e0b8;
  --grey: #707070;
  --display: "Unbounded", sans-serif;
  --sans: "Outfit", sans-serif;
  --pad: clamp(2.5rem, 5vw, 5rem);
  --max: 1320px;
  --nav-h: 4.5rem;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(0, 0, 0, 0.12);
  --white: #ffffff;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--black);
  color: #fff;
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
  overflow-wrap: anywhere;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.wrap {
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
  margin-inline: auto;
}

.kicker {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
}

.display {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.lede {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--mist);
  max-width: 38rem;
}

.body-copy {
  color: var(--body);
  font-size: 1.02rem;
  line-height: 1.7;
}

.link-arrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-bottom: 0.28rem;
  border-bottom: 1px solid var(--grey);
}

.link-arrow.is-loud {
  border-bottom-color: var(--raspberry);
  border-bottom-width: 2px;
}

.link-arrow.is-ice {
  border-bottom-color: var(--ice);
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  height: var(--nav-h);
  background: transparent;
  color: #fff;
  border-bottom: 1px solid transparent;
}

.site-nav.is-solid,
.site-nav.is-scrolled {
  background: var(--black);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand,
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img,
.nav-logo img {
  height: 30px;
  width: auto;
  max-width: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  flex-shrink: 0;
}

.nav-toggle::before,
.nav-toggle::after,
.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1px;
  background: #fff;
  content: "";
}

.nav-toggle::before {
  top: 15px;
}

.nav-toggle span {
  top: 50%;
}

.nav-toggle::after {
  bottom: 15px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--body);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--raspberry);
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  transition: transform 280ms var(--ease), opacity 280ms var(--ease);
}

.nav-links a.is-active::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--white);
}

.nav-cta {
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-bottom: 0.35rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 8vh;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #000 center / cover no-repeat;
}

.hero-mark {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: clamp(1.5rem, 5vw, 4.5rem);
  width: min(46vw, 620px);
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
}

.hero-mark img {
  width: 100%;
  height: auto;
  display: block;
  animation: spin-mark 48s linear infinite;
}

@keyframes spin-mark {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero .wrap {
  position: relative;
  z-index: 2;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.12) 38%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.08) 58%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-copy {
  position: relative;
  padding-bottom: 0.5rem;
  max-width: 44rem;
}

.hero-copy .kicker {
  color: #fff;
  margin-bottom: 0.85rem;
}

.hero h1,
.hero-title {
  font-family: var(--display);
  font-size: clamp(2.7rem, 6.2vw, 5.1rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: #fff;
}

.hero-lede {
  margin-top: 1.15rem;
  max-width: 28rem;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  gap: 2rem;
  margin-top: 1.75rem;
}

@media (prefers-reduced-motion: reduce) {
  .hero-mark img {
    animation: none;
  }
}

.proof {
  background: var(--black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1.35rem 0;
}

.proof-row span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--body);
}

.manifesto {
  background: var(--mist);
  color: var(--black);
  padding: 6.5rem 0;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.manifesto-copy {
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  line-height: 1.35;
  font-weight: 400;
  max-width: 28rem;
}

.manifesto-mark,
.manifesto-mark img {
  animation: none !important;
  transform: none !important;
}

.manifesto-mark {
  display: flex;
  justify-content: flex-end;
}

.manifesto-mark img {
  width: min(22rem, 100%);
  height: auto;
}

.section {
  padding: 6.5rem 0;
}

.section-head {
  margin-bottom: 3rem;
}

.section-head h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-top: 0.65rem;
}

.section.is-mist {
  background: var(--mist);
  color: var(--black);
}

.section.is-mist .lede,
.section.is-mist .body-copy {
  color: #1a1a1a;
}

.section.is-mist .kicker {
  color: var(--grey);
}

.work-sel {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.work-card a {
  display: grid;
  gap: 1rem;
}

.work-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.work-num {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--raspberry);
}

.work-loc {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
}

.work-card h3 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.work-card p {
  color: var(--body);
  max-width: 38rem;
}

.work-card img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  margin-top: 0.35rem;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.5rem;
}

.cap-card {
  padding-left: 1rem;
  border-left: 4px solid var(--grey);
}

.cap-card.is-01 { border-left-color: var(--raspberry); }
.cap-card.is-02 { border-left-color: var(--ice); }
.cap-card.is-03 { border-left-color: var(--sand); }
.cap-card.is-04 { border-left-color: var(--grey); }

.cap-card .cap-num {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.7rem;
}

.cap-card.is-01 .cap-num { color: var(--raspberry); }
.cap-card.is-02 .cap-num { color: var(--ice); }
.cap-card.is-03 .cap-num { color: var(--sand); }
.cap-card.is-04 .cap-num { color: var(--grey); }

.cap-card h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
}

.cap-card p {
  color: var(--body);
  font-size: 0.95rem;
}

.cap-note {
  margin-top: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}

.section.is-mist .cap-card p {
  color: #333;
}

.partner {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 3rem;
  align-items: center;
}

.partner-logo {
  background: #fff;
  padding: 1.5rem;
}

.partner-logo img {
  width: 100%;
  height: auto;
}

.partner h3 {
  font-family: var(--display);
  font-size: 1.8rem;
  margin: 0.5rem 0 0.8rem;
}

.call-tease {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.call-steps {
  display: flex;
  flex-direction: column;
}

.call-step-name {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

.call-step-name:last-child {
  border-bottom: 1px solid var(--line);
}

.call-step-name em {
  font-style: normal;
  color: var(--raspberry);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.house-tease p {
  max-width: 36rem;
}

.close {
  padding-bottom: 7rem;
}

.close h2 {
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  margin: 0.7rem 0 1.2rem;
}

.close-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.close-meta dt {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.45rem;
}

.close-meta dd {
  margin: 0;
  color: var(--mist);
}

.page {
  padding-top: calc(var(--nav-h) + 3.5rem);
  padding-bottom: 6rem;
}

.page-hero {
  margin-bottom: 3.5rem;
}

.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0.7rem 0 1.15rem;
}

.page-hero .lede {
  color: var(--mist);
}

.crumb {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1.4rem;
}

.crumb a {
  color: var(--grey);
}

.crumb strong {
  color: #fff;
  font-weight: 500;
}

.rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 3rem 0;
}

.house {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2rem 4rem;
}

.house .kicker {
  padding-top: 0.2rem;
}

.house-copy {
  max-width: 40rem;
}

.house-copy p + p {
  margin-top: 1.2rem;
}

.svc-list {
  margin-top: 4.5rem;
}

.svc-row {
  display: grid;
  grid-template-columns: 4px 2.2rem 1fr auto;
  gap: 1.4rem;
  align-items: start;
  padding: 2.6rem 0;
  border-top: 1px solid var(--line);
}

.svc-row:last-child {
  border-bottom: 1px solid var(--line);
}

.svc-bar {
  align-self: stretch;
  width: 4px;
  min-height: 100%;
  background: var(--grey);
}

.svc-row.is-01 .svc-bar,
.svc-row.is-01 .svc-num { color: var(--raspberry); background-color: transparent; }
.svc-row.is-01 .svc-bar { background: var(--raspberry); }
.svc-row.is-02 .svc-bar { background: var(--ice); }
.svc-row.is-02 .svc-num { color: var(--ice); }
.svc-row.is-03 .svc-bar { background: var(--sand); }
.svc-row.is-03 .svc-num { color: var(--sand); }
.svc-row.is-04 .svc-bar { background: var(--grey); }
.svc-row.is-04 .svc-num { color: var(--grey); }

.svc-num {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding-top: 0.35rem;
}

.svc-copy h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.7rem;
}

.svc-copy p {
  color: var(--body);
  max-width: 36rem;
}

.svc-points,
.detail-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.2rem;
  margin-top: 1.1rem;
}

.svc-points span,
.detail-points span {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}

.svc-link {
  align-self: center;
  white-space: nowrap;
}

.svc-row.is-01 .svc-link { border-bottom-color: var(--raspberry); }

.hairline {
  width: 4.5rem;
  height: 1px;
  background: var(--ice);
  margin: 1.3rem 0 1.4rem;
}

.kicker.is-ice {
  color: var(--ice);
}

.detail-still {
  margin: 3rem 0 4rem;
}

.detail-still img {
  width: 100%;
  aspect-ratio: 16 / 8.2;
  object-fit: cover;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.detail-grid h2,
.detail-body h2 {
  font-family: var(--display);
  font-size: 1.6rem;
  margin: 0.5rem 0 0.9rem;
}

.detail-body {
  max-width: 42rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2.5rem 0 3.5rem;
}

.filters button {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  padding-bottom: 0.28rem;
  border-bottom: 1px solid transparent;
}

.filters button.is-on {
  color: #fff;
  border-bottom-color: var(--raspberry);
}

.work-item {
  padding: 2.6rem 0 3.2rem;
  border-top: 1px solid var(--line);
}

.work-item.is-hidden {
  display: none;
}

.work-item-top {
  display: grid;
  grid-template-columns: 3.5rem 1fr auto;
  align-items: baseline;
}

.work-item h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0;
}

.work-item p {
  margin: 0.35rem 0 0 5rem;
}

.work-item img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  margin-top: 1.4rem;
}

.work-aside {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  color: var(--grey);
  max-width: 36rem;
  font-size: 0.95rem;
}

.case-night {
  margin-top: 4rem;
}

.case-night img {
  width: 100%;
  aspect-ratio: 16 / 8.2;
  object-fit: cover;
  margin-top: 1rem;
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3.5rem;
}

.case-grid h2 {
  font-family: var(--display);
  font-size: 1.55rem;
  margin: 0.45rem 0 0.85rem;
}

.rack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rack > div {
  padding: 0.95rem 0;
  border-top: 1px solid var(--line);
}

.rack > div:last-child {
  border-bottom: 1px solid var(--line);
}

.rack strong {
  display: block;
  color: var(--mist);
  font-weight: 500;
  margin-bottom: 0.45rem;
}

.rack p {
  margin: 0;
  color: var(--body);
}

.brief-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 260px;
  gap: 3rem 2.5rem;
  margin-top: 3rem;
}

.brief-form {
  display: contents;
}

.brief-ok {
  grid-column: 1 / -1;
}

.field {
  margin-bottom: 2rem;
}

.field label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.7rem;
}

.field label em {
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  margin-left: 0.35rem;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="date"],
.field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  padding: 0.35rem 0 0.7rem;
  outline: none;
  color: #fff;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--grey);
}

.field textarea {
  min-height: 2.5rem;
  resize: vertical;
}

.field .error {
  display: block;
  margin-top: 0.4rem;
  color: var(--raspberry);
  font-size: 0.8rem;
}

.intent {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.25rem 1.5rem;
}

.intent label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  white-space: nowrap;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  text-transform: none;
  color: var(--mist);
  cursor: pointer;
  margin-bottom: 0;
}

.intent input {
  appearance: none;
  width: 4px;
  height: 1.15rem;
  border-radius: 99px;
  border: 1px solid var(--grey);
  background: transparent;
}

.intent input:checked {
  background: var(--raspberry);
  border-color: var(--raspberry);
}

.brief-submit {
  margin-top: 0.5rem;
}

.brief-ok {
  font-family: var(--display);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.studio .kicker {
  margin-bottom: 0.7rem;
}

.studio-city {
  font-family: var(--display);
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
}

.studio .body-copy {
  margin-bottom: 1.4rem;
}

.studio dl {
  margin: 0;
}

.studio dt {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 1.1rem;
}

.studio dd {
  margin: 0.35rem 0 0;
  color: var(--mist);
}

.call-long {
  margin-top: 4rem;
}

.call-long-step {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.5rem;
  padding: 2.4rem 0;
  border-top: 1px solid var(--line);
}

.call-long-step:last-child {
  border-bottom: 1px solid var(--line);
}

.call-long-step .step-num {
  color: var(--raspberry);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding-top: 0.45rem;
}

.call-long-step h2 {
  font-family: var(--display);
  font-size: 1.7rem;
  margin-bottom: 0.7rem;
}

.call-long-step p {
  color: var(--grey);
  max-width: 40rem;
}

.error-page {
  min-height: calc(100vh - var(--nav-h) - 8rem);
  display: flex;
  align-items: center;
  padding: 6rem 0 5rem;
}

.error-page h1 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  margin: 0.7rem 0 1.1rem;
}

.error-page .lede {
  color: var(--grey);
}

.error-ctas {
  display: flex;
  gap: 2rem;
  margin-top: 1.8rem;
}

.legal {
  color: var(--body);
  max-width: 42rem;
}

.legal h2 {
  font-family: var(--display);
  font-size: 1.4rem;
  color: #fff;
  margin: 2.2rem 0 0.7rem;
}

.legal ul {
  padding-left: 1.2rem;
}

.site-foot {
  background: var(--black);
  padding: 0 0 2rem;
}

.brand-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  height: 4px;
  margin-bottom: 2.2rem;
}

.brand-bar i:nth-child(1) { background: var(--raspberry); }
.brand-bar i:nth-child(2) { background: var(--ice); }
.brand-bar i:nth-child(3) { background: var(--sand); }
.brand-bar i:nth-child(4) { background: var(--grey); }

.foot-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

.foot-logo img {
  height: 1.1rem;
  width: auto;
}

.foot-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.foot-links a {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--body);
}

.foot-links a.is-active {
  color: #fff;
}

.foot-meta {
  font-size: 0.78rem;
  color: var(--grey);
  text-align: right;
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links, .site-nav .nav-cta { display: none; }
  .site-nav .nav-toggle { margin-left: auto; }
  .site-nav.is-open {
    background: var(--black);
    height: 100dvh;
    min-height: 100dvh;
    align-items: flex-start;
    padding: 0.35rem 0 2rem;
    border-bottom-color: var(--line);
  }
  .site-nav.is-open .nav-toggle span { opacity: 0; }
  .site-nav.is-open .nav-toggle::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .site-nav.is-open .nav-toggle::after {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%) rotate(-45deg);
  }
  .site-nav.is-open .wrap {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: var(--nav-h) auto auto;
    align-items: center;
    align-content: start;
    align-self: start;
    height: auto;
    width: min(var(--max), calc(100% - (var(--pad) * 2)));
    row-gap: 0;
  }
  .site-nav.is-open .brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }
  .site-nav.is-open .nav-toggle {
    grid-column: 2;
    grid-row: 1;
    margin-left: 0;
    justify-self: end;
  }
  .site-nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    gap: 0;
    padding-top: 0.85rem;
  }
  .site-nav.is-open .nav-links a {
    display: inline-flex;
    align-items: flex-end;
    min-height: 44px;
    padding-top: 0.7rem;
    padding-bottom: 0.35rem;
  }
  .site-nav.is-open .nav-cta {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin-top: 0.35rem;
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: start;
  }

  .intent { flex-wrap: wrap; }

  .hero-mark {
    width: min(42vw, 240px);
    right: 6%;
    top: 42%;
  }

  .hero .wrap,
  .about-grid,
  .brief,
  .brief-layout,
  .work-pair,
  .partner-block,
  .partner,
  .cap-grid,
  .close-details,
  .close-meta,
  .field-row,
  .manifesto-grid,
  .call-row,
  .call-tease,
  .house-grid,
  .house,
  .case-grid,
  .detail-body,
  .detail-grid,
  .rack-grid,
  .rack,
  .svc,
  .svc-row,
  .call-long-step,
  .proof-row {
    grid-template-columns: 1fr;
  }

  .studio {
    grid-column: 1 / -1;
  }

  .svc-row {
    grid-template-columns: 4px 2rem 1fr;
  }

  .svc-link {
    grid-column: 3;
    justify-self: start;
    margin-top: 0.8rem;
  }

  .foot-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 1.2rem;
  }

  .foot-links {
    justify-content: flex-start;
  }

  .foot-meta {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .hero-mark {
    width: min(38vw, 180px);
    right: 4%;
    top: 38%;
  }

  .intent label {
    min-height: 44px;
  }

  .brand img,
  .nav-logo img,
  .foot-logo img {
    height: 26px;
    width: auto;
  }

  .hero {
    min-height: 100svh;
    padding-bottom: 6vh;
  }

  .hero-ctas,
  .error-ctas {
    flex-direction: column;
    gap: 1.1rem;
  }

  .proof-row,
  .cap-grid,
  .manifesto-grid,
  .call-tease,
  .partner,
  .house,
  .detail-grid,
  .case-grid,
  .close-meta,
  .brief-layout {
    grid-template-columns: 1fr;
  }

  .manifesto-mark {
    justify-content: flex-start;
  }

  .svc-row {
    grid-template-columns: 4px 1fr;
  }

  .svc-num {
    display: none;
  }

  .svc-link {
    grid-column: 2;
  }

  .call-long-step {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .section,
  .manifesto,
  .page {
    padding-top: 4rem;
  }
}
