html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: white;
  font-family: var(--font);
  font-weight: 300;
  line-height: 1.5;
  color: black;
}

a {
  color: var(--orange);
  text-decoration: none;
}

a:hover {
  color: var(--quarry);
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

.content-width {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--page);
  width: calc( 100% - 4rem );
}

.section-menu-container {
  padding: 2rem 0;
}

header {
  position: relative;
  z-index: 99;
}

main {
  min-height: 85vh;
}

h2 {
  font-size: 2rem;
  font-weight: 100;
  margin: 0 0 1rem 0;
}

h3 {
  font-size: 1.5rem;
  font-weight: 300;
  margin: 0 0 1rem 0;
}

h4 {
  font-size: 1rem;
  font-weight: 200;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
}

.page-content strong {
  font-weight: 400;
  text-transform: uppercase;
}

.mobile-only,
.desktop-only {
  display: none;
}

.page-content ul,
.page-content ol {
  margin: 0 0 1rem 1.25em;
}

@media screen and (max-width: 799px) {
  .mobile-only {
    display: block;
  }
}

@media screen and (min-width: 800px) {
  .desktop-only {
    display: block;
  }
}

.back-to-top-link {
  bottom: -5rem;
  opacity: 0.5;
  position: fixed;
  left: 2rem;
  transition: all 250ms linear;
}

.back-to-top-link:hover {
  opacity: 1;
}

.scrolled .back-to-top-link {
  bottom: 1rem;
}

.featherlight .featherlight-content {
  background-color: transparent;
  border: 0;
  margin: 0 auto;
  padding: 1rem;
  width: calc( 100% - 2rem );
}

.featherlight .featherlight-image {
  margin: 0 auto;
  height: 90vh;
  width: auto;
}

.featherlight-next,
.featherlight-previous {
  top: 0;
}

.featherlight-next {
  right: 0;
  left: 90%;
}

.featherlight-previous {
  left: 0;
  right: 90%;
}

.featherlight-next span,
.featherlight-previous span {
  color: rgba(0,0,0,0.25);
  text-shadow: none;
}

.featherlight .featherlight-close-icon {
  background-color: var(--orange);
  color: white;
}

.splash-video {
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
}

.splash-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: unset;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  translate: -50% -50%;
  z-index: 0;
}

.splash-video.grayscale video {
  filter: grayscale(100%);
}

.splash-content {
  animation: splashContent 8s linear forwards 2s;
  background-color: rgba(255,255,255,0.9);
  height: 100vh;
  left: 0;
  padding: 2rem;
  position: absolute;
  top: 0;
  translate: 0 0;
  width: 100%;
}

@keyframes splashContent {
  0% {
    translate: 0 0;
  }
  100% {
    translate: 0 calc( -100vh + 10rem );
  }
}

.splash-cta {
  display: none;
}

.splash-blurbs {
  align-items: center;
  bottom: 2rem;
  display: flex;
  gap: 1rem;
  left: 2rem;
  justify-content: space-between;
  position: absolute;
  width: calc( 100% - 4rem );
}

.splash-blurbs .blurb {
  align-items: flex-end;
  display: flex;
  font-weight: 300;
  justify-content: space-between;
  overflow: hidden;
}

.splash-blurbs .blurb a {
  color: black;
}

.blurb.one {
  animation: blurbRevealReverse 1s linear forwards 10s;
}

.blurb.two {
  animation: blurbReveal 1s linear forwards 11s;
  max-height: 0;
}

@keyframes blurbReveal {
  0% {
    max-height: 0;
    opacity: 0;
  }
  100% {
    max-height: 10rem;
    opacity: 1;
  }
}

@keyframes blurbRevealReverse {
  0% {
    max-height: 10rem;
    opacity: 1;
  }
  100% {
    max-height: 0;
    opacity: 0;
  }
}

.splash-image {
  margin: 0;
}

.splash-image img {
  margin: 0;
  max-height: calc( 100vh - 10rem );
  width: 100%;
}

.splash-blurbs .enter-button {
  color: var(--orange);
  display: flex;
  font-weight: 400;
  gap: 0.5rem;
  white-space: nowrap;
}

.splash-blurbs .enter-button span {
  animation: revealEnterButton 1s linear forwards 12s, blink 100ms linear infinite 15s; 
  display: block;
  max-width: 0rem;
  overflow: hidden;
}

.splash-blurbs .enter-button span:hover {
  color: black;
}

