.full-page-header {
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.full-page-header .full-page-header__bg {
  position: absolute;
  inset: -6%;
  background-size: cover;
  background-position: center center;
  -webkit-animation: hero-ken-burns 22s ease-in-out infinite;
          animation: hero-ken-burns 22s ease-in-out infinite;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .full-page-header .full-page-header__bg {
    -webkit-animation: none;
            animation: none;
  }
}
.full-page-header:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.42);
  z-index: 1;
}
.full-page-header:after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.45)), color-stop(30%, rgba(0, 0, 0, 0))), -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), color-stop(40%, rgba(0, 0, 0, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 30%), linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 40%);
  z-index: 1;
}
.full-page-header .full-page-header--content {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  /* =====================================================
     HERO LOGO (STATIC STATE)
     ===================================================== */
}
.full-page-header .full-page-header--content .full-page-header--logo {
  width: 560px;
  /* Adjust if you want it slightly bigger/smaller */
  max-width: 80vw;
  height: auto;
  display: block;
  margin: 0 auto;
  -webkit-filter: drop-shadow(1px 1px 10px rgba(0, 0, 0, 0.55));
          filter: drop-shadow(1px 1px 10px rgba(0, 0, 0, 0.55));
  opacity: 1;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.full-page-header .full-page-header--content {
  /* =====================================================
     HERO LOGO (JS FLYING STATE)
     ===================================================== */
}

.hero-scroll-cta {
  position: absolute;
  bottom: 36px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  -webkit-transition: border-color 0.25s ease, background 0.25s ease;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.hero-scroll-cta svg {
  width: 22px;
  height: 22px;
  display: block;
  cursor: pointer;
  pointer-events: none;
}
.hero-scroll-cta:hover {
  border-color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.12);
}
.hero-scroll-cta {
  -webkit-animation: hero-scroll-nudge 12s ease-in-out infinite;
          animation: hero-scroll-nudge 12s ease-in-out infinite;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

@-webkit-keyframes hero-scroll-nudge {
  0%, 55%, 100% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
  75% {
    -webkit-transform: translateX(-50%) translateY(6px);
            transform: translateX(-50%) translateY(6px);
  }
}

@keyframes hero-scroll-nudge {
  0%, 55%, 100% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
  75% {
    -webkit-transform: translateX(-50%) translateY(6px);
            transform: translateX(-50%) translateY(6px);
  }
}
.full-page-header--logo.is-flying {
  position: fixed;
  top: 0;
  left: 0;
  margin: 0;
  z-index: 2000;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  will-change: transform, opacity;
  pointer-events: none;
}

@media (max-width: 980px) {
  .full-page-header--logo.is-flying {
    z-index: 3002;
  }
}
/* =========================================================
   HIDE NAV LOGO WHILE HERO LOGO IS FLYING
   (Prevents seeing two logos)
   ========================================================= */
html.has-hero-logo-fly .site-navigation .logo img {
  opacity: 0;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}

/* Once docked, nav logo becomes visible again */
html:not(.has-hero-logo-fly) .site-navigation .logo img {
  opacity: 1;
}

/* =========================================================
   RESPONSIVE TWEAKS
   ========================================================= */
@media (max-width: 980px) {
  .full-page-header .full-page-header--content .full-page-header--logo {
    width: 560px;
    max-width: 80vw;
  }
}
/* =========================================================
   CINEMATIC INTRO OVERLAY
   ========================================================= */
.hero-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-animation: hero-intro-exit 1.1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: hero-intro-exit 1.1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.hero-intro__topo {
  position: absolute;
  width: 400px;
  max-width: 40vw;
  height: auto;
  pointer-events: none;
  opacity: 0;
  -webkit-animation: hero-topo-fadein 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: hero-topo-fadein 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.hero-intro__topo--bl {
  bottom: -60px;
  left: -60px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.hero-intro__topo--tr {
  top: -60px;
  right: -60px;
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.hero-intro > svg {
  width: 560px;
  max-width: 80vw;
  height: auto;
  display: block;
}

.hero-intro svg g path:nth-child(1),
.hero-intro svg g path:nth-child(2),
.hero-intro svg g path:nth-child(3) {
  clip-path: inset(0 100% 0 0);
  -webkit-animation: hero-path-reveal 0.7s cubic-bezier(0.77, 0, 0.18, 1) forwards;
          animation: hero-path-reveal 0.7s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}

.hero-intro svg g path:nth-child(1) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.hero-intro svg g path:nth-child(2) {
  -webkit-animation-delay: 0.65s;
          animation-delay: 0.65s;
}

.hero-intro svg g path:nth-child(3) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.hero-intro svg g path:nth-child(4) {
  opacity: 0;
  -webkit-animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

.hero-intro svg g path:nth-child(5) {
  opacity: 0;
  -webkit-animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  -webkit-animation-delay: 1.128s;
          animation-delay: 1.128s;
}

.hero-intro svg g path:nth-child(6) {
  opacity: 0;
  -webkit-animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  -webkit-animation-delay: 1.156s;
          animation-delay: 1.156s;
}

.hero-intro svg g path:nth-child(7) {
  opacity: 0;
  -webkit-animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  -webkit-animation-delay: 1.184s;
          animation-delay: 1.184s;
}

.hero-intro svg g path:nth-child(8) {
  opacity: 0;
  -webkit-animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  -webkit-animation-delay: 1.212s;
          animation-delay: 1.212s;
}

.hero-intro svg g path:nth-child(9) {
  opacity: 0;
  -webkit-animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  -webkit-animation-delay: 1.24s;
          animation-delay: 1.24s;
}

.hero-intro svg g path:nth-child(10) {
  opacity: 0;
  -webkit-animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  -webkit-animation-delay: 1.268s;
          animation-delay: 1.268s;
}

.hero-intro svg g path:nth-child(11) {
  opacity: 0;
  -webkit-animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  -webkit-animation-delay: 1.296s;
          animation-delay: 1.296s;
}

.hero-intro svg g path:nth-child(12) {
  opacity: 0;
  -webkit-animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  -webkit-animation-delay: 1.324s;
          animation-delay: 1.324s;
}

.hero-intro svg g path:nth-child(13) {
  opacity: 0;
  -webkit-animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  -webkit-animation-delay: 1.352s;
          animation-delay: 1.352s;
}

.hero-intro svg g path:nth-child(14) {
  opacity: 0;
  -webkit-animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  -webkit-animation-delay: 1.38s;
          animation-delay: 1.38s;
}

.hero-intro svg g path:nth-child(15) {
  opacity: 0;
  -webkit-animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  -webkit-animation-delay: 1.408s;
          animation-delay: 1.408s;
}

.hero-intro svg g path:nth-child(16) {
  opacity: 0;
  -webkit-animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  -webkit-animation-delay: 1.436s;
          animation-delay: 1.436s;
}

.hero-intro svg g path:nth-child(17) {
  opacity: 0;
  -webkit-animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  -webkit-animation-delay: 1.464s;
          animation-delay: 1.464s;
}

.hero-intro svg g path:nth-child(18) {
  opacity: 0;
  -webkit-animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  -webkit-animation-delay: 1.492s;
          animation-delay: 1.492s;
}

.hero-intro svg g path:nth-child(19) {
  opacity: 0;
  -webkit-animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  -webkit-animation-delay: 1.52s;
          animation-delay: 1.52s;
}

.hero-intro svg g path:nth-child(20) {
  opacity: 0;
  -webkit-animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  -webkit-animation-delay: 1.548s;
          animation-delay: 1.548s;
}

.hero-intro svg g path:nth-child(21) {
  opacity: 0;
  -webkit-animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  -webkit-animation-delay: 1.576s;
          animation-delay: 1.576s;
}

.hero-intro svg g path:nth-child(22) {
  opacity: 0;
  -webkit-animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  -webkit-animation-delay: 1.604s;
          animation-delay: 1.604s;
}

.hero-intro svg g path:nth-child(23) {
  opacity: 0;
  -webkit-animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  -webkit-animation-delay: 1.632s;
          animation-delay: 1.632s;
}

.hero-intro svg g path:nth-child(24) {
  opacity: 0;
  -webkit-animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: hero-text-fadeup 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  -webkit-animation-delay: 1.66s;
          animation-delay: 1.66s;
}

@-webkit-keyframes hero-path-reveal {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0% 0 0);
  }
}

@keyframes hero-path-reveal {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0% 0 0);
  }
}
@-webkit-keyframes hero-text-fadeup {
  from {
    opacity: 0;
    -webkit-transform: translateY(14px);
            transform: translateY(14px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes hero-text-fadeup {
  from {
    opacity: 0;
    -webkit-transform: translateY(14px);
            transform: translateY(14px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes hero-topo-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes hero-topo-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes hero-intro-exit {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes hero-intro-exit {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes hero-ken-burns {
  0% {
    -webkit-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0);
  }
  30% {
    -webkit-transform: scale(1.04) translate(-0.8%, -0.4%);
            transform: scale(1.04) translate(-0.8%, -0.4%);
  }
  65% {
    -webkit-transform: scale(1.06) translate(0.6%, 0.3%);
            transform: scale(1.06) translate(0.6%, 0.3%);
  }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0);
  }
}
@keyframes hero-ken-burns {
  0% {
    -webkit-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0);
  }
  30% {
    -webkit-transform: scale(1.04) translate(-0.8%, -0.4%);
            transform: scale(1.04) translate(-0.8%, -0.4%);
  }
  65% {
    -webkit-transform: scale(1.06) translate(0.6%, 0.3%);
            transform: scale(1.06) translate(0.6%, 0.3%);
  }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-intro {
    -webkit-animation-duration: 1ms !important;
            animation-duration: 1ms !important;
    -webkit-animation-delay: 1ms !important;
            animation-delay: 1ms !important;
  }
  .hero-intro svg g path {
    -webkit-animation-duration: 1ms !important;
            animation-duration: 1ms !important;
    -webkit-animation-delay: 1ms !important;
            animation-delay: 1ms !important;
    clip-path: none !important;
    opacity: 1 !important;
  }
}