:root {
  --paper: #faf9f5;
  --ink: #1a191c;
  --muted: #eee9e3;
  --line: #dfddd5;
  --accent: #111;
  --blue: #1669ff;
  --grid-gutter: 10px;
  --content-width: 1262px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background-color: var(--paper);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  min-width: 320px;
}

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

.site-header {
  position: relative;
  z-index: 20;
  background: var(--paper);
  border-bottom: 0.5px solid #e6e4dd;
  height: 70px;
}

.nav {
  width: 100%;
  max-width: 1262px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12.5px 14px;
}

.logo {
  text-decoration: none;
  color: var(--ink);
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.logo-mark {
  width: 50px;
  height: 40px;
  display: block;
}

.logo-merged {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 21px;
}

.nav-links a:hover {
  background: #f0ede7;
}

.btn {
  background: var(--accent);
  color: #fefbf4;
  text-decoration: none;
  border-radius: 24px;
  border: 1px solid var(--accent);
  padding: 4px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}

.btn-small {
  font-size: 14px;
  padding: 4px 14px;
  border-radius: 20px;
}


.nav-links a.btn {
  color: #fefbf4;
  background: var(--accent);
  border: 1px solid var(--accent);
}

.nav-links a.btn:hover {
  color: #fefbf4;
  background: #0f0f12;
  border-color: #0f0f12;
}

.nav-links .cv-btn,
.nav-links .cv-btn:visited {
  width: 115px;
  height: 35px;
  min-width: 115px;
  padding: 7px 14px;
  margin: 0;
  border-radius: 18px;
  border: 1px solid #1a191c;
  background: #1a191c;
  color: #faf9f5;
  font: 500 14px/21px "Manrope", sans-serif;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links .cv-btn:hover {
  background: #111014;
  border-color: #111014;
  color: #faf9f5;
}

.nav-links .cv-btn:active {
  transform: translateY(0.5px);
}

.nav-links .cv-btn:focus-visible {
  outline: 1px solid rgba(26, 25, 28, 0.5);
  outline-offset: 2px;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
}

main {
  width: 100%;
  max-width: 1262px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

.hero {
  position: relative;
  min-height: 702px;
  border-bottom: 0;
  padding-top: 56px;
  background-color: var(--paper);
}



.hero-title-graphics {
  display: grid;
  grid-template-columns: 310px 303px;
  grid-template-rows: auto auto;
  column-gap: 31px;
  row-gap: 0;
  width: 644px;
  align-items: center;
}

.hero-title {
  margin: 0;
  font-family: "Lora", serif;
  font-size: 140px;
  font-weight: 600;
  line-height: 154px;
  color: #1a191c;
  text-transform: capitalize;
}

.twirl-top{
  position: relative;
  right:48px;
}
.hero-hello-text {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
}

.hero-line-two {
  display: contents;
}

.hero-iam-text {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
}

.hero-kate {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  justify-self: start;
  width: 266px;
  height: 141px;
  overflow: hidden;
}
.hero-kate svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-copy {
  width: 644px;
  padding-left: 42px;
  padding-top: 0;
  position: relative;
  z-index: 2;
}

.twirl-top {
  grid-column: 1;
  grid-row: 1;
  width: 147px;
  height: 154px;
  justify-self: end;
  align-self: center;
  margin-right: 44px;
  opacity: 0.95;
}

.hero-intro {
  margin: 28px 0 0;
  font-size: 21px;
  line-height: 28px;
  max-width: 552px;
}


.works-arrow{
  position: relative;
  display: inline-flex;
  margin-top: 66px;
}
.works-arrow .works-word{
  position: absolute;
  left:9px;
  top:8px;
}
.works-arrow .works-hand-arrow{
  position: absolute;
  right: -15px;
  bottom: -72px;
}
.hero{
  padding-bottom: 69px;
}
.hero-art {
  position: absolute;
  left: 421px;
  top: 74px;
  width: 872px;
  height: 572px;
  z-index: 0;
}

.hero-merged {
  display: block;
  width: 872px;
  height: 572px;
  object-fit: fill;
}




.panel {
  position: relative;
  display: grid;
  place-items: center;
  padding: 28px 36px;
}

.panel-warm {
  background: #f5e9cf;
}

.panel-plain {
  background: transparent;
}


#status {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-footer {
  margin-top: 0px;
  min-height: 387px;
  background: #1a191c;
  color: #faf9f5;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 23px;
  left:50%;
  width: 100%;
  transform:translateX(-50%);
  background-image: url("../assets/figma/paper-border-footer.svg");
  background-repeat: repeat-x;
  background-position: center;
  background-size: 431px 21px;
  pointer-events: none;
}

.footer-inner {
  width: var(--content-width);
  margin: 0 auto;
  min-height: 387px;
  position: relative;
  padding: 63px 14px 51px;
}


.footer-contact {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.footer-envelope {
  width: 198px;
  height: 198px;
  flex: 0 0 198px;
}

.footer-form-wrap {
  width: 282px;
}

.footer-form-title {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  text-align: left;
  color: #faf9f5;
  padding-left: 13px;
}

.footer-form {
  height: 42px;
  border: 0.5px solid rgba(250, 249, 245, 0.2)!important;
  border-radius: 20px;
  background: #1a191c;
  display: flex;
  align-items: center;
  padding: 7px 7px 7px 10px;
  gap: 7px;
}

.footer-email-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
}

.footer-email-icon img {
  width: 19px;
  height: 15px;
}

.footer-form input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #eee9e3;
  font: 500 14px/21px "Manrope", sans-serif;
}

.footer-form input::placeholder {
  color: #eee9e3;
  opacity: 0.7;
}

.footer-form:focus-within {
  border-color: rgba(250, 249, 245, 0.5);
}

.footer-submit {
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  flex: 0 0 42px;
}

.footer-submit:hover {
  background: rgba(250, 249, 245, 0.08);
}

.footer-submit:focus-visible {
  outline: 1px solid rgba(250, 249, 245, 0.6);
  outline-offset: 1px;
}

.footer-arrow {
  position: relative;
  width: 28px;
  height: 28px;
  display: block;
}

.footer-arrow .arrow-head,
.footer-arrow .arrow-tail {
  position: absolute;
  display: block;
}

.footer-arrow .arrow-head {
  width: 16.84px;
  height: 16.57px;
  left: 2px;
  top: 3px;
}

.footer-arrow .arrow-tail {
  width: 13.77px;
  height: 4.67px;
  left: 12.59px;
  top: 5.11px;
}

.footer-copy {
  margin: 0;
  position: absolute;
  right: 0;
  bottom: 51px;
  width: 165px;
  text-align: right;
  font-size: 14px;
  line-height: 21px;
  color: #faf9f5;
}

.case-spacer .buffer-vertical>.column{
  min-width: 2px;
  height: 100px;
  background: url(../assets/figma/dot-y-dark.svg);
  background-size: 2px 14px;
  background-repeat: repeat-y;
}
.case-spacer .buffer-vertical{
  width:100%;
  height: 126px;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
  justify-content: space-between;
}
.case-spacer>img.horizontal-spacer{
  width: 100%;
}

.case__studies{
  margin-top: 3px;
}
.case-study .view__case>a span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 7px;
}
.case-study{
  position: relative;
}
.case-study>.counter{
  position: absolute;
  width: 84px;
  text-align: center;
  top:0px;
  left:-84px;
  font-size: 98px;
  top:-22px;
  line-height: 140%;
  color:#EEE9E3;
  font-weight: 600;
  font-family:"Lora" ,sans-serif;
}
.case-study{
  flex-direction: column;
}
.case-study>img{
  position: static;
  left:0px;
  top:0px;
}
.case-study .buffer-vertical{
  display: flex;
  justify-content: space-between;
  position: absolute;
  left: 0px;
  top: 8px;
  width: 100%;
  height: calc(100% - 8px);
  overflow: hidden;
}

