:root {
  --unit: 8px;
  --grid-count: 4;
  --grid-max-width: 80rem;
  --type-fs-base: calc(var(--unit) * 2);
  --type-line-height: 1.5;
  --ff-heading: "Montserrat", sans-serif;
  --ff-base: "Montserrat", sans-serif;
  --color-white: #fff;
  --color-black: #111111;
  --color-green: #c1f6dc;
  --color-light-gray: rgba(0, 0, 0, 0.05);
  --animation-timing: cubic-bezier(.77,0,.18,1);
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animationTimingFunction: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animationTimingFunction: cubic-bezier(0, 0, 0.2, 1);
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  font-style: normal;
  margin: 0;
  padding: 0;
  position: relative;
}

em {
  font-style: italic;
}

strong {
  font-weight: bold;
}

::selection {
  background-color: var(--color-green);
  color: var(--color-black);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-green);
  font: var(--type-fs-base)/var(--type-line-height) var(--ff-base);
  overflow-x: hidden;
  padding-top: calc(var(--unit) * 10);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-heading);
  font-weight: 700;
  text-transform: uppercase;
}

a {
  color: currentColor;
}

img {
  background-color: var(--color-light-gray);
  display: block;
  height: auto;
  max-width: 100%;
}

.wrapper {
  margin-right: auto;
  margin-left: auto;
  width: clamp(16rem, 90vw, calc(var(--grid-max-width) + 2rem));
}

@media (min-width: 40rem) {
  .wrapper {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
.grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-count), 1fr);
}

.row {
  display: block;
  width: 100%;
}

.visually-hidden:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.scroll {
  animation: bounce 1s infinite;
  /* background: transparent url(/assets/icons/arrow-down.svg) center center; */
  background-repeat: no-repeat;
  border: none;
  cursor: pointer;
  display: block;
  height: 3rem;
  margin: 0 auto;
  width: 3rem;
}

.navigation {
  backdrop-filter: blur(5px);
  background-color: transparent;
  background-color: var(--color-green);
  border-bottom: 1px solid var(--color-light-gray);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  line-height: 1;
  opacity: 0.85;
  overflow: hidden;
  padding: 1rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9;
}
.navigation::before {
  background-color: rgba(255, 255, 255, 0.95);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: translateX(101%);
  transition: transform 0.5s var(--animation-timing);
  width: 100%;
}
.navigation__list {
  list-style: none;
  display: flex;
  flex-direction: row;
  margin-left: auto;
  margin-right: 2rem;
  visibility: hidden;
}
.navigation__item {
  opacity: 0;
  transform: translateY(101%);
  transition: all 0.2s var(--animation-timing);
}
.navigation__item:nth-of-type(1) {
  transition-delay: 0.4s;
}
.navigation__item:nth-of-type(2) {
  transition-delay: 0.6s;
}
.navigation__item:nth-of-type(3) {
  transition-delay: 0.8s;
}
.navigation__item a::before {
  background-color: #222;
  bottom: 0.5em;
  content: "";
  display: inline-block;
  height: 2px;
  opacity: 0.75;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s var(--animation-timing);
  width: 40%;
}
.navigation__item a:focus::before,
.navigation__item a:hover::before {
  transform: scaleX(1);
}
.navigation__item a {
  display: block;
  overflow: hidden;
  padding: 1rem;
  text-decoration: none;
  transition: all 0.2s var(--animation-timing);
}
.navigation__trigger {
  background-color: transparent;
  border: none;
  cursor: pointer;
  height: 3rem;
  width: 3rem;
}
.navigation__trigger-icon {
  display: inline-block;
  height: auto;
  width: 2.5rem;
}
.navigation--open::before {
  transform: translateX(0);
}
.navigation--open .navigation__list {
  display: flex;
  visibility: visible;
}
.navigation--open .navigation__item {
  opacity: 1;
  transform: translateY(0);
}

