@charset "UTF-8";
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes underline-sweep {
  0% {
    width: 0;
    left: 0;
  }
  20% {
    width: 60%;
    left: 0;
  }
  40% {
    width: 60%;
    left: 40%;
  }
  100% {
    width: 100%;
    left: 100%;
  }
}
@keyframes underline-flash {
  0% {
    width: 0;
    left: 0;
    opacity: 1;
  }
  50% {
    width: 100%;
    left: 0;
    opacity: 1;
  }
  80% {
    width: 100%;
    left: 100%;
    opacity: 0.75;
  }
  100% {
    width: 100%;
    left: 100%;
    opacity: 0;
  }
}
/* src/styles/base/_reset.scss */
/* Box sizing and border box model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margins */
* {
  margin: 0;
}

/* Set a sensible default line-height and text rendering */
html {
  -webkit-text-size-adjust: 100%;
  font-size: 100%;
  line-height: 1.5;
  font-family: sans-serif; /* Replace with tokens later */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* Remove list styles for ul, ol with a role of list */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Remove default padding on lists */
ul,
ol {
  padding: 0;
}

/* Reset links */
a {
  text-decoration: none;
  color: inherit;
}

/* Images and media */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Remove built-in form typography styles */
input,
button,
textarea,
select {
  font: inherit;
}

/* Reset button styles */
button {
  border: none;
  background: none;
  color: inherit;
  padding: 0;
  cursor: pointer;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Accessible hidden text utility */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

[data-speed] {
  will-change: transform;
}

/** BASE TYPOGRAPHY STYLES **/
/** HOME PAGE TYPOGRAPHY **/
/** COMMUNITIES PAGE TYPOGRAPHY **/
/** COMMUNITY PAGE TYPOGRAPHY **/
/** SHARED TYPOGRAPHY **/
@font-face {
  font-family: "Montserrat-SemiBold";
  src: url("../../fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat-Bold";
  src: url("../../fonts/Montserrat-Bold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat-Regular";
  src: url("../../fonts/Montserrat-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat-Medium";
  src: url("../../fonts/Montserrat-Medium.woff2") format("woff2");
  font-display: swap;
}
.m-0 {
  margin: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.py-0 {
  padding-block: 0 !important;
}

.m-1 {
  margin: 4px !important;
}

.p-1 {
  padding: 4px !important;
}

.mt-1 {
  margin-top: 4px !important;
}

.mb-1 {
  margin-bottom: 4px !important;
}

.py-1 {
  padding-block: 4px !important;
}

.m-2 {
  margin: 8px !important;
}

.p-2 {
  padding: 8px !important;
}

.mt-2 {
  margin-top: 8px !important;
}

.mb-2 {
  margin-bottom: 8px !important;
}

.py-2 {
  padding-block: 8px !important;
}

.m-3 {
  margin: 12px !important;
}

.p-3 {
  padding: 12px !important;
}

.mt-3 {
  margin-top: 12px !important;
}

.mb-3 {
  margin-bottom: 12px !important;
}

.py-3 {
  padding-block: 12px !important;
}

.m-4 {
  margin: 16px !important;
}

.p-4 {
  padding: 16px !important;
}

.mt-4 {
  margin-top: 16px !important;
}

.mb-4 {
  margin-bottom: 16px !important;
}

.py-4 {
  padding-block: 16px !important;
}

.m-6 {
  margin: 24px !important;
}

.p-6 {
  padding: 24px !important;
}

.mt-6 {
  margin-top: 24px !important;
}

.mb-6 {
  margin-bottom: 24px !important;
}

.py-6 {
  padding-block: 24px !important;
}

.m-8 {
  margin: 32px !important;
}

.p-8 {
  padding: 32px !important;
}

.mt-8 {
  margin-top: 32px !important;
}

.mb-8 {
  margin-bottom: 32px !important;
}

.py-8 {
  padding-block: 32px !important;
}

.show {
  display: block !important;
}

.hide {
  display: none !important;
}

@media (min-width: 320px) {
  .section {
    padding-block: 40px;
  }
}
@media (min-width: 393px) {
  .section {
    padding-block: 48px;
  }
}
@media (min-width: 744px) {
  .section {
    padding-block: 56px;
  }
}
@media (min-width: 834px) {
  .section {
    padding-block: 64px;
  }
}
@media (min-width: 1024px) {
  .section {
    padding-block: 72px;
  }
}
@media (min-width: 1280px) {
  .section {
    padding-block: 80px;
  }
}
@media (min-width: 1728px) {
  .section {
    padding-block: 96px;
  }
}
@media (min-width: 2048px) {
  .section {
    padding-block: 104px;
  }
}
.section .layout-container {
  margin-inline: auto;
  z-index: 1;
}
@media (min-width: 320px) {
  .section .layout-container {
    max-width: 302px;
    padding-inline: 12px;
  }
}
@media (min-width: 375px) {
  .section .layout-container {
    max-width: 361px;
    padding-inline: 16px;
  }
}
@media (min-width: 393px) {
  .section .layout-container {
    max-width: 393px;
    padding-inline: 16px;
  }
}
@media (min-width: 440px) {
  .section .layout-container {
    max-width: 400px;
    padding-inline: 20px;
  }
}
@media (min-width: 744px) {
  .section .layout-container {
    max-width: 696px;
    padding-inline: 24px;
  }
}
@media (min-width: 834px) {
  .section .layout-container {
    max-width: 770px;
    padding-inline: 32px;
  }
}
@media (min-width: 1024px) {
  .section .layout-container {
    max-width: 1075px;
    padding-inline: 32px;
  }
}
@media (min-width: 1280px) {
  .section .layout-container {
    max-width: 1184px;
    padding-inline: 48px;
  }
}
@media (min-width: 1512px) {
  .section .layout-container {
    max-width: 1384px;
    padding-inline: 64px;
  }
}
@media (min-width: 1728px) {
  .section .layout-container {
    max-width: 1568px;
    padding-inline: 80px;
  }
}
@media (min-width: 2048px) {
  .section .layout-container {
    max-width: 1568px;
    padding-inline: 96px;
  }
}
.section .layout-container--hero {
  margin: auto;
  width: 90%;
  max-width: 3400px;
}
.section .section__title {
  font-family: "Montserrat-Medium", sans-serif;
  font-size: 1.313rem;
  line-height: 120%;
  font-weight: 700;
  text-transform: uppercase;
}
.section .section__body {
  font-family: "Montserrat-Medium", sans-serif;
  font-size: 1.313rem;
  line-height: 120%;
  font-weight: 400;
}
.section .section__cta {
  font-family: "Montserrat-Medium", sans-serif;
  font-size: 1rem;
  line-height: 120%;
  font-weight: 700;
  text-transform: uppercase;
}
.section--split-bg {
  background: linear-gradient(to top, #e3dcd7 55%, #ffffff 45%);
}
@media (min-width: 1024px) {
  .section--split-bg {
    background: linear-gradient(to right, #e3dcd7 57%, #ffffff 43%);
  }
}

html.no-scroll,
body.no-scroll {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
}

.site-nav {
  position: relative;
}
.site-nav__nav .site-nav__menu--desktop {
  display: none;
}
.site-nav__nav .site-nav__menu--desktop .site-nav__nav-item {
  cursor: pointer;
}
.site-nav__nav .site-nav__menu--desktop .has-dropdown {
  position: relative;
}
.site-nav__nav .site-nav__menu--desktop .has-dropdown .site-nav__nav-link--desktop-dropdown {
  position: relative;
  background: none;
  border: none;
  color: #fcfcfc;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Montserrat-SemiBold";
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
}
.site-nav__nav .site-nav__menu--desktop .has-dropdown .site-nav__nav-link--desktop-dropdown .chevron {
  position: absolute;
  top: -50%;
  right: -1.25rem;
  font-size: 1.5rem;
  transition: transform 200ms ease;
}
.site-nav__nav .site-nav__menu--desktop .has-dropdown .site-nav__nav-link--desktop-dropdown[aria-expanded=true] .chevron {
  position: absolute;
  top: 30%;
  right: -1.25rem;
  transform: rotate(180deg);
}
.site-nav__nav .site-nav__menu--desktop .has-dropdown .site-nav__submenu-heading--desktop {
  color: #fcfcfc;
  opacity: 1;
  padding-left: 0.75rem;
  padding-block: 0.5rem;
  grid-column: 1/-1;
}
.site-nav__nav .site-nav__menu--desktop .has-dropdown .site-nav__submenu--desktop {
  position: absolute;
  top: 2rem;
  right: -170px;
  z-index: 100;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 300px 300px;
  gap: 1.5rem;
  max-height: 475px;
  width: 90vw;
  max-width: 700px;
  padding: 2rem 1rem 2.5rem 1rem;
  list-style-type: none;
  background: rgba(6, 32, 56, 0.85);
  opacity: 0;
  border-radius: 0.25rem;
  box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 250ms ease, transform 250ms ease;
}
.site-nav__nav .site-nav__menu--desktop .has-dropdown .site-nav__submenu--desktop.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.site-nav__nav .site-nav__menu--desktop .has-dropdown .site-nav__submenu--desktop .site-nav__submenu-link--desktop {
  display: block;
  color: #fcfcfc;
  text-decoration: none;
  opacity: 0.9;
  font-family: "Montserrat-Regular";
  font-size: 1rem;
  line-height: 120%;
  text-transform: none;
  padding-left: 2rem;
}
.site-nav__nav .site-nav__menu--desktop .has-dropdown .site-nav__submenu--desktop .site-nav__submenu-link--desktop:hover {
  opacity: 1;
}
.site-nav__nav .site-nav__menu--desktop .has-dropdown .site-nav__submenu--desktop #desktop-dropdown-nav-view-all-link {
  grid-column: 1/-1;
  order: 999;
  padding-top: 0.5rem;
}
.site-nav__nav .site-nav__menu--desktop .has-dropdown .site-nav__submenu--desktop #desktop-dropdown-nav-view-all-link a {
  font-family: "Montserrat-SemiBold";
  font-size: 0.75rem;
  line-height: 120%;
  text-transform: uppercase;
}
@media (max-width: 744px) {
  .site-nav__nav .site-nav__menu--desktop .has-dropdown .site-nav__submenu--desktop #desktop-dropdown-nav-view-all-link a {
    font-family: "Montserrat-SemiBold";
  }
}
.site-nav__nav .site-nav__menu--desktop .has-dropdown .site-nav__submenu--desktop #desktop-dropdown-nav-view-all-link::before {
  content: "";
  display: block;
  width: 90%;
  height: 2px;
  background: rgba(248, 249, 251, 0.1);
  margin-bottom: 1rem;
  margin-left: 2rem;
}
@media (min-width: 834px) {
  .site-nav__nav .site-nav__menu--desktop {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    list-style: none;
  }
  .site-nav__nav .site-nav__menu--desktop .site-nav__nav-link {
    color: #fcfcfc;
    line-height: 1;
    font-family: "Montserrat-SemiBold";
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
  }
  .site-nav__nav .site-nav__menu {
    display: none;
  }
  .site-nav__nav .site-nav__toggle {
    display: none;
  }
}
.site-nav .site-nav__open,
.site-nav .site-nav__close {
  display: block;
}
@media (min-width: 834px) {
  .site-nav .site-nav__open,
  .site-nav .site-nav__close {
    display: none;
  }
}
.site-nav .site-nav__close {
  display: none;
}
.site-nav .site-nav__close.is-visible {
  display: block;
}
.site-nav .site-nav__open.is-hidden {
  display: none;
}
.site-nav__overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: #062038;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2rem;
  opacity: 0;
  transform: translateY(-2rem);
  pointer-events: none;
  transition: opacity 300ms ease, transform 300ms ease;
}
.site-nav__overlay.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (min-width: 834px) {
  .site-nav__overlay {
    display: none !important;
  }
}
.site-nav__menu {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.site-nav__nav-item {
  color: #fcfcfc;
  font-family: "Montserrat-SemiBold";
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
}
.site-nav__nav-item.has-dropdown {
  width: 100%;
}
.site-nav__nav-item.has-dropdown .site-nav__nav-link--dropdown {
  display: flex;
  justify-content: flex-start;
  gap: 0.5rem;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  color: #fcfcfc;
  padding: 8px 4px;
  cursor: pointer;
  text-align: left;
  font-family: "Montserrat-SemiBold";
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
}
.site-nav__nav-item.has-dropdown .site-nav__nav-link--dropdown .chevron {
  font-size: 0.875rem;
  transition: transform 200ms ease;
}
.site-nav__nav-item.has-dropdown .site-nav__nav-link--dropdown[aria-expanded=true] .chevron {
  transform: rotate(180deg);
}
.site-nav__submenu {
  position: relative;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 300ms ease, opacity 300ms ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-left: 1px solid rgba(248, 249, 251, 0.1);
  padding-right: 2rem;
}
.site-nav__submenu li {
  width: 100%;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.site-nav__submenu .site-nav__submenu-link {
  color: #fcfcfc;
  text-decoration: none;
  opacity: 0.85;
  font-family: "Montserrat-Regular";
  font-size: 1rem;
  line-height: 120%;
  text-transform: none;
  padding-left: 2rem;
}
.site-nav__submenu .site-nav__submenu-link:hover {
  opacity: 1;
}
.site-nav__submenu .site-nav__submenu-link--view-all {
  border-bottom: 1px solid rgba(248, 249, 251, 0.1);
  width: 100%;
  padding-bottom: 1rem;
}
.site-nav__submenu .site-nav__submenu-link--view-all a {
  font-family: "Montserrat-SemiBold";
  font-size: 0.75rem;
  line-height: 120%;
  text-transform: uppercase;
}
@media (max-width: 744px) {
  .site-nav__submenu .site-nav__submenu-link--view-all a {
    font-family: "Montserrat-SemiBold";
  }
}
.site-nav__submenu.is-visible {
  max-height: 35dvh;
  opacity: 1;
  overflow-y: auto;
  padding-top: 1rem;
}
.site-nav__tagline-logo {
  margin-top: 2rem;
  width: 70vw;
  height: auto;
  position: absolute;
  bottom: 9rem;
}
.site-nav__address {
  position: absolute;
  bottom: 4rem;
}
.site-nav__address address {
  font-family: "Montserrat-Medium";
  font-size: 1rem;
  line-height: 120%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-style: normal;
  font-style: normal;
  color: #fcfcfc;
  margin-top: 1rem;
}
@media (max-width: 744px) {
  .site-nav__address address {
    font-size: 1rem;
  }
}
.site-nav__jim-bridger {
  opacity: 0.1;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100vw;
  width: auto;
  border-radius: 25%;
  pointer-events: none;
}

.home-hero {
  position: relative;
  height: 98svh;
  /* use fixed height via JS override */
  isolation: isolate;
  overflow: hidden;
  padding-top: 2.5rem;
}
@media (min-width: 744px) {
  .home-hero {
    height: var(--fixed-vh);
  }
}
.home-hero .grid {
  display: grid;
  grid-template-rows: auto auto;
  width: 100%;
  row-gap: 5rem;
}
@media (min-width: 320px) {
  .home-hero .grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 8px;
  }
}
@media (min-width: 375px) {
  .home-hero .grid {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 12px;
  }
}
@media (min-width: 393px) {
  .home-hero .grid {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 12px;
  }
}
@media (min-width: 440px) {
  .home-hero .grid {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 12px;
  }
}
@media (min-width: 744px) {
  .home-hero .grid {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 16px;
  }
}
@media (min-width: 834px) {
  .home-hero .grid {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 16px;
  }
}
@media (min-width: 1024px) {
  .home-hero .grid {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
  }
}
@media (min-width: 1280px) {
  .home-hero .grid {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
  }
}
@media (min-width: 1512px) {
  .home-hero .grid {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
  }
}
@media (min-width: 1728px) {
  .home-hero .grid {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
  }
}
@media (min-width: 2048px) {
  .home-hero .grid {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
  }
}
.home-hero__bg {
  position: absolute;
  inset: 0;
  margin: 0;
  pointer-events: none;
  will-change: transform;
}
.home-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 32, 56, 0.5);
}
.home-hero__topbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-row: 1/2;
  grid-column: 1/-1;
}
.home-hero__topbar .home-hero__logo-img {
  display: block;
  height: auto;
  width: 35px;
}
@media (min-width: 834px) {
  .home-hero__topbar .site-nav__nav .site-nav__menu--desktop button.site-nav__nav-link {
    transition: all 0.25s ease;
  }
  .home-hero__topbar .site-nav__nav .site-nav__menu--desktop button.site-nav__nav-link:hover {
    color: #f8f9fb;
    opacity: 0.75;
  }
  .home-hero__topbar .site-nav__nav .site-nav__menu--desktop a.site-nav__nav-link {
    position: relative;
    display: inline-block;
    text-decoration: none;
    overflow: hidden;
    padding-bottom: 2px;
  }
  .home-hero__topbar .site-nav__nav .site-nav__menu--desktop a.site-nav__nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #fcfcfc;
    transition: width 0.25s ease;
  }
}
@media (min-width: 834px) and (min-width: 744px) {
  .home-hero__topbar .site-nav__nav .site-nav__menu--desktop a.site-nav__nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #fcfcfc;
    transition: width 0.25s ease;
  }
  .home-hero__topbar .site-nav__nav .site-nav__menu--desktop a.site-nav__nav-link:hover::after, .home-hero__topbar .site-nav__nav .site-nav__menu--desktop a.site-nav__nav-link:focus-visible::after, .home-hero__topbar .site-nav__nav .site-nav__menu--desktop a.site-nav__nav-link.is-clicked::after {
    animation: underline-flash 0.8s ease forwards;
  }
}
.home-hero__content {
  position: relative;
  gap: 1rem;
  margin-top: 5vw;
  display: flex;
  flex-direction: column;
  opacity: 1;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  align-content: start;
  justify-items: start;
  grid-row: 2/-1;
  grid-column: 1/-1;
}
.home-hero__content.fade-out {
  opacity: 0;
}
.home-hero__content.fade-in {
  opacity: 1;
}
@media (min-width: 1024px) {
  .home-hero__content {
    grid-column: 1/-1;
    margin-left: 5rem;
    margin-top: 10vh;
  }
}
.home-hero__content .home-hero__eyebrow {
  color: #fcfcfc;
  font-size: 1.313rem;
  line-height: 100%;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Montserrat-Regular";
}
@media (max-width: 744px) {
  .home-hero__content .home-hero__eyebrow {
    font-size: 1rem;
  }
}
.home-hero__content .home-hero__title {
  color: #fcfcfc;
  margin: 0;
  max-width: 963px;
  font-size: 8.594rem;
  line-height: 100%;
  font-weight: 400;
  font-family: "Montserrat-Regular";
}
@media (max-width: 2048px) {
  .home-hero__content .home-hero__title {
    font-size: 5rem;
  }
}
@media (max-width: 744px) {
  .home-hero__content .home-hero__title {
    font-size: 3.75rem;
  }
}
@media (max-width: 440px) {
  .home-hero__content .home-hero__title {
    font-size: 2.938rem;
  }
}
.home-hero__content .home-hero__subtitle {
  color: #fcfcfc;
  margin-top: 1rem;
  font-size: 1.688rem;
  line-height: 120%;
  font-family: "Montserrat-Regular";
  max-width: 663px;
}
@media (max-width: 1280px) {
  .home-hero__content .home-hero__subtitle {
    font-size: 1.313rem;
  }
}
@media (max-width: 744px) {
  .home-hero__content .home-hero__subtitle {
    font-size: 1rem;
  }
}
@media (max-width: 1024px) {
  .home-hero__content .home-hero__subtitle {
    font-size: 1.313rem;
  }
}
.home-hero__content .home-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.home-hero__scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 120px;
  background: linear-gradient(to bottom, rgba(6, 32, 56, 0.15) 0%, rgb(6, 32, 56) 100%);
}
.home-hero__scroll-cta {
  margin: auto;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  height: 100%;
  color: #fcfcfc;
}
.home-hero__scroll-label {
  font-family: "Montserrat-SemiBold";
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  display: inline-block;
  text-decoration: none;
  overflow: hidden;
  padding-bottom: 2px;
}
@media (max-width: 744px) {
  .home-hero__scroll-label {
    font-size: 0.75rem;
  }
}
.home-hero__scroll-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #fcfcfc;
  transition: width 0.25s ease;
}
@media (min-width: 744px) {
  .home-hero__scroll-label::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #fcfcfc;
    transition: width 0.25s ease;
  }
  .home-hero__scroll-label:hover::after, .home-hero__scroll-label:focus-visible::after, .home-hero__scroll-label.is-clicked::after {
    animation: underline-flash 0.8s ease forwards;
  }
}
.home-hero__scroll-icon {
  font-size: 1.125rem;
  line-height: 1;
}

