/*----------------------------------------------*\
    GLOBAL
	======

	@package mfa.design.calarts

\*----------------------------------------------*/
/*----------------------------------------------*\
    COMPONENTS
	==========

	@package mfa.design.calarts

\*----------------------------------------------*/
/* 
 *
 * / Variables
------------------------------------------------*/
/* Colors */
/* Breakpoints */
/* Fonts */
/* 
 *
 * ANCHOR Header
------------------------------------------------*/
.site-header {
  font-family: "Marfa";
  padding: 1em 0 0.6em 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  position: fixed;
  background-color: var(--white);
  z-index: 2;
  left: 1em;
  right: 1em;
}
@media screen and (min-width: 36rem) {
  .site-header {
    padding-bottom: 0.8em;
  }
}
@media screen and (min-width: 48rem) {
  .site-header {
    padding: 1em 0 0.8em 0;
    left: 2em;
    right: 2em;
  }
}
@media screen and (min-width: 64rem) {
  .site-header {
    margin: 0;
    padding-bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1em;
    -webkit-box-align: start;
            align-items: start;
  }
}
.site-header__logo-small {
  font-size: var(--size-300);
  color: var(--pink-text);
  z-index: 999;
}
@media screen and (min-width: 48rem) {
  .site-header__logo-small {
    font-size: var(--size-200);
    letter-spacing: -0.02em;
    grid-column: 1/2;
  }
}
.site-header__logo-small a {
  text-decoration: none;
}
.site-header__logo-small a:focus-visible {
  outline: 1.2px solid var(--pink-text);
  outline-offset: 10px;
}
@media screen and (min-width: 64rem) {
  .site-header .menu-toggle {
    display: none;
  }
}
.site-header .buttons {
  z-index: 999;
}
@media screen and (min-width: 64rem) {
  .site-header .buttons {
    display: none;
  }
}
.site-header .buttons line {
  stroke: var(--pink-text);
}
.site-header__nav {
  display: none;
  position: absolute;
  text-align: right;
  top: 0;
  left: -1em;
  right: 0;
  padding-top: var(--size-900);
  padding-right: 1.25em;
  padding-bottom: 2em;
  background-color: var(--white);
  border-bottom: var(--size-030) solid var(--pink-text);
}
@media screen and (min-width: 48rem) {
  .site-header__nav {
    left: -2em;
    right: -2em;
    padding-right: 2em;
  }
}
@media screen and (min-width: 64rem) {
  .site-header__nav {
    display: -webkit-box;
    display: flex;
    position: static;
    -webkit-box-pack: justify;
            justify-content: space-between;
    grid-column: 2/4;
    width: auto;
    padding: 0;
    border-bottom: none;
  }
}
.site-header__nav li {
  margin-bottom: 1.2em;
}
.site-header__nav a {
  font-size: var(--size-200);
  color: var(--black);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.site-header__nav a.active {
  text-decoration: underline;
}
.site-header__nav a:hover {
  text-decoration: underline;
}
.site-header__nav a:focus-visible {
  outline: 1.2px solid var(--black);
  outline-offset: 10px;
}
@media screen and (min-width: 64rem) {
  .site-header__nav a:focus-visible {
    outline: 1.2px solid var(--green);
  }
}
@media screen and (min-width: 64rem) {
  .site-header__nav a {
    color: var(--green);
  }
}
.site-header__nav li:last-child a::after {
  background-image: url('data:image/svg+xml,<svg width="31" height="31" viewBox="0 0 31 31" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.2338 5.42665L14.2338 7.25095L21.9735 7.25095L5.15338 24.0711L5.15342 24.0711L6.44338 25.3611L6.44342 25.3611L23.2635 8.54112L23.2635 16.2807L25.0878 16.2807L25.0878 5.42657L14.2338 5.42665Z" fill="black"/></svg>');
  background-position: 2px 4px;
  background-repeat: no-repeat;
  background-size: 110%;
  display: inline-block;
  height: 1em;
  width: 1em;
  content: "";
}
@media screen and (min-width: 64rem) {
  .site-header__nav li:last-child a::after {
    background-image: url('data:image/svg+xml,<svg width="31" height="31" viewBox="0 0 31 31" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.2338 5.42665L14.2338 7.25095L21.9735 7.25095L5.15338 24.0711L5.15342 24.0711L6.44338 25.3611L6.44342 25.3611L23.2635 8.54112L23.2635 16.2807L25.0878 16.2807L25.0878 5.42657L14.2338 5.42665Z" fill="%2300971E"/></svg>');
  }
}
.site-header .js-menu-trigger {
  margin: 0;
}

.show-menu .site-header__nav {
  display: block;
  -webkit-animation: slide-down 0.3s ease forwards;
          animation: slide-down 0.3s ease forwards;
}

@-webkit-keyframes slide-down {
  from {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slide-down {
  from {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.landing .site-header {
  position: relative;
  left: 0;
  right: 0;
}
@media screen and (min-width: 64rem) {
  .landing .site-header__logo-small {
    display: none;
  }
}
.landing .site-header__logo-large {
  display: none;
}
@media screen and (min-width: 64rem) {
  .landing .site-header__logo-large {
    display: block;
    font-size: var(--size-400);
    color: var(--pink-text);
    line-height: 105%;
    letter-spacing: -0.02em;
    position: fixed;
    top: 1rem;
  }
  .landing .site-header__logo-large:has(a:focus-visible) {
    outline: 2px solid var(--pink-text);
    outline-offset: 10px;
  }
  .landing .site-header__logo-large:has(a:focus-visible) a:focus {
    outline: none;
  }
}
.landing .site-header__logo-large a {
  text-decoration: none;
}

.work .site-header {
  background-color: var(--gray);
}
.work .site-header__logo-small {
  color: var(--white);
}
.work .site-header__logo-small a:focus-visible {
  outline: 1.2px solid var(--white);
  outline-offset: 10px;
}
.work .site-header__nav {
  background-color: var(--gray);
}
.work .site-header__nav a {
  color: var(--black);
}
.work .site-header__nav a:focus-visible {
  outline: 1.2px solid var(--black);
  outline-offset: 10px;
}
.work .site-header__nav li:last-child a::after {
  background-image: url('data:image/svg+xml,<svg width="31" height="31" viewBox="0 0 31 31" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.2338 5.42665L14.2338 7.25095L21.9735 7.25095L5.15338 24.0711L5.15342 24.0711L6.44338 25.3611L6.44342 25.3611L23.2635 8.54112L23.2635 16.2807L25.0878 16.2807L25.0878 5.42657L14.2338 5.42665Z" fill="black"/></svg>');
}
.work .site-header .buttons line {
  stroke: var(--white);
}