.home {
  align-items: center;
  display: grid;
  grid-template-columns: 2.5rem auto;
  column-gap: 1rem;
  text-decoration: none;
}
.home__logo {
  display: inline-block;
  height: 2.5rem;
  width: 2.5rem;
}

.block {
  align-items: center;
  display: grid;
  gap: 1rem;
}

@media (min-width: 40rem) {
  .block {
    gap: 2rem;
  }
}
@media (min-width: 60rem) {
  .block {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;
  }

  .block__lead {
    align-self: start;
    background-color: rgba(255, 255, 255, 0.85);
    font-size: 1.25em;
    grid-column: 3/-1;
    grid-row: 1/2;
    padding: 4rem;
    z-index: 1;
  }

  .block__figure {
    grid-column: 1/-2;
    grid-row: 1/-1;
  }
}
.block__figure,
.block__lead {
  filter: drop-shadow(0.5em 0.5em 1em rgba(0, 0, 0, 0.125));
}
@media (min-width: 60rem) {
  .block__figure,
.block__lead {
    filter: drop-shadow(1em 1em 2em rgba(0, 0, 0, 0.25));
  }
}

.block__figure img {
  opacity: 0.75;
}

.hero {
  background-color: transparent;
  padding: 2rem 0;
}

@media (min-width: 60rem) {
  .hero {
    padding: 4rem 0;
  }
}
.hero .wrapper {
  align-items: center;
  display: grid;
  gap: 1rem;
}

@media (min-width: 40rem) {
  .hero .wrapper {
    gap: 2rem;
  }
}
@media (min-width: 60rem) {
  .hero .wrapper {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .hero__header {
    grid-column: 1/4;
    grid-row: 1;
  }

  .hero__figure {
    grid-column: 2/-1;
    grid-row: 1;
  }
}
.hero__header {
  line-height: 1.25;
  text-transform: uppercase;
  z-index: 1;
}

.hero__heading {
  font-size: 1.5rem;
  font-size: 1rem;
}

.hero__pitch {
  font-size: 2.25rem;
  font-size: 1.5rem;
  opacity: 0.75;
}

.hero__figure {
  filter: drop-shadow(0.5em 0.5em 1em rgba(0, 0, 0, 0.125));
}
@media (min-width: 60rem) {
  .hero__figure {
    filter: drop-shadow(1em 1em 2em rgba(0, 0, 0, 0.25));
  }
}

.hero__figure img {
  opacity: 0.75;
}

.pitch,
.address {
  margin: 5rem 0;
}
@media (min-width: 40rem) {
  .pitch,
.address {
    margin: 10rem 0;
  }
}

.address .wrapper {
  align-items: center;
  display: grid;
  grid-template-rows: repeat(2, 1fr);
}
@media (min-width: 40rem) {
  .address .wrapper {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
  }
}

.address__info {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  grid-row: 1/2;
  height: 100%;
  justify-content: flex-end;
  padding: 1rem;
  text-align: right;
}
@media (min-width: 40rem) {
  .address__info {
    grid-column: 1/2;
    grid-row: 1;
    padding: 2rem;
  }
}
@media (min-width: 60rem) {
  .address__info {
    padding: 4rem;
  }
}

.address__info span {
  display: block;
}

.address__map {
  cursor: pointer;
  grid-row: 2/-1;
}
@media (min-width: 40rem) {
  .address__map {
    grid-column: 2/-1;
    grid-row: 1;
  }
}
.address__map:focus-within::after {
  pointer-events: none;
}

.address__map::after {
  content: "";
  display: block;
  padding-top: 100%;
}

.address__map > * {
  border: none;
  display: block;
  height: 100%;
  opacity: 0.75;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
}

.footer {
  background-color: #fff;
  padding: 2rem;
  text-align: center;
}
.footer span + span::before {
  content: " ~ ";
  opacity: 0.5;
}

/*# sourceMappingURL=/master.css.map */