@font-face {
  font-family: "Barlow Condensed Local";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/barlow-condensed-800.ttf") format("truetype");
}

:root {
  scroll-behavior: auto;
}

h1,
h2,
h3,
.heading-font {
  font-family: "Barlow Condensed Local", "Arial Narrow", sans-serif !important;
  font-style: normal !important;
  font-weight: 800 !important;
  letter-spacing: 0.025em !important;
  text-wrap: balance;
  text-shadow: 0 3px 18px rgb(0 0 0 / 28%);
}

h2 {
  font-size: clamp(3rem, 7vw, 6.6rem) !important;
  line-height: 0.88 !important;
}

h3 {
  font-size: clamp(2.1rem, 4.2vw, 3.8rem) !important;
  line-height: 0.95 !important;
}

.header-nav-item > a,
.header-menu-nav-item a {
  position: relative;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  transition: color 160ms ease, opacity 160ms ease;
}

.header-nav-list {
  flex-wrap: nowrap !important;
}

.header-nav-item > a::after,
.header-menu-nav-item a::after {
  content: none;
}

.clone-nav-label {
  position: relative;
  display: inline-block;
  padding-bottom: 0.08em;
}

.clone-nav-label::after {
  position: absolute;
  bottom: -0.03em;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.header-nav-item > a:hover,
.header-nav-item > a:focus-visible,
.header-menu-nav-item a:hover,
.header-menu-nav-item a:focus-visible {
  background: transparent;
  box-shadow: none;
  font-weight: inherit;
  opacity: 0.88;
}

.header-nav-item > a:hover .clone-nav-label::after,
.header-nav-item > a:focus-visible .clone-nav-label::after,
.header-menu-nav-item a:hover .clone-nav-label::after,
.header-menu-nav-item a:focus-visible .clone-nav-label::after {
  transform: scaleX(1);
}

.header-menu-nav-item a {
  font-size: clamp(1.25rem, 1.7vw, 1.55rem) !important;
  line-height: 1.2 !important;
  letter-spacing: 0.04em !important;
}

.header-burger-btn {
  width: 44px !important;
  height: 44px !important;
  padding: 8px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: currentColor;
  transition: opacity 160ms ease;
}

.header-burger-btn .burger-box {
  position: relative !important;
  width: 28px !important;
  height: 18px !important;
}

.header-burger-btn .burger-inner {
  display: none !important;
}

.header-burger-btn .burger-box::before,
.header-burger-btn .burger-box::after {
  position: absolute !important;
  left: 0 !important;
  display: block !important;
  width: 28px !important;
  height: 2px !important;
  content: "" !important;
  background: currentColor !important;
  transform-origin: center !important;
  transition: top 180ms ease, transform 180ms ease !important;
}

.header-burger-btn .burger-box::before {
  top: 4px !important;
}

.header-burger-btn .burger-box::after {
  top: 12px !important;
}

.header-burger-btn.burger--active .burger-box::before,
.header-burger-btn.burger--active .burger-box::after {
  top: 8px !important;
}

.header-burger-btn.burger--active .burger-box::before {
  transform: rotate(45deg) !important;
}

.header-burger-btn.burger--active .burger-box::after {
  transform: rotate(-45deg) !important;
}

.header-burger-btn:hover,
.header-burger-btn:focus-visible {
  background: transparent;
  box-shadow: none;
  opacity: 0.72;
}

.clone-inline-section-link {
  color: inherit !important;
  font-weight: inherit;
  text-decoration-line: underline !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 0.16em;
  transition: opacity 150ms ease;
}

.clone-inline-section-link span {
  color: inherit !important;
}

.clone-inline-section-link::after {
  content: none;
}

.clone-inline-section-link:hover,
.clone-inline-section-link:focus-visible {
  opacity: 0.65;
}

.clone-top-fade-text {
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent var(--clone-fade-start, -112px),
    #000 var(--clone-fade-end, -1px)
  );
  mask-image: linear-gradient(
    to bottom,
    transparent var(--clone-fade-start, -112px),
    #000 var(--clone-fade-end, -1px)
  );
}

.section-background-content.clone-local-parallax {
  position: absolute !important;
  inset: 0;
  overflow: hidden;
}

.section-background-content.clone-local-parallax img.background-image-fx {
  position: absolute !important;
  top: -64px !important;
  left: 0 !important;
  display: block !important;
  width: 100% !important;
  height: calc(100% + 128px) !important;
  max-width: none !important;
  object-fit: cover !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translate3d(0, var(--clone-parallax-y, 0px), 0) !important;
  will-change: transform;
}