@keyframes revealEnterButton {
  0% {
    max-width: 0rem;
  }
  100% {
    max-width: 10rem;
  }
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.section-menu-container {
  font-weight: 300;
  position: relative;
  text-transform: uppercase;
}

.section-menu-container .expander {
  background-color: white;
  max-height: 0;
  overflow: hidden;
  position: absolute;
  transition: all 500ms ease;
}

.section-menu,
.section-menu ul {
  list-style-type: none;
  padding: 0 1rem 1rem 0;
  margin: 0;
}

.section-menu li {
    color: rgba(0,0,0,0.5);
}

.section-menu a {
  color: black;
  display: block;
}

.section-menu a:hover {
  color: var(--orange);
}

body.menu-active .section-menu-container .expander {
  max-height: 20rem;
}

.section-menu .current-menu-item a,
.section-menu .current_page_item a {
  color: rgba(0,0,0,0.5);
}

.menu-toggle {
  cursor: pointer;
  width: fit-content;
}

.menu-toggle:hover {
  color: var(--orange);
}

.menu-toggle span {
  font-weight: 400;
}

.menu-toggle span:after {
  content: "\25BF";
  display: inline-block;
  margin-left: 0.5rem;
}

body.menu-active .menu-toggle span:after {
  rotate: 180deg;
}

header {
  background-color: white;
}

.header-areas {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 2rem;
  position: relative;
}

.header-areas .logo:hover {
  opacity: 0.75;
}

.gallery-thumbnail {
  background-position: center;
  background-size: cover;
  filter: grayscale(100%);
  height: 0;
  padding-top: 50%;
  transition: filter 500ms linear;
}

.gallery-item {
  margin-bottom: 2rem;
}

.gallery-item:hover .gallery-thumbnail {
  filter: grayscale(0%);
}

.gallery-item a {
  color: black;
}

.gallery-item.shortcode  h2 {
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.gallery-item .excerpt {
  line-height: 1.25;
}

.gallery-meta {
  align-items: center;
  font-weight: 300;
  display: flex;
  gap: 0.5rem;
  margin: 0.5rem 0;
}

.gallery-meta h2 {
  font-size: 1rem;
  font-weight: 300;
  margin: 0;
}

.gallery-item .hidden {
  display: none;
}

.asw .modal-dialog {
  margin-left: 50%;
  margin-top: 2rem;
  translate: -50% 0;
  width: calc( 100% - 2rem );
}

.carousel .media-item img,
.carousel .media-item video {
  height: auto;
  margin: 0 auto;
  max-height: 80vh;
}

.modal {
  --bs-modal-width: 100%;
}

.asw .modal-content {
  background-color: rgba(255,255,255,0.1);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.asw .modal-header {
  border-bottom: 0;
  justify-content: flex-end;
}

.asw .carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 5%;
    font-size: 1rem;
    color: #fff;
    text-align: center;
    text-shadow: none;
    filter: none;
    opacity: .5;
}

.asw .carousel-control.left,
.asw .carousel-control.right {
  background: transparent;
}

.asw .carousel-control:hover {
  opacity: 1;
}

.asw button.close {
  align-items: center;
  background-color: var(--orange);
  border: 0;
  color: white;
  display: flex;
  height: 1.5rem;
  justify-content: center;
  opacity: 1;
  padding: 0;
  text-shadow: none;
  width: 1.5rem;
}

.asw button.close:hover {
  background-color: black;
}

.asw .modal-backdrop.in {
  background-color: white;
  opacity: .9;
}

.modal-backdrop {
  --bs-backdrop-bg: #FFF;
  --bs-backdrop-opacity: 0.9;
  background-color: var(--bs-backdrop-bg);
}

.asw .carousel-control .glyphicon-chevron-left, 
.asw .carousel-control .glyphicon-chevron-right {
    align-items: center;
    background-color: black;
    border-radius: 9999px;
    display: flex;
    font-size: 1rem;
    height: 1.5rem;
    justify-content: center;
    width: 1.5rem;
}

.carousel .counter {
  animation: fadeIn 500ms linear forwards 1s;
  margin-top: 0.5em;
  opacity: 0;
  text-align: center;
}

.carousel .counter a {
  align-items: center;
  display: flex;
  gap: 0.5em;
  color: var(--graphite);
  justify-content: center;
}

.carousel .counter a:hover {
  color: var(--orange);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  background-color: var(--orange);
  background-size: 75%;
  border: 2px solid white;
  border-radius: 99px;
  display: block;
  height: 2rem;
  width: 2rem;
}

.carousel-control-next-icon {
  background-position: 60% center;
}

.carousel-control-prev-icon {
  background-position: 20% center;
}

footer {
  background-color: var(--concrete);
  margin-top: 2rem;
  padding: 1rem 0;
}

footer .copyright {
  text-align: center;
}

footer .copyright .divider {
  opacity: 0.25;
}

.areas-menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0.5rem;
}

.areas-menu {
  background-color: white;
  bottom: 6rem;
  position: fixed;
  right: 2rem;
  text-align: right;
}

.areas-menu a {
  color: black;
  text-transform: uppercase;
}

.areas-menu a:hover {
  color: var(--orange);
}

.areas-menu li.active a {
  font-weight: 400;
}

.single-gallery {
  position: relative;
}

.asw .carousel-control-next,
.asw .carousel-control-prev {
  top: calc(50% - 1rem);
  bottom: auto;
  width: 4rem;
}

.single-gallery-item,
.single-gallery-item a,
.single-gallery-item:hover {
  color: black;
}

.single-gallery-item a {
  font-weight: 300;
}

.single-gallery-item a:hover {
  color: var(--orange);
}

ul.wp-block-social-links {
  margin-left: 0;
}