body {
  padding: 0;
  margin: 0;
  font-family: "Lato", sans-serif;
}
header {
  padding-left: 40px;
  padding-right: 40px;
}
header div.top-line {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
header div.top-line div.logo {
  font-weight: 300;
  text-transform: uppercase;
}
header div.top-line div.logo h1 {
  color: #777;
  font-weight: inherit;
  margin-bottom: 5px;
}
header div.top-line div.logo h1 span.smaller {
  color: inherit;
  font-size: 1.2rem;
  padding-left: 10px;
  padding-right: 10px;
}
header div.top-line div.logo h2 {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 0.8rem;
}
.menu-toggle {
  position: absolute;
  right: 50px;
  top: 40px;
  display: inline-block;
  border: 0;
  background: transparent;
  font-size: 0.9rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  cursor: pointer;
}
header nav.mobile-nav {
  display: block;
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: max-height 0.78s ease, opacity 0.72s ease, transform 0.78s ease;
}
header nav.mobile-nav.is-open {
  max-height: 320px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
header nav.mobile-nav ul {
  margin: 0;
  padding: 10px 0 0 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
header nav.mobile-nav li {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2rem;
  text-align: right;
}
header nav.mobile-nav a {
  text-decoration: none;
  color: black;
}
.page-setup {
  display: grid;
  grid-template-columns: [full-start] minmax(1rem, 1fr) [main-start] minmax(0, 70rem) [main-end] minmax(1rem, 1fr) [full-end];
}
.page-setup-children {
  grid-column: main-start / main-end;
}
main {
  display: grid;
  grid-template-columns: [full-start] minmax(1rem, 1fr) [main-start] minmax(0, 70rem) [main-end] minmax(1rem, 1fr) [full-end];
}
/* Standard content stays in the middle */
main > * {
  grid-column: main-start / main-end;
}
/* Full bleed content breaks out */
main .full-bleed {
  grid-column: full-start / full-end;
  width: 100%;
}
div.rule {
  border-bottom: 1px solid black;
  margin-top: 5px;
  margin-bottom: 5px;
}
footer {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 11px;
  display: grid;
  grid-template-columns: [full-start] minmax(1rem, 1fr) [main-start] minmax(0, 70rem) [main-end] minmax(1rem, 1fr) [full-end];
}
footer > * {
  grid-column: main-start / main-end;
}
.banner-dotcom {
  position: relative;
  background-image: url("../../images/dotcom-residence.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100vw;
  height: auto;
}
.banner-dotcom img {
  width: 100%;
}
.banner-dotcom div.text {
  font-weight: bold;
  color: white;
  position: absolute;
  left: 20px;
  bottom: 20px;
}
.banner-dotcom div.text h2 {
  font-size: 3rem;
  margin-top: 5px;
  margin-bottom: 5px;
}
.banner-dotcom div.text h3 {
  font-size: 1.5rem;
  margin-top: 5px;
  margin-bottom: 5px;
}
div.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 40px;
  margin-top: 20px;
}
@media (max-width: 600px) {
  div.gallery {
    grid-template-columns: 1fr 1fr;
  }
}
div.gallery img {
  width: 100%;
  height: 230px;
  display: block;
  cursor: pointer;
}
body.lightbox-open {
  overflow: hidden;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.lightbox.is-open {
  display: flex;
}
.lightbox img {
  max-width: 95vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
}
.lightbox-nav,
.lightbox-close {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
}
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
}
.lightbox-prev {
  left: 20px;
}
.lightbox-next {
  right: 20px;
}
.lightbox-close {
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
}
/*# sourceMappingURL=styles.css.map */