.section__about-us {
  padding-block: 400px;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  background-color: #062038;
}
.section__about-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../../img/home/about-us-bg.png");
  background-size: 250% auto;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.0175;
}
@media (min-width: 744px) {
  .section__about-us::before {
    background-size: 100% auto;
  }
}
.section__about-us .layout-container {
  margin-inline: auto;
  z-index: 1;
}
@media (min-width: 320px) {
  .section__about-us .layout-container {
    margin-block: calc(40px * 0.9);
  }
}
@media (min-width: 375px) {
  .section__about-us .layout-container {
    margin-block: calc(48px * 0.9);
  }
}
@media (min-width: 393px) {
  .section__about-us .layout-container {
    margin-block: calc(56px * 0.9);
  }
}
@media (min-width: 440px) {
  .section__about-us .layout-container {
    margin-block: calc(64px * 0.9);
  }
}
@media (min-width: 744px) {
  .section__about-us .layout-container {
    margin-block: calc(72px * 0.9);
  }
}
@media (min-width: 834px) {
  .section__about-us .layout-container {
    margin-block: calc(88px * 0.9);
  }
}
@media (min-width: 1024px) {
  .section__about-us .layout-container {
    margin-block: calc(96px * 0.9);
  }
}
@media (min-width: 1280px) {
  .section__about-us .layout-container {
    margin-block: calc(104px * 0.9);
  }
}
@media (min-width: 1512px) {
  .section__about-us .layout-container {
    margin-block: calc(120px * 0.9);
  }
}
@media (min-width: 1728px) {
  .section__about-us .layout-container {
    margin-block: calc(144px * 0.9);
  }
}
@media (min-width: 2048px) {
  .section__about-us .layout-container {
    margin-block: calc(160px * 0.9);
  }
}
@media (min-width: 320px) {
  .section__about-us .layout-container {
    max-width: 302px;
    padding-inline: 12px;
  }
}
@media (min-width: 375px) {
  .section__about-us .layout-container {
    max-width: 361px;
    padding-inline: 16px;
  }
}
@media (min-width: 393px) {
  .section__about-us .layout-container {
    max-width: 393px;
    padding-inline: 16px;
  }
}
@media (min-width: 440px) {
  .section__about-us .layout-container {
    max-width: 400px;
    padding-inline: 20px;
  }
}
@media (min-width: 744px) {
  .section__about-us .layout-container {
    max-width: 696px;
    padding-inline: 24px;
  }
}
@media (min-width: 834px) {
  .section__about-us .layout-container {
    max-width: 770px;
    padding-inline: 32px;
  }
}
@media (min-width: 1024px) {
  .section__about-us .layout-container {
    max-width: 1075px;
    padding-inline: 32px;
  }
}
@media (min-width: 1280px) {
  .section__about-us .layout-container {
    max-width: 1184px;
    padding-inline: 48px;
  }
}
@media (min-width: 1512px) {
  .section__about-us .layout-container {
    max-width: 1384px;
    padding-inline: 64px;
  }
}
@media (min-width: 1728px) {
  .section__about-us .layout-container {
    max-width: 1568px;
    padding-inline: 80px;
  }
}
@media (min-width: 2048px) {
  .section__about-us .layout-container {
    max-width: 1568px;
    padding-inline: 96px;
  }
}
.section__about-us .section__content {
  margin: auto 0;
  margin-right: 40px;
}
@media (min-width: 834px) {
  .section__about-us .section__content {
    margin-right: 120px;
  }
}
.section__about-us .section__title {
  font-family: "Montserrat-SemiBold";
  font-size: 1.313rem;
  line-height: 120%;
  font-weight: 500;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-smooth: always;
  color: #f8f9fb;
  margin-bottom: 32px;
}
@media (max-width: 1512px) {
  .section__about-us .section__title {
    font-size: 1rem;
  }
}
.section__about-us .section__body {
  font-size: 1.313rem;
  line-height: 120%;
  font-family: "Montserrat-Regular";
  color: #f8f9fb;
  max-width: 456px;
  margin-bottom: 3rem;
}
@media (max-width: 1512px) {
  .section__about-us .section__body {
    font-size: 1rem;
  }
}
.section__about-us .section__cta {
  position: relative;
  font-family: "Montserrat-SemiBold";
  font-weight: 500;
  font-size: 1rem;
  line-height: 120%;
  color: #f8f9fb;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  text-decoration: none;
  overflow: hidden;
  padding-bottom: 2px;
}
@media (max-width: 1512px) {
  .section__about-us .section__cta {
    font-size: 0.75rem;
  }
}
.section__about-us .section__cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #f8f9fb;
  transition: width 0.25s ease;
}
@media (min-width: 744px) {
  .section__about-us .section__cta::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #f8f9fb;
    transition: width 0.25s ease;
  }
  .section__about-us .section__cta:hover::after, .section__about-us .section__cta:focus-visible::after, .section__about-us .section__cta.is-clicked::after {
    animation: underline-flash 0.8s ease forwards;
  }
}