.sqs-video-background-native,
.sqs-video-background-native__video-player,
.clone-local-background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.clone-local-background-video {
  display: block;
  object-fit: cover;
}

.clone-static-form-note {
  margin-top: 0.75rem;
  font-size: 0.8em;
  opacity: 0.72;
}

.gallery-fullscreen-slideshow-item[data-active="true"] {
  animation: clone-slide-reveal 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes clone-slide-reveal {
  from {
    opacity: 0;
    transform: scale(1.015);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

#gallery .gallery-strips {
  box-sizing: border-box;
  padding: 4px !important;
}

#gallery .gallery-strips-wrapper {
  display: block !important;
  height: auto !important;
}

#gallery .clone-gallery-row {
  display: flex;
  width: 100%;
  margin: 0 0 4px;
  align-items: flex-start;
  gap: 4px;
}

#gallery .clone-gallery-row:last-child {
  margin-bottom: 0;
}

#gallery .gallery-strips-item {
  position: relative !important;
  /* Ignore the legacy absolute-layout offsets that Squarespace continues to
     write inline after the static flex gallery has been initialized. */
  transform: none !important;
  flex: var(--clone-gallery-ratio, 1.3333) 1 var(--clone-gallery-basis, 200px);
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  aspect-ratio: var(--clone-gallery-ratio, 1.3333);
  background: #111;
}

#gallery .clone-gallery-row > .gallery-strips-item {
  flex: var(--clone-gallery-ratio, 1.3333) 1 0;
}

#gallery .gallery-strips-item-wrapper,
#gallery .gallery-strips-lightbox-link {
  position: absolute !important;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
}

#gallery .gallery-strips-item-wrapper {
  transform: none !important;
}

#gallery .gallery-strips-lightbox-link img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover !important;
  object-position: center center;
  filter: saturate(0.92) contrast(1.03);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), filter 220ms ease;
}

#gallery .gallery-strips-lightbox-link::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  border: 1px solid rgb(255 255 255 / 17%);
  background: linear-gradient(180deg, transparent 56%, rgb(0 0 0 / 58%));
  opacity: 0;
  transition: opacity 220ms ease;
}

#gallery .gallery-strips-lightbox-link::after {
  content: none;
}

#gallery .gallery-strips-lightbox-link:hover img,
#gallery .gallery-strips-lightbox-link:focus-visible img {
  filter: saturate(1.05) contrast(1.06);
  transform: scale(1.045);
}

#gallery .gallery-strips-lightbox-link:hover::before,
#gallery .gallery-strips-lightbox-link:focus-visible::before {
  opacity: 1;
}

section[data-section-id="615d0021a838bc4ecf030584"] .form-block {
  box-sizing: border-box;
  width: min(100%, 42rem);
  margin-top: clamp(1.25rem, 3vw, 2.5rem);
}

section[data-section-id="615d0021a838bc4ecf030584"] .form-wrapper {
  padding: clamp(1.25rem, 3.5vw, 2.4rem) !important;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 4px;
  background: linear-gradient(145deg, rgb(11 12 14 / 83%), rgb(20 20 23 / 68%));
  box-shadow: 0 24px 70px rgb(0 0 0 / 33%);
  backdrop-filter: blur(13px) saturate(1.1);
  -webkit-backdrop-filter: blur(13px) saturate(1.1);
}

section[data-section-id="615d0021a838bc4ecf030584"] .form-item {
  margin-bottom: 1.15rem !important;
}