.case-study .buffer-vertical > .column{
  width: 2px;
  height: round(up, 100%, 28px); 
  background: url('../assets/figma/double-vertical-dot.svg');
  background-repeat: repeat-y;
  background-size: 2px 28px;
  background-position: top left;
}
.case-study .mockups{
  margin-left: 14px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.case-study .mockups img{
  max-width: 100%;
  width: 100%;
}
.case-study{
  min-height: 642px;
}
.case-study .mockups{
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  padding-right: 12px;
}
.case-study .view__case>a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding-left: 21px;
  padding-right:14px;
  border-radius: 250px;
  text-decoration: none;
  background-color:#1A191C;
  font-size: 18px;
  line-height: 28px;
  color:#FAF9F5;
  font-weight: 600;
}
.case-study .view__case{
  margin-top: 28px;
  display: flex;
  justify-content: flex-start;
}
.case-study .desc>.tags>ul>li{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding:7px 14px;
  background-color:#EEE9E3;
  border-radius: 20px;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  color:rgba(26,25,28,.5);
}
.case-study .desc>.tags>ul{
  padding:0px;
  list-style-type: none;
  gap:7px 8px;
  flex-wrap:wrap;
  margin:0px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.case-study .desc>p{
  margin-top: 0px;
  margin-bottom: 14px;
  padding-right: 14px;
  font-size: 18px;
  line-height: 28px;
  color:#1A191C;
  font-weight: 500;
}
.case-study .inner{
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  flex: 1;
}
.case-study .desc>h2{
  margin-top: 0px;
  margin-bottom: 28px;
  font-size: 36px;
  line-height: 42px;
  color:#1A191C;
  font-weight: 600;
  font-family:"Lora" ,sans-serif;
}
.case__studies{
  margin-bottom: -1px;
}
.case-study .desc>span{
  display: block;
  margin-bottom: 28px;
  font-size: 18px;
  line-height: 28px;
  color:#000000;
  font-weight: 600;
  font-family:"Manrope" ,sans-serif;
}
.case-study .desc{
  padding-top: 40px;
  min-width: 296px;
  max-width: 296px;
  padding-left: 14px;
}
.case-study{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.crossword .inner{
  padding-left: 12px;
  padding-right: 12px;
  width: 100%;
}
.crossword .desc ul>li{
  margin-bottom: 21px;
}
.crossword .desc ul>li:last-child{
  margin-bottom: 0px;
}
.crossword .desc ul>li>span{
  display: inline-flex;
  min-width: 21px;
  max-width: 21px;
  margin-right: 4px;
  color:#000000;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}
.crossword .desc ul>li>p{
  margin:0px;
  font-size: 18px;
  line-height: 28px;
  color:#000000;
  font-weight: 500;
}
.crossword .desc ul>li{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.crossword .desc ul{
  margin:0px;
  list-style-type: none;
  padding:0px;
}
.crossword .inner .box .row-crossword{
  display: grid;
  grid-template-columns: repeat(11,1fr);
  grid-column-gap: 2px;
}
.crossword .inner .box .row-crossword .square.empty{
  border-color:transparent;
  background-color: transparent;
}
.crossword .inner .box .row-crossword .square.double>img{
  position: absolute;
  top:-6px;
  left:50%;
  transform:translateX(-50%);
}
.crossword .inner .box .row-crossword .square.double{
  grid-column: span 2;
  padding-bottom: calc(50% - 1.6px);
  background-color: transparent;
  border-color: transparent;
}
.crossword .inner .box .row-crossword .square{
  position: relative;
  padding-bottom: calc(100% - 1.6px);
  width: 100%;
  border:.2px solid rgba(26,25,28,.2);
  background-color:#EEE9E3;
  border-radius: 4px;
}
.crossword .inner .box .row-crossword .square  .letter{
  position: absolute;
  left:0px;
  top:0px;
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.crossword .inner .box .row-crossword .square .number{
  position: absolute;
  left:5px;
  top:0px;
  font-size: 14px;
  line-height: 21px;
  color:#1A191C;
  opacity:.5;
}
.crossword .inner .box .row-crossword{
  margin-bottom: 2px;
}
.crossword .inner .box .row-crossword:last-child{
  margin-bottom: 0px;
}
.crossword .inner .box{
  padding:2px;
  width: 100%;
  grid-column-gap: 2px;
  grid-row-gap: 2px;
}
.crossword .inner>h2{
  margin-top: 0px;
  padding-top: 42px;
  margin-bottom: 42px;
  font-size: 36px;
  position: relative;
  left: -8px;
  line-height: 42px;
  color:#1A191C;
  font-family:"Lora",sans-serif;
  font-weight: 600;
  text-align: center;
}
.pen__wrapper{
  margin-top: 31px;
  display: inline-flex;
}
.crossword{
  padding-bottom: 76px;
}
.pen__wrapper>img{
  min-width: 322px;
}
.crossword>.desc{
  position: relative;
}
.crossword>.desc .twirl{
  position: absolute;
  top: 11px;
  right: 14px;
}
.crossword>.desc .glasses{
  margin-top: -18px;
  position: relative;
  right: -39px;
}
.crossword>.desc{
  position: relative;
}
.crossword>.desc>ul>li.left-spacer{
  padding-left: 4px;
}
.crossword>.desc>.pencil{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top:12px;
  right:15px;
}
.crossword>.desc>span{
  display: block;
  margin-bottom: 27px;
  font-size: 18px;
  line-height: 28px;
  color:#000000;
  font-weight: 600;
}
.crossword>.desc{
  padding-left: 14px;
  padding-right: 14px;
}
.crossword>.desc{
  padding-top: 126px;
  min-width: 310px;
  max-width: 310px;
}
.crossword{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-inner{
  padding-top: 63px;
}

.grid__row{
  position: absolute;
  left:0px;
  top:0px;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.grid__row>.row:nth-child(1) , .buffer-vertical>.column:nth-child(1){
  position: absolute;
  top:0px;
  left:0px;
  width: 2px;
  height: calc(100% - 2px);
  background: url('../assets/figma/dot-y-dark.svg');
  background-size: 2px 14px;
  background-repeat: repeat-y;
}
.article__box{
  position: relative;
}
.article__box.no-vertical:before , .article__box.last:before{
  content:none;
}
.article__box.no-vertical .grid__row{
  height: calc(100%);
}
.article__box.last{
  padding-bottom: 140px;
  margin-bottom: -14px;
  position: relative;
  z-index: 2;
}
.article__box:before{
  content: "";
  position: absolute;
  left: 0px;
  bottom: -1px;
  height: 2px;
  width: 100%;
  background: url(../assets/figma/dot-x-dark.svg);
  background-size: 14px 2px;
  background-repeat: repeat-x;  
}
.article__box>.grid__row{
  top:14px;
  height: calc(100% - 14px);
}
.grid__row>.row.hidden{
  display: none;
}
.grid__row>.row:nth-child(2) , .buffer-vertical>.column:nth-child(2){
  position: absolute;
  top:-1px;
  left:308px;
  width: 2px;
  height: calc(100% - 2px);
  background: url('../assets/figma/dot-y-dark.svg');
  background-size: 2px 14px;
  background-repeat: repeat-y;
}
.grid__row>.row:nth-child(3) , .buffer-vertical>.column:nth-child(3){
  position: absolute;
  top:0px;
  left:630px;
  width: 2px;
  height: calc(100% - 2px);
  background: url('../assets/figma/dot-y-dark.svg');
  background-size: 2px 14px;
  background-repeat: repeat-y;
}
.buffer-vertical{
  position: relative;
}
.grid__row>.row:nth-child(4) , .buffer-vertical>.column:nth-child(4){
  position: absolute;
  top:0px;
  right:308px;
  width: 2px;
  height: calc(100% - 2px);
  background: url('../assets/figma/dot-y-dark.svg');
  background-size: 2px 14px;
  background-repeat: repeat-y;
}
.grid__row>.row:nth-child(5) , .buffer-vertical>.column:nth-child(5){
  position: absolute;
  top:0px;
  right:0px;
  width: 2px;
  height: calc(100% - 2px);
  background: url('../assets/figma/dot-y-dark.svg');
  background-size: 2px 14px;
  background-repeat: repeat-y;
}

.crossword{
  position: relative;
}
.crossword{
  padding-bottom: 90px;
  margin-bottom: -14px;
  position: relative;
  z-index: 2;
}
.crossword>.grid__row{
  top:14px;
  height: calc(100% - 14px);
}
.case-spacer .buffer-vertical>.column{
  top:12px;
  height: calc(100% - 14px);
}
.case-study .inner{
  position: relative;
  z-index: 2;
}
.case-spacer>.horizontal-spacer:nth-child(1){
    position: absolute;
    left: 0px;
    top: -1px;
    height: 2px;
    width: 100%;
    background: url(../assets/figma/dot-x-dark.svg);
    background-size: 14px 2px;
    background-repeat: repeat-x;
}
.case-spacer{
  position: relative;
}
.case-spacer>.horizontal-spacer:last-child{
    position: absolute;
    left: 0px;
    bottom:-1px;
    height: 2px;
    width: 100%;
    background: url(../assets/figma/dot-x-dark.svg);
    background-size: 14px 2px;
    background-repeat: repeat-x;
}
.case-study>.buffer-vertical{
  display: none;
}
.footer-inner{
  position: relative;
}
.footer-inner:before{
  content:"";
  position: absolute;
  left: 0px;
  width: 100%;
  height:282px;
  top:20px;
  background: url('../assets/figma/dot-footer-x-y.svg');
  background-size: 14px 14px;
  background-repeat: repeat;
}
body,html{
  overflow-x:hidden;
}

body.fallback .nav{
  padding-left: 56px;
  padding-right: 56px;
  max-width: 100%;
}

body.fallback main{
  max-width: 100%;
}
body.fallback .hero-copy{
  padding-left: 0px;
  width: 242px;
}
body.fallback .hero-title-graphics{
  display: block;
  align-items: flex-start;
  width: 100%;
}
body.fallback .hero-title{
  font-size: 56px;
  line-height: 70px;
}
body.fallback .hero-hello-text{
  justify-content: flex-start;
  justify-self: start;
}
body.fallback .hero{
  padding-top: 42px;
  padding-bottom: 0px;
}
body.fallback .hero-kate{
  width: 137px;
  height: 70px;
}
body.fallback .hero-art{
  right: 0px;
  bottom:0px;
  width: auto;
  height: auto;
  top:12px;
  left: auto;
}
body.fallback .hero{
  max-width: 632px;
  margin-left: auto;
  margin-right: auto;
  background:none;
  min-height: 427px;
  position: relative;
  z-index: 4;
}
body.fallback .hero-merged{
  width: 632px;
  height: 415px;
}
body.fallback .hero{
  position: relative;
}
section.description{
  padding-bottom: 64px;
  width: 100%;
  background-color:#D2C7BB;
  position: relative;
  padding-top: 42px;
}

section.description:before{
  content:"";
  position: absolute;
  left:0px;
  top:-2px;
  width: 100%;
  height: 36px;
  background:url("../assets/figma/outline-fallback.svg");
  background-repeat: repeat-x;
  background-size: auto 34px;
  background-position:center;
  z-index: 2;
}


section.description>img{
  width: 100%;
  position: relative;
  z-index: 2;
  margin-bottom: -6%;
}
section.description .box>img{
  position: absolute;
  left:0px;
  top:-42px;
  width: 100%;
}
section.description .box{
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 14px;
  padding-bottom: 28px;
  padding-left: 28px;
  padding-right: 28px;
  position: relative;
  background: url(../assets/figma/pattern-square.svg);
  background-repeat: repeat;
  background-size: auto;
  background-position: -0.35px 0px;
  background-color: var(--paper);
  position: relative;
  z-index: 3;
}
section.description:after{
  content:"";
  position: absolute;
  left:0px;
  top:0px;
  width: 100%;
  height: 100%;
  background: url(../assets/figma/dot-x-y-dark.svg);
  background-size: 14px 14px;
  background-repeat: repeat;
  z-index: 0;
}
section.description .box>p{
  margin-top: 0px;
  margin-bottom: 21px;
  font-size: 21px;
  line-height: 28px;
  color:#1A191C;
  font-weight: 500;
  font-family:"Manrope" ,sans-serif;
}
section.description .box>p:last-child{
  margin-bottom: 0px;
}
section.description .box>.bottom{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0px;
  bottom:-17px;
  width: 100%;
}
.enter__password{
  position: fixed;
  top:0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color:rgba(210,199,187,.6);
  backdrop-filter:blur(10px);
}
.enter__password>.inner .box{
  width: 100%;
  max-width: 420px;
  padding-left: 42px;
  padding-right: 42px;
  padding-bottom: 73px;
  position: relative;
  padding-top: 42px;
  background:url('../assets/figma/password-back.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.enter__password>.inner .box>img{
  position: absolute;
  left:50%;
  transform:translateX(-50%);
  top:-42px;
}
.enter__password>.inner{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pattern-mobile{
  display: none;
}
.description>.box>img.pattern-desktop{
  display: block;
}
.enter__password .box form>button span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 7px;

}
.enter__password{
  display: none;
}
.enter__password .box .bottom__float{
  display: inline-flex;
  position: absolute;
  left:0px;
  bottom:0px;
}
.enter__password .close-btn{
  display: inline-flex;
  position: absolute;
  z-index: 2;
  align-items: center;
  justify-content: center;
  top:14px;
  right:14px;
}
.enter__password .box form>button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  position: relative;
  border-radius: 250px;
  cursor:pointer;
  font-family:"Manrope" ,sans-serif;
  background-color:#111111;
  color:#fff;
  width: 100%;
  outline:none;
  border:0px;
  font-size: 18px;
  line-height: 28px;
  color:#FEFBF4;
  font-weight: 600;
}
.enter__password .box form>input{
  width: 100%;
  margin-bottom: 14px;
  background-color:#EEE9E3;
  border-radius: 20px;
  height: 42px;
  outline:none;
  border:0px;
  padding-left: 14px;
  padding-right: 14px;
  color:#000;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
}
.enter__password .box form{
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 336px;
  position: relative;
}
.enter__password .box>p.form-error-msg{
  color:#F73E3B;
}
.error-squiggle{
  position: absolute;
  height: 4px;
  background: url('../assets/figma/error-squiggle.svg') repeat-x left center;
  background-size: 27px 4px;
  pointer-events: none;
  z-index: 2;
}
.enter__password .box>span{
  display: block;
  text-align: center;
  margin-bottom: 35px;
  font-size: 18px;
  line-height: 28px;
  color:#1A191C;
  font-weight: 500;
}
.enter__password .box>p{
  text-align: center;
  margin-top: 0px;
  margin-bottom: 7px;
  font-size: 28px;
  line-height: 34px;
  color:#1A191C;
  font-weight: 600;
}
.enter__password .box .media{
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero{
  margin-bottom: -2px;
}
.hero:before{
  content:"";
  position: absolute;
  left:0px;
  top:0px;
  width: 100%;
  height: calc(100% - 12px);
  background: url(../assets/figma/dot-x-y-dark.svg);
  background-size: 14px 14px;
  background-repeat: repeat;
  z-index: 2;
}
.hero-copy{
  z-index: 3;
}
.works-arrow{
  z-index: 3;
}
.case-study .mockups{
  position: relative;
}
.case__studies .case-spacer + .case-study{
  margin-top: 3px;
}
.case-study .mockups:before{
  width: 100%;
  content:"";
  position: absolute;
  height: 100%;
  top:10px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% - 12px);
  background: url(../assets/figma/dot-x-y-dark.svg);
  background-size: 14px 14px;
  background-repeat: repeat;
}
.case-study .mockups img{
  position: relative;
  z-index: 2;
}
.case-study .mockups img{
  height: auto;
}
.case-study .mockups{
  min-height: 640px;
}
.fallback .hero:before{
  content:none;
}
.case-study>.buffer-vertical>.column:nth-child(2) , .case-study>.buffer-vertical>.column:nth-child(3) ,.case-study>.buffer-vertical>.column:nth-child(4),.case-study>.buffer-vertical>.column:nth-child(5){
  display: none;
}
.case-study>.buffer-vertical{
  display: block;
}
.case__studies .case-study{
  margin-bottom: -5px;
}
.case-study .mockups:before{
  height: calc(100% - 16px);
}
.case-study>.buffer-vertical{
  top:10px;
  height: calc(100% - 12px);
}
.case-study .mockups img{
  width: auto;
  max-height: 640px;
}
.footer-form input{
  outline:none;
}
.footer-submit{
  min-width: 56px;
  position: absolute;
  right: 0px;
  top:0px;
  transition:.3s ease-in-out all;
}
.footer-submit:hover{
  background-color: #2F2E30!important;
}
.footer-form{
  position: relative;
}
.footer-form input{
  padding-right: 50px;
}
.nav-links a{
  min-height: 35px;
  padding:0px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 250px;
  transition:.3s ease-in-out all;
}
.nav-links a.btn , .case-study .view__case>a , .article__box .title .btn__wrapper .prev-case , .article__box .desc .btn__wrapper>a , .enter__password .box form>button{
  transition:.3s ease-in-out all;
}
.nav-links a.btn:hover , .case-study .view__case>a:hover , .article__box .title .btn__wrapper .prev-case:hover , .article__box .desc .btn__wrapper>a:hover , .enter__password .box form>button:hover{
  background-color:#303031;
}
section.description{
  margin-top: 7px;
}
section.description .box{
  padding-top: 56px;
  padding-bottom: 51px;
  background:url('../assets/figma/note-back-svg.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
}
section.description .box>p{
  margin-bottom: 28px;
}
section.description{
  padding-bottom: 32px;
}
.works-arrow{
  width: 150px;
}
.works-arrow .works-word{
  width: 124px;
  height: auto;
  left:21px;
  top:7px;
}
.works-arrow .works-hand-arrow{
  width: 136px;
}
.hero-art.mobile{
  display: none;
}
.site-header{
  position: fixed;
  top:0px;
  left:0px;
  width: 100%;
}
.case__inner--page .back__btn{
  height: 57px;
}
body{
  padding-top: 70px;
}
@media (max-width: 740px){
  section.description .box{
    background:url('../assets/figma/note-back-mobile.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top left;
  }
  section.description .box>p{
    margin-bottom: 21px;
  }
  body.fallback .hero-art{
    display: none;
  }
  body.fallback .hero-art.mobile{
    display: block;
  }
  section.description .box>img.pattern-desktop{
    display: none;
  }
  section.description .box>img.pattern-mobile{
    display: block;
  }
  body.fallback .nav{
    padding-left: 14px;
    padding-right: 14px;
  }
  body.fallback .hero{
    max-width: 100%;
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 12px;
  }
  body.fallback .hero-art{
    width: 100%;
    min-width: 400px;
    left: -20px;
    top:0px;
    position: relative;
  }
  body.fallback .hero-art{
    width: calc(100% + 40px);
  }
  body.fallback .hero-title{
    font-size: 36px;
    line-height: 42px;
  }
  body.fallback .hero-kate{
    width: 82px;
    height: 42px;
  }
  body.fallback .hero{
    min-height: 0px;
  }
  body.fallback .hero-merged{
    width: 100%;
    height: auto;
  }
  body.fallback .hero-copy{
    position: absolute;
    top:24px;
  }
  section.description>img{
    margin-left: -14px;
    max-width: calc(100% + 28px);
    width: calc(100% + 28px);
  }
  section.description .box>.bottom{
    bottom:-13px;
  }
  section.description .box{
    background-position: -0.85px 0px;
  }
  section.description .box>p{
    font-size: 14px;
    line-height: 21px;
  }
  section.description .box{
    max-width: 338px;
  }
  section.description{
    padding-left: 14px;
    padding-right: 14px;
  }
  .nav-links{
    gap:7px;
  }
  .nav-links a:nth-child(1){
    margin-right: -7px;
  }
  .nav-links a{
    padding:12px 7px;
  }
}

@media (max-width: 375px){
  section.description{
    padding-left: 0px;
    padding-right: 0px;
  }
  section.description .box{
    transform:scale(0.9);
  }
}

.click-sparkle {
  position: absolute;
  pointer-events: none;
  width: 120px;
  height: 120px;
  z-index: 9999;
}
.click-sparkle svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.click-sparkle path {
  transition: none;
}
@keyframes clickFadeOut {
  0%   { opacity: 1; }
  100% { opacity: 0; }
}
.click-sparkle.fade-out {
  animation: clickFadeOut 0.4s ease-out forwards;
}

.brush-hidden {
  opacity: 0;
}
.brush-svg-inline {
  overflow: visible;
}