.fixed.signup {
  position: fixed;
  top: var(--gutterSpacing);
  left: var(--gutterSpacing);
  padding: 0;
  background: var(
    --custom-fixedFormBg,
    hsla(0, 0%, 18%, 0.7)
  );
  padding: 20px;
  border-radius: calc(var(--cornerRounding) * 4);
  width: 18rem;
  box-shadow: 0 7px 25px -10px var(--bodyFontColor);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.fixed .signup__dismiss {
  display: block;
}

.nag {
  background: var(--colorShade);
}
.nag__button {
  font-size: var(--text-xxl);
}

.smallprint {
  opacity: 0.6;
}
.smallprint a {
  color: inherit !important;
}

@keyframes fadeInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.fade-in-up {
  opacity: 0;
  transform: translateY(100px);
  animation: 0.75s both fadeInUp;
}

.menu-list {
  list-style: none;
  display: grid;
  padding: 0;
  margin: 0;
}
.menu-list a {
  display: block;
  padding: 0.4em 0;
  text-decoration: none;
}
.menu-list a:hover {
  text-decoration: underline;
}
.menu-list > li > a {
  color: var(--colorBrand);
}
.menu-list .sub-menu {
  list-style: none;
  padding-left: 1em;
  border-left: .1em solid var(--colorBrand);
}
.menu-list .sub-menu a {
  color: var(--colorDeep);
  font-size: 92%;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 1;
  align-items: center;
  justify-content: center;
}
.modal[data-open] {
  display: flex;
}
.dialog {
  flex: 0 22rem;
  max-height: calc(100% - 3rem);
  max-width: calc(100% - 3rem);
  overflow: auto;
  padding: 1.5rem;
  box-sizing: border-box;
  background: hsla(0, 0%, 100%, 0.9);
  backdrop-filter: blur(3px);
  border-radius: 1rem;
  color: var(--bodyFontColor);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.dialog__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dialog__body {
  overflow: auto;
  overscroll-behavior: contain;
}
.dialog__close {
  display: block;
  border: 0 none;
  margin: -.75em;
  padding: 0.5rem;
  border-radius: var(--cornerRounding);
  cursor: pointer;
  background: var(--bodyBgColor);
  color: var(--colorShade);
}
.dialog__close svg {
  display: block;
}
.dialog__close:focus {
  outline: 1px solid rgba(238, 41, 40, 0.3);
}
.dialog__head h2 {
  color: var(--bodyFontColor);
  font-size: 1rem;
  margin: 0;
  padding: 0;
  text-align: center;
  max-width: calc(100% - 1.8rem);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.dialog__options {
  box-sizing: border-box;
  max-width: 34rem;
}

.portfolio-links {
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.portfolio-links a img {
  width: 100%;
  height: auto;
}

.footer__branding {
  background: var(--colorDeep);
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
  font-size: var(--text-s);
}
.footer__nav > div {
  display: grid;
  gap: 1rem;
  align-content: start;
}
.footer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  width: auto;
}
.footer__nav h2 {
  margin: 0;
  opacity: 0.6;
  color: var(--bodyBgColor);
}
.footer__nav ul a {
  text-decoration: none;
  color: var(--bodyBgColor);
  font-family: var(--fontStackBody);
  display: inline-block;
  padding: 0.3em 0;
}
.footer__nav ul a:hover {
  color: var(--colorAccent);
}
.footer__nav .custom-logo {
  display: block;
  min-width: 8rem;
  max-width: 12rem;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 851px) {
  .footer__nav {
    text-align: left;
    flex-direction: row;
    justify-content: space-around;
  }
  .footer__nav .custom-logo {
    margin: 0;
  }
  .footer__nav > div {
    max-width: 14rem;
  }
  .footer__nav ul {
    margin: 0;
  }
}