section[data-section-id="615d0021a838bc4ecf030584"] .form-item label {
  display: block;
  margin-bottom: 0.48rem;
  font: 800 1rem/1 "Barlow Condensed Local", "Arial Narrow", sans-serif !important;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

section[data-section-id="615d0021a838bc4ecf030584"] .form-item label .description {
  margin-left: 0.35rem;
  font: 500 0.68rem/1 Poppins, sans-serif !important;
  letter-spacing: 0.04em;
  opacity: 0.66;
  text-transform: uppercase;
}

section[data-section-id="615d0021a838bc4ecf030584"] .form-item input,
section[data-section-id="615d0021a838bc4ecf030584"] .form-item textarea {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid rgb(255 255 255 / 28%) !important;
  border-radius: 2px !important;
  padding: 0.9rem 1rem !important;
  color: #fff !important;
  background: rgb(0 0 0 / 38%) !important;
  box-shadow: none !important;
  font: 400 1rem/1.45 Poppins, sans-serif !important;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

section[data-section-id="615d0021a838bc4ecf030584"] form.react-form-contents .form-item input[type="email"],
section[data-section-id="615d0021a838bc4ecf030584"] form.react-form-contents .form-item textarea {
  border: 1px solid rgb(255 255 255 / 34%) !important;
  background-color: rgb(0 0 0 / 42%) !important;
  background-image: none !important;
}

section[data-section-id="615d0021a838bc4ecf030584"] .form-item textarea {
  min-height: 9rem !important;
  resize: vertical;
}

section[data-section-id="615d0021a838bc4ecf030584"] .form-item input:focus,
section[data-section-id="615d0021a838bc4ecf030584"] .form-item textarea:focus {
  outline: none;
  border-color: #fff !important;
  background: rgb(0 0 0 / 55%) !important;
  box-shadow: 0 0 0 3px rgb(255 255 255 / 12%) !important;
}

section[data-section-id="615d0021a838bc4ecf030584"] .form-input-effects {
  display: none !important;
}

section[data-section-id="615d0021a838bc4ecf030584"] .form-submit-button {
  min-height: 0 !important;
  border: 1px solid #fff !important;
  border-radius: 2px !important;
  padding: 0.85rem 1.8rem !important;
  color: #101114 !important;
  background: #fff !important;
  box-shadow: 0 12px 30px rgb(0 0 0 / 25%);
  font: 800 1.15rem/1 "Barlow Condensed Local", "Arial Narrow", sans-serif !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

section[data-section-id="615d0021a838bc4ecf030584"] .form-submit-button:hover,
section[data-section-id="615d0021a838bc4ecf030584"] .form-submit-button:focus-visible {
  color: #fff !important;
  background: transparent !important;
  transform: translateY(-2px);
}

.clone-lightbox-open {
  overflow: hidden;
}

.clone-static-lightbox {
  position: fixed;
  z-index: 2147483647;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(3rem, 8vw) minmax(0, 1fr) minmax(3rem, 8vw);
  place-items: center;
  padding: 3.75rem 1rem 2.5rem;
  color: #fff;
  background: rgb(0 0 0 / 94%);
}

.clone-static-lightbox[hidden] {
  display: none;
}

.clone-static-lightbox-image {
  grid-column: 2;
  max-width: 100%;
  max-height: calc(100vh - 7rem);
  object-fit: contain;
}

.clone-static-lightbox button {
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.clone-static-lightbox-close {
  position: absolute;
  top: 0.6rem;
  right: 1rem;
  padding: 0.35rem 0.7rem;
  font-size: 2.6rem;
  line-height: 1;
}

.clone-static-lightbox-previous,
.clone-static-lightbox-next {
  padding: 1rem;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1;
}

.clone-static-lightbox-previous {
  grid-column: 1;
}

.clone-static-lightbox-next {
  grid-column: 3;
}

.clone-static-lightbox-count {
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  font-size: 0.85rem;
  transform: translateX(-50%);
}

@media (prefers-reduced-motion: reduce) {
  .header-nav-item > a,
  .header-menu-nav-item a,
  .header-burger-btn,
  .clone-nav-label::after,
  .clone-inline-section-link,
  .clone-inline-section-link::after,
  .gallery-strips-lightbox-link img {
    transition: none;
  }

  .section-background-content.clone-local-parallax img.background-image-fx {
    transform: none !important;
  }
}

@media (max-width: 640px) {
  h2 {
    font-size: clamp(3.4rem, 16vw, 5rem) !important;
  }

  #gallery .gallery-strips {
    padding: 3px !important;
  }

  #gallery .gallery-strips-wrapper {
    gap: 0 !important;
  }

  #gallery .clone-gallery-row {
    margin-bottom: 3px;
    gap: 3px;
  }

  #gallery .gallery-strips-lightbox-link::before,
  #gallery .gallery-strips-lightbox-link::after {
    display: none;
  }

  section[data-section-id="615d0021a838bc4ecf030584"] .form-wrapper {
    box-sizing: border-box;
    width: min(100%, calc(100vw - 2rem)) !important;
    padding: 1rem !important;
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
  }

  section[data-section-id="615d0021a838bc4ecf030584"] .form-block {
    width: 100% !important;
    max-width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .clone-static-lightbox {
    grid-template-columns: 3rem minmax(0, 1fr) 3rem;
    padding-inline: 0.25rem;
  }

  .clone-static-lightbox-previous,
  .clone-static-lightbox-next {
    padding: 0.25rem;
  }
}