.section__what-we-build {
  background-color: #f8f9fb;
}
@media (min-width: 320px) {
  .section__what-we-build {
    padding-block: 40px;
  }
}
@media (min-width: 393px) {
  .section__what-we-build {
    padding-block: 48px;
  }
}
@media (min-width: 744px) {
  .section__what-we-build {
    padding-block: 56px;
  }
}
@media (min-width: 834px) {
  .section__what-we-build {
    padding-block: 64px;
  }
}
@media (min-width: 1024px) {
  .section__what-we-build {
    padding-block: 72px;
  }
}
@media (min-width: 1280px) {
  .section__what-we-build {
    padding-block: 80px;
  }
}
@media (min-width: 1728px) {
  .section__what-we-build {
    padding-block: 96px;
  }
}
@media (min-width: 2048px) {
  .section__what-we-build {
    padding-block: 104px;
  }
}
.section__what-we-build .layout-container {
  margin-inline: auto;
  grid-template-rows: 165px 1fr;
  row-gap: 100px;
  z-index: 1;
}
@media (min-width: 320px) {
  .section__what-we-build .layout-container {
    margin-block: calc(40px * 0.9);
  }
}
@media (min-width: 375px) {
  .section__what-we-build .layout-container {
    margin-block: calc(48px * 0.9);
  }
}
@media (min-width: 393px) {
  .section__what-we-build .layout-container {
    margin-block: calc(56px * 0.9);
  }
}
@media (min-width: 440px) {
  .section__what-we-build .layout-container {
    margin-block: calc(64px * 0.9);
  }
}
@media (min-width: 744px) {
  .section__what-we-build .layout-container {
    margin-block: calc(72px * 0.9);
  }
}
@media (min-width: 834px) {
  .section__what-we-build .layout-container {
    margin-block: calc(88px * 0.9);
  }
}
@media (min-width: 1024px) {
  .section__what-we-build .layout-container {
    margin-block: calc(96px * 0.9);
  }
}
@media (min-width: 1280px) {
  .section__what-we-build .layout-container {
    margin-block: calc(104px * 0.9);
  }
}
@media (min-width: 1512px) {
  .section__what-we-build .layout-container {
    margin-block: calc(120px * 0.9);
  }
}
@media (min-width: 1728px) {
  .section__what-we-build .layout-container {
    margin-block: calc(144px * 0.9);
  }
}
@media (min-width: 2048px) {
  .section__what-we-build .layout-container {
    margin-block: calc(160px * 0.9);
  }
}
@media (min-width: 320px) {
  .section__what-we-build .layout-container {
    max-width: 302px;
    padding-inline: 12px;
  }
}
@media (min-width: 375px) {
  .section__what-we-build .layout-container {
    max-width: 361px;
    padding-inline: 16px;
  }
}
@media (min-width: 393px) {
  .section__what-we-build .layout-container {
    max-width: 393px;
    padding-inline: 16px;
  }
}
@media (min-width: 440px) {
  .section__what-we-build .layout-container {
    max-width: 400px;
    padding-inline: 20px;
  }
}
@media (min-width: 744px) {
  .section__what-we-build .layout-container {
    max-width: 696px;
    padding-inline: 24px;
  }
}
@media (min-width: 834px) {
  .section__what-we-build .layout-container {
    max-width: 770px;
    padding-inline: 32px;
  }
}
@media (min-width: 1024px) {
  .section__what-we-build .layout-container {
    max-width: 1075px;
    padding-inline: 32px;
  }
}
@media (min-width: 1280px) {
  .section__what-we-build .layout-container {
    max-width: 1184px;
    padding-inline: 48px;
  }
}
@media (min-width: 1512px) {
  .section__what-we-build .layout-container {
    max-width: 1384px;
    padding-inline: 64px;
  }
}
@media (min-width: 1728px) {
  .section__what-we-build .layout-container {
    max-width: 1568px;
    padding-inline: 80px;
  }
}
@media (min-width: 2048px) {
  .section__what-we-build .layout-container {
    max-width: 1568px;
    padding-inline: 96px;
  }
}
.section__what-we-build .grid {
  display: grid;
  row-gap: 48px;
  grid-template-rows: auto auto 1fr;
}
@media (min-width: 320px) {
  .section__what-we-build .grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 8px;
  }
}
@media (min-width: 375px) {
  .section__what-we-build .grid {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 12px;
  }
}
@media (min-width: 393px) {
  .section__what-we-build .grid {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 12px;
  }
}
@media (min-width: 440px) {
  .section__what-we-build .grid {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 12px;
  }
}
@media (min-width: 744px) {
  .section__what-we-build .grid {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 16px;
  }
}
@media (min-width: 834px) {
  .section__what-we-build .grid {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 16px;
  }
}
@media (min-width: 1024px) {
  .section__what-we-build .grid {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
  }
}
@media (min-width: 1280px) {
  .section__what-we-build .grid {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
  }
}
@media (min-width: 1512px) {
  .section__what-we-build .grid {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
  }
}
@media (min-width: 1728px) {
  .section__what-we-build .grid {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
  }
}
@media (min-width: 2048px) {
  .section__what-we-build .grid {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
  }
}
@media (min-width: 1024px) {
  .section__what-we-build .grid {
    grid-template-rows: 1fr auto auto;
    row-gap: 2rem;
  }
}
.section__what-we-build .section__title,
.section__what-we-build .section__content {
  grid-column: 1/-1;
}
.section__what-we-build .section__title {
  grid-row: 1/2;
  font-family: "Montserrat-SemiBold";
  font-size: 1.313rem;
  line-height: 120%;
  font-weight: 500;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-smooth: always;
  color: #062038;
}
@media (max-width: 1512px) {
  .section__what-we-build .section__title {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .section__what-we-build .section__title {
    grid-column: 2/6;
  }
}
.section__what-we-build .section__body {
  font-size: 1.313rem;
  line-height: 120%;
  font-family: "Montserrat-Regular";
  color: #062038;
  padding-bottom: 2rem;
}
@media (max-width: 1512px) {
  .section__what-we-build .section__body {
    font-size: 1rem;
  }
}
.section__what-we-build .section__cta {
  font-family: "Montserrat-SemiBold";
  font-weight: 500;
  font-size: 1rem;
  line-height: 120%;
  color: #062038;
  position: relative;
  display: inline-block;
  text-decoration: none;
  overflow: hidden;
  padding-bottom: 2px;
}
@media (max-width: 1512px) {
  .section__what-we-build .section__cta {
    font-size: 0.75rem;
  }
}
.section__what-we-build .section__cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #062038;
  transition: width 0.25s ease;
}
@media (min-width: 744px) {
  .section__what-we-build .section__cta::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #062038;
    transition: width 0.25s ease;
  }
  .section__what-we-build .section__cta:hover::after, .section__what-we-build .section__cta:focus-visible::after, .section__what-we-build .section__cta.is-clicked::after {
    animation: underline-flash 0.8s ease forwards;
  }
}
.section__what-we-build .section__content {
  grid-row: 2/3;
}
@media (min-width: 1024px) {
  .section__what-we-build .section__content {
    grid-column: 2/10;
  }
}
.section__what-we-build .project-gallery {
  grid-column: 1/-1;
  display: flex;
  flex-direction: column-reverse;
  position: relative;
}
@media (min-width: 744px) {
  .section__what-we-build .project-gallery {
    margin-top: 1rem;
  }
}
@media (min-width: 1024px) {
  .section__what-we-build .project-gallery {
    grid-column: 2/-2;
  }
}
@media (min-width: 1512px) {
  .section__what-we-build .project-gallery {
    margin-top: 2rem;
  }
}
.section__what-we-build .project-gallery__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.section__what-we-build .project-gallery__nav-button--prev, .section__what-we-build .project-gallery__nav-button--next {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  color: #fcfcfc;
  background-color: #e3dcd7;
  font-family: monospace;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.section__what-we-build .project-gallery__nav-button--prev:hover, .section__what-we-build .project-gallery__nav-button--next:hover {
  background-color: #d9cfc8;
  color: #fcfcfc;
}
@media (hover: none) {
  .section__what-we-build .project-gallery__nav-button--prev:hover, .section__what-we-build .project-gallery__nav-button--next:hover {
    color: #fcfcfc;
    background-color: #e3dcd7;
  }
}
.section__what-we-build .project-gallery__nav-button--prev:disabled, .section__what-we-build .project-gallery__nav-button--next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
@media (min-width: 744px) {
  .section__what-we-build .project-gallery__nav {
    display: none;
  }
}
.section__what-we-build .project-gallery__nav-button {
  font-size: 1rem;
  padding: 0.5rem 0.5rem;
  cursor: pointer;
  font-family: monospace; /* or Arial Unicode MS, etc. */
}
.section__what-we-build .project-gallery__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.section__what-we-build .project-gallery__viewport::-webkit-scrollbar {
  height: 0;
}
.section__what-we-build .project-gallery__track {
  display: flex;
  gap: 1rem;
  scroll-behavior: smooth;
}
@media (min-width: 744px) {
  .section__what-we-build .project-gallery__track {
    height: 175px;
  }
}
.section__what-we-build .project-gallery__track .project-gallery__card {
  position: relative;
  z-index: 1;
  height: 200px;
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: block;
  text-decoration: none;
  overflow-y: hidden;
  transition: all 0.3s ease cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(30%);
  overflow: hidden;
  /* Apply hover effects only if the device supports hover */
}
.section__what-we-build .project-gallery__track .project-gallery__card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 100;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
  background: rgba(6, 32, 56, 0.5);
  color: white;
  box-sizing: border-box;
  padding-left: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 744px) {
  .section__what-we-build .project-gallery__track .project-gallery__card-overlay {
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
}
.section__what-we-build .project-gallery__track .project-gallery__card img {
  border-radius: 0.25rem;
}
@media (min-width: 744px) {
  .section__what-we-build .project-gallery__track .project-gallery__card img {
    transition: transform 0.3s ease-in-out;
  }
}
@media (hover: hover) and (pointer: fine) {
  .section__what-we-build .project-gallery__track .project-gallery__card:hover {
    filter: grayscale(20%);
  }
  .section__what-we-build .project-gallery__track .project-gallery__card:hover img {
    transform: scale(1.02);
  }
  .section__what-we-build .project-gallery__track .project-gallery__card:hover .project-gallery__card-overlay {
    z-index: 2;
    transform: translateY(0);
    opacity: 1;
  }
}
.section__what-we-build .project-gallery__track .project-gallery__card-title {
  font-size: 1rem;
  line-height: 100%;
  font-weight: 400;
  font-family: "Montserrat-SemiBold";
  color: #f8f9fb;
  margin-bottom: 0.5rem;
}
@media (max-width: 744px) {
  .section__what-we-build .project-gallery__track .project-gallery__card-title {
    font-size: 1rem;
  }
}
.section__what-we-build .project-gallery__track .project-gallery__card-location {
  font-size: 0.75rem;
  line-height: 100%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: "Montserrat-Regular";
  color: #f8f9fb;
  margin-bottom: 0.75rem;
}
@media (max-width: 744px) {
  .section__what-we-build .project-gallery__track .project-gallery__card-location {
    font-size: 0.75rem;
  }
}
.section__what-we-build .project-gallery__track .project-gallery__card-cta {
  display: block;
  font-size: 0.75rem;
  line-height: 120%;
  text-transform: uppercase;
  font-family: "Montserrat-Bold";
  color: #f8f9fb;
}
@media (min-width: 744px) {
  .section__what-we-build .project-gallery__track .project-gallery__card {
    flex: 0 0 calc(50% - 0.5rem);
  }
}
@media (min-width: 1024px) {
  .section__what-we-build .project-gallery__track {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
    height: 175px;
  }
  .section__what-we-build .project-gallery__track .project-gallery__card {
    flex: unset;
    scroll-snap-align: unset;
    height: 100%;
  }
  .section__what-we-build .project-gallery__track .project-gallery__card--left {
    grid-column: 1/7;
  }
  .section__what-we-build .project-gallery__track .project-gallery__card--right {
    grid-column: 7/-1;
  }
  .section__what-we-build .project-gallery__track .project-gallery__media {
    height: 100%;
    max-height: 330px;
  }
}
@media (min-width: 1024px) and (min-width: 1512px) {
  .section__what-we-build .project-gallery__track .project-gallery__media {
    max-height: 400px;
  }
}
@media (min-width: 1024px) {
  .section__what-we-build .project-gallery__track .project-gallery__media img {
    object-fit: cover;
  }
}
@media (min-width: 1512px) {
  .section__what-we-build .project-gallery__track {
    height: 240px;
  }
}
.section__what-we-build .project-gallery::after {
  color: #062038;
  content: "TAP CARD TO VIEW PROPERTY";
  position: absolute;
  bottom: 2.5rem;
  text-align: left;
  left: 0;
  width: 100%;
  font-family: "Montserrat-Regular";
  letter-spacing: 0.05em;
  font-size: 0.625rem;
  box-sizing: border-box;
  pointer-events: none; /* don’t block clicks on the image */
}
@media (min-width: 744px) {
  .section__what-we-build .project-gallery::after {
    content: "SELECT A PROPERTY TO LEARN MORE";
    bottom: -1.65rem;
    font-size: 0.75rem;
  }
}

.section__meet-the-team {
  position: relative;
}
@media (min-width: 320px) {
  .section__meet-the-team {
    padding-block: 40px;
  }
}
@media (min-width: 393px) {
  .section__meet-the-team {
    padding-block: 48px;
  }
}
@media (min-width: 744px) {
  .section__meet-the-team {
    padding-block: 56px;
  }
}
@media (min-width: 834px) {
  .section__meet-the-team {
    padding-block: 64px;
  }
}
@media (min-width: 1024px) {
  .section__meet-the-team {
    padding-block: 72px;
  }
}
@media (min-width: 1280px) {
  .section__meet-the-team {
    padding-block: 80px;
  }
}
@media (min-width: 1728px) {
  .section__meet-the-team {
    padding-block: 96px;
  }
}
@media (min-width: 2048px) {
  .section__meet-the-team {
    padding-block: 104px;
  }
}
@media (min-width: 320px) {
  .section__meet-the-team .layout-container {
    margin-block: calc(40px * 1.25);
  }
}
@media (min-width: 375px) {
  .section__meet-the-team .layout-container {
    margin-block: calc(48px * 1.25);
  }
}
@media (min-width: 393px) {
  .section__meet-the-team .layout-container {
    margin-block: calc(56px * 1.25);
  }
}
@media (min-width: 440px) {
  .section__meet-the-team .layout-container {
    margin-block: calc(64px * 1.25);
  }
}
@media (min-width: 744px) {
  .section__meet-the-team .layout-container {
    margin-block: calc(72px * 1.25);
  }
}
@media (min-width: 834px) {
  .section__meet-the-team .layout-container {
    margin-block: calc(88px * 1.25);
  }
}
@media (min-width: 1024px) {
  .section__meet-the-team .layout-container {
    margin-block: calc(96px * 1.25);
  }
}
@media (min-width: 1280px) {
  .section__meet-the-team .layout-container {
    margin-block: calc(104px * 1.25);
  }
}
@media (min-width: 1512px) {
  .section__meet-the-team .layout-container {
    margin-block: calc(120px * 1.25);
  }
}
@media (min-width: 1728px) {
  .section__meet-the-team .layout-container {
    margin-block: calc(144px * 1.25);
  }
}
@media (min-width: 2048px) {
  .section__meet-the-team .layout-container {
    margin-block: calc(160px * 1.25);
  }
}
.section__meet-the-team .grid {
  display: grid;
  grid-template-rows: auto 1fr;
  row-gap: 72px;
}
@media (min-width: 320px) {
  .section__meet-the-team .grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 8px;
  }
}
@media (min-width: 375px) {
  .section__meet-the-team .grid {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 12px;
  }
}
@media (min-width: 393px) {
  .section__meet-the-team .grid {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 12px;
  }
}
@media (min-width: 440px) {
  .section__meet-the-team .grid {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 12px;
  }
}
@media (min-width: 744px) {
  .section__meet-the-team .grid {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 16px;
  }
}
@media (min-width: 834px) {
  .section__meet-the-team .grid {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 16px;
  }
}
@media (min-width: 1024px) {
  .section__meet-the-team .grid {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
  }
}
@media (min-width: 1280px) {
  .section__meet-the-team .grid {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
  }
}
@media (min-width: 1512px) {
  .section__meet-the-team .grid {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
  }
}
@media (min-width: 1728px) {
  .section__meet-the-team .grid {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
  }
}
@media (min-width: 2048px) {
  .section__meet-the-team .grid {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
  }
}
.section__meet-the-team .grid .section__content,
.section__meet-the-team .grid .headshot-gallery {
  grid-column: 1/-1;
}
@media (min-width: 1024px) {
  .section__meet-the-team .grid .section__content,
  .section__meet-the-team .grid .headshot-gallery {
    grid-column: 2/-2;
  }
}
.section__meet-the-team .grid .section__content {
  grid-row: 1/2;
  width: 90%;
  margin: auto;
  text-align: center;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(6, 32, 56, 0.1);
}
@media (min-width: 744px) {
  .section__meet-the-team .grid .section__content {
    width: 100%;
    margin: 0;
    padding-bottom: 5rem;
  }
}
.section__meet-the-team .grid .section__content .section__title {
  margin-bottom: 32px;
  font-family: "Montserrat-SemiBold";
  font-size: 1.313rem;
  line-height: 120%;
  font-weight: 500;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-smooth: always;
}
@media (max-width: 1512px) {
  .section__meet-the-team .grid .section__content .section__title {
    font-size: 1rem;
  }
}
.section__meet-the-team .grid .section__content .section__title,
.section__meet-the-team .grid .section__content .section__body {
  color: #062038;
  margin-inline: auto;
}
.section__meet-the-team .grid .section__content .section__body {
  max-width: 520px;
  font-size: 1.313rem;
  line-height: 120%;
  font-family: "Montserrat-Regular";
}
@media (min-width: 1280px) {
  .section__meet-the-team .grid .section__content .section__body {
    max-width: 600px;
  }
}
@media (max-width: 1512px) {
  .section__meet-the-team .grid .section__content .section__body {
    font-size: 1rem;
  }
}
.section__meet-the-team .grid .headshot-gallery {
  position: relative;
  margin-top: 2rem;
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 744px) {
  .section__meet-the-team .grid .headshot-gallery {
    width: 85%;
    margin-inline: auto;
    margin-top: 4rem;
    text-align: left;
  }
}
.section__meet-the-team .grid .headshot-gallery__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}
.section__meet-the-team .grid .headshot-gallery__title {
  display: none;
}
@media (min-width: 744px) {
  .section__meet-the-team .grid .headshot-gallery__title {
    font-size: 1rem;
    line-height: 120%;
    text-transform: uppercase;
    font-family: "Montserrat-SemiBold";
    color: #062038;
    display: none;
    position: relative;
  }
}
@media (min-width: 744px) and (max-width: 1512px) {
  .section__meet-the-team .grid .headshot-gallery__title {
    font-size: 0.75rem;
  }
}
@media (min-width: 744px) {
  .section__meet-the-team .grid .headshot-gallery__title::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 32px;
    height: 2px;
    background-color: #062038;
  }
}
.section__meet-the-team .grid .headshot-gallery__nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 5.5rem;
  margin: 0 auto;
}
@media (min-width: 744px) {
  .section__meet-the-team .grid .headshot-gallery__nav {
    width: 75px;
  }
}
.section__meet-the-team .grid .headshot-gallery__nav-button {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  color: #fcfcfc;
  background-color: #e3dcd7;
  font-family: monospace;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
@media (hover: none) {
  .section__meet-the-team .grid .headshot-gallery__nav-button:hover {
    color: #fcfcfc;
    background-color: #e3dcd7;
  }
}
.section__meet-the-team .grid .headshot-gallery__nav-button:hover {
  background-color: #d9cfc8;
  color: #fcfcfc;
}
.section__meet-the-team .grid .headshot-gallery__nav-button:focus, .section__meet-the-team .grid .headshot-gallery__nav-button:active {
  background-color: #cec2b9;
  color: #fcfcfc;
}
.section__meet-the-team .grid .headshot-gallery__nav-button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
@media (min-width: 744px) {
  .section__meet-the-team .grid .headshot-gallery__nav-button {
    height: 30px;
    width: 30px;
  }
}
.section__meet-the-team .grid .headshot-gallery__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.section__meet-the-team .grid .headshot-gallery__viewport::-webkit-scrollbar {
  height: 0px;
}
.section__meet-the-team .grid .headshot-gallery__track {
  display: flex;
  gap: 1rem;
  scroll-behavior: smooth;
}
.section__meet-the-team .grid .headshot-gallery__track .headshot-gallery__card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  text-align: center;
}
.section__meet-the-team .grid .headshot-gallery__track .headshot-gallery__card img {
  width: 75%;
  height: 250px;
  object-fit: cover;
  margin: auto;
  border-radius: 0.25rem;
}
@media (min-width: 744px) {
  .section__meet-the-team .grid .headshot-gallery__track .headshot-gallery__card img {
    width: 100%;
    height: 250px;
  }
}
@media (min-width: 1512px) {
  .section__meet-the-team .grid .headshot-gallery__track .headshot-gallery__card img {
    height: 365px;
  }
}
.section__meet-the-team .grid .headshot-gallery__track .headshot-gallery__card-name, .section__meet-the-team .grid .headshot-gallery__track .headshot-gallery__card-title {
  padding-left: 0;
}
@media (min-width: 744px) {
  .section__meet-the-team .grid .headshot-gallery__track .headshot-gallery__card-name, .section__meet-the-team .grid .headshot-gallery__track .headshot-gallery__card-title {
    padding-left: 0.5rem;
  }
}
.section__meet-the-team .grid .headshot-gallery__track .headshot-gallery__card-name {
  font-size: 1.688rem;
  line-height: 100%;
  font-weight: 400;
  font-family: "Montserrat-Regular";
  margin-top: 1rem;
  margin-bottom: 0.25rem;
  color: #062038;
}
@media (max-width: 1280px) {
  .section__meet-the-team .grid .headshot-gallery__track .headshot-gallery__card-name {
    font-size: 1.313rem;
  }
}
.section__meet-the-team .grid .headshot-gallery__track .headshot-gallery__card-title {
  font-size: 0.75rem;
  line-height: 150%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: "Montserrat-Regular";
  color: #062038;
}
@media (max-width: 1280px) {
  .section__meet-the-team .grid .headshot-gallery__track .headshot-gallery__card-title {
    font-size: 0.563rem;
  }
}
@media (min-width: 744px) {
  .section__meet-the-team .grid .headshot-gallery__track .headshot-card {
    flex: 0 0 50%;
  }
}
@media (min-width: 1280px) {
  .section__meet-the-team .grid .headshot-gallery__track .headshot-card {
    flex: 0 0 calc(33.333% - 0.666rem);
  }
}

