/* --- MERGED ROOT VARIABLES --- */
:root {
  /* Nav Variables */
  --color-text: #edd011;
  --color-bg: #333;
  --color-link: #f6ecb6;
  --color-link-hover: #f6ecb6;
  --color-main-bg: #0f0f11;
  --path-fill-1: #000000;
  --path-fill-2: #1d1d1f;
  --path-fill-3: #edd011;
  --color-menu: #ffffff;
  --color-menu-hover: #f6ecb6;
  --font-family-menu: 'Archivo Black', sans-serif;
  --font-weight-menu: 400;
  --button-bg: #fff;
  --button-circle: #ada4a4;
  --button-line: #222;
}

/* ==========================================
   GLOBAL NAV STYLES
   ========================================== */
body.nav {
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

a,
a:focus,
a:active {
    border: none;
    outline: none;
    box-shadow: none;
}

.global-menu {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    text-align: center;
    z-index: 9997;
}

.global-menu__header {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 1vmax;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 3vh;
    pointer-events: none;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.1s ease, opacity 0.1s ease;
}

.global-menu__header.is-opened {
    opacity: 1;
    transform: translateY(0);
	transition: transform 0.8s ease, opacity 0.8s ease;
    transition-delay: 0.5s;
}

.global-menu__wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-height: 80vh;
}

.global-menu__item {
    color: var(--color-menu);
    font-family: var(--font-family-menu);
    font-size: clamp(2rem, 6vh, 4.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.8px;
	text-shadow: -1px  2px 0 rgba(237, 177, 17, 0.6), 0px  1px 0 rgba(237, 177, 17, 0.6);
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
    display: block;
    margin: 1.5vh 0;
    transition: transform 0.3s, opacity 0.3s;
    transition-timing-function: ease-in;
}

.global-menu__item--link {
	transition: transform 0.1s, opacity 0.1s;
	transform: translateY(100%);
	transition-timing-function: ease-out;
}

.global-menu__item:hover {
	color: var(--color-menu-hover);
}

.global-menu__item.is-opened {
	opacity: 1;
	transform: translateY(0) rotate(0);
	pointer-events: auto;
	transition-timing-function: ease;
}

.global-menu__item--link.is-opened {
	transition-duration: 0.3s;
}

.global-menu__item--link:nth-of-type(1) { transition-delay: 0s; }
.global-menu__item--link.is-opened:nth-of-type(1) { transition-delay: 0.65s; }
.global-menu__item--link:nth-of-type(2) { transition-delay: 0s; }
.global-menu__item--link.is-opened:nth-of-type(2) { transition-delay: 0.7s; }
.global-menu__item--link:nth-of-type(3) { transition-delay: 0s; }
.global-menu__item--link.is-opened:nth-of-type(3) { transition-delay: 0.75s; }
.global-menu__item--link:nth-of-type(4) { transition-delay: 0s; }
.global-menu__item--link.is-opened:nth-of-type(4) { transition-delay: 0.8s; }
.global-menu__item--link:nth-of-type(5) { transition-delay: 0s; }
.global-menu__item--link.is-opened:nth-of-type(5) { transition-delay: 0.85s; }
.global-menu__item--link:nth-of-type(6) { transition-delay: 0s; }
.global-menu__item--link.is-opened:nth-of-type(6) { transition-delay: 0.9s; }

.shape-overlays {
	width: 100vw;
	height: 100vh;
	pointer-events: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9996;
}

.shape-overlays.is-opened {
	pointer-events: auto;
}

.shape-overlays__path:nth-of-type(1) { fill: var(--path-fill-1); }
.shape-overlays__path:nth-of-type(2) { fill: var(--path-fill-2); }
.shape-overlays__path:nth-of-type(3) { fill: var(--path-fill-3); }

@media screen and (max-width: 550px) {
	.global-menu__item { font-size: clamp(2rem, 4.5vh, 4.5rem); }
}

@media screen and (max-width: 1199px) {
    .global-menu__item { margin: 1.5vh 0; }
    .global-menu__header { font-size: 1.5vmax; }
}

.splitting .word,
.splitting .char { display: inline-block; }
.splitting .char { position: relative; }

/* ==========================================
   LOADER SEQUENCE SPECIFIC STYLES
   ========================================== */
#index-loader {
  position: fixed;
  display: block;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 9900;
  background-color: #fff;
}

#index-loader .index-logo {
  width: 5%;
  opacity: 0;
  display: block;
  position: absolute;
  top: 30%;
  left: 47.5%;
  will-change: transform, opacity, top;
}

#index-loader .loading-circle {
  transform: translate(-50%, -50%) scale(0);
  display: block;
  position: absolute;
  border-radius: 50%;
  top: 90%;
  left: 50%;
  width: 100%;
  height: auto;
  padding-top: 100%;
  background-color: #0f0f11;
  will-change: transform;
}

@media only screen and (max-width: 1023px) {
  #index-loader .loading-circle {
    width: 250%;
    padding-top: 250%;
  }
}

@media only screen and (max-width: 768px) {
  #index-loader .index-logo {
    width: 10%;
    left: 45%;
  }
}