.site-footer {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background-color: #062038;
}
.site-footer__layout-container {
  width: 90%;
  max-width: 1950px;
  margin: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .site-footer__layout-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 1fr auto;
    padding-top: 3rem;
  }
  .site-footer__layout-container .site-footer__top {
    grid-column: 1/7;
    grid-row: 1/2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .site-footer__layout-container .site-footer__top img {
    width: 500px;
  }
  .site-footer__layout-container .site-footer__top .site-footer__company-info {
    flex-direction: column;
    gap: 2rem;
  }
  .site-footer__layout-container .site-footer__nav {
    grid-column: 7/-1;
    grid-row: 1/2;
    align-self: flex-start;
    flex-direction: row;
    padding-top: 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
  }
  .site-footer__layout-container .site-footer__nav .site-footer__links--site {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .site-footer__layout-container .site-footer__nav .site-footer__links--communities {
    grid-column: 2/-1;
    grid-row: 1/2;
  }
  .site-footer__layout-container .site-footer__nav .site-footer__links--coming-soon {
    grid-column: 1/2;
    grid-row: 2/-1;
  }
  .site-footer__layout-container .site-footer__bottom {
    grid-column: 1/-1;
    grid-row: 2/-1;
  }
}
.site-footer__cta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-family: "Montserrat-Bold";
  font-size: 1rem;
  line-height: 120%;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 40px 0px;
  margin: 0;
  color: #062038;
  width: 100%;
  background-color: #f8f9fb;
}
@media (max-width: 744px) {
  .site-footer__cta {
    font-size: 0.75rem;
  }
}
.site-footer__cta p {
  width: 90%;
  margin: auto;
  padding: 0;
  text-align: left;
  max-width: 1950px;
}
.site-footer__top {
  display: flex;
  flex-direction: column;
  color: #fcfcfc;
  height: 100%;
}
.site-footer__top .site-footer__company-info {
  display: flex;
  flex-direction: row;
  gap: 4rem;
}
.site-footer__top .site-footer__brand {
  margin-top: 4.5rem;
  margin-bottom: 2rem;
  width: 100%;
  max-width: 520px;
}
@media (min-width: 1024px) {
  .site-footer__top .site-footer__brand {
    margin-top: 3rem;
  }
}
.site-footer__top .site-footer__address {
  font-family: "Montserrat-Medium";
  font-size: 1rem;
  line-height: 120%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-style: normal;
  position: relative;
  display: inline-block;
  text-decoration: none;
  overflow: hidden;
  padding-bottom: 2px;
  margin-bottom: 2px;
  align-self: flex-start;
}
@media (max-width: 744px) {
  .site-footer__top .site-footer__address {
    font-size: 1rem;
  }
}
.site-footer__top .site-footer__address::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #fcfcfc;
  transition: width 0.25s ease;
}
@media (min-width: 744px) {
  .site-footer__top .site-footer__address::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #fcfcfc;
    transition: width 0.25s ease;
  }
  .site-footer__top .site-footer__address:hover::after, .site-footer__top .site-footer__address:focus-visible::after, .site-footer__top .site-footer__address.is-clicked::after {
    animation: underline-flash 0.8s ease forwards;
  }
}
.site-footer__top .site-footer__address::after {
  width: 0;
}
.site-footer__top .site-footer__social {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  font-family: "Montserrat-Medium";
  font-size: 1rem;
  line-height: 120%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (max-width: 744px) {
  .site-footer__top .site-footer__social {
    font-size: 1rem;
  }
}
.site-footer__top .site-footer__social li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  overflow: hidden;
  padding-bottom: 2px;
}
.site-footer__top .site-footer__social li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #fcfcfc;
  transition: width 0.25s ease;
}
@media (min-width: 744px) {
  .site-footer__top .site-footer__social li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #fcfcfc;
    transition: width 0.25s ease;
  }
  .site-footer__top .site-footer__social li a:hover::after, .site-footer__top .site-footer__social li a:focus-visible::after, .site-footer__top .site-footer__social li a.is-clicked::after {
    animation: underline-flash 0.8s ease forwards;
  }
}
.site-footer__top .site-footer__social li a::after {
  width: 0;
}
.site-footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3rem;
}
.site-footer__nav .site-footer__links {
  font-family: "Montserrat-Regular";
  font-size: 1rem;
  line-height: 120%;
  letter-spacing: 0.05em;
  color: #fcfcfc;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
}
.site-footer__nav .site-footer__links li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  overflow: hidden;
  padding-bottom: 2px;
  margin-bottom: 2px;
}
.site-footer__nav .site-footer__links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #fcfcfc;
  transition: width 0.25s ease;
}
@media (min-width: 744px) {
  .site-footer__nav .site-footer__links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #fcfcfc;
    transition: width 0.25s ease;
  }
  .site-footer__nav .site-footer__links li a:hover::after, .site-footer__nav .site-footer__links li a:focus-visible::after, .site-footer__nav .site-footer__links li a.is-clicked::after {
    animation: underline-flash 0.8s ease forwards;
  }
}
.site-footer__nav .site-footer__links li a::after {
  width: 0;
}
.site-footer__nav .site-footer__links .site-footer__heading {
  font-family: "Montserrat-SemiBold";
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fcfcfc;
  margin-bottom: 12px;
}
.site-footer__nav .site-footer__links-divider {
  width: 45%;
  height: 1px;
  background: #fcfcfc;
  margin: 12px 0;
}
.site-footer__nav .site-footer__inactive {
  color: rgba(252, 252, 252, 0.6);
  cursor: not-allowed;
  text-decoration: none;
}
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 6rem;
  background-color: #062038;
  color: #fcfcfc;
  font-family: "Montserrat-SemiBold";
  font-size: 0.563rem;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .site-footer__bottom {
    height: 5rem;
  }
}
.site-footer__bottom .site-footer__credits {
  color: #fcfcfc;
  text-decoration: none;
  position: relative;
  display: inline-block;
  text-decoration: none;
  overflow: hidden;
  padding-bottom: 2px;
}
.site-footer__bottom .site-footer__credits::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #fcfcfc;
  transition: width 0.25s ease;
}
@media (min-width: 744px) {
  .site-footer__bottom .site-footer__credits::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #fcfcfc;
    transition: width 0.25s ease;
  }
  .site-footer__bottom .site-footer__credits:hover::after, .site-footer__bottom .site-footer__credits:focus-visible::after, .site-footer__bottom .site-footer__credits.is-clicked::after {
    animation: underline-flash 0.8s ease forwards;
  }
}
.site-footer__bottom .site-footer__credits::after {
  width: 0;
}
