:root {
    --is_black: #e1c0ae;
    --is_dark: #716e5b;
    --is_light: #fefefe;
}

*, body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@font-face {
    font-family: 'BodyFont';
    src: url("body.otf") format('opentype');
  }

@font-face {
    font-family: 'HeadingFont';
    src: url("heading.otf") format('opentype');
  }

html, body {
    height: 100%;
}

body {
    margin: 0;
    font-size: 16px;
    font-family: 'BodyFont';
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    display: none;
}

a {
    text-decoration: none;
    color: currentColor;
}

p.is_small {
    opacity: 0.75;
}

p.is_medium {
    font-size: 1.5rem;
}

p.is_huge {
    font-size: 3vw;
}

p.is_big, h2 {
    font-size: 2.5rem;
	font-family: 'HeadingFont';
}

p.is_quote {
    color: var(--is_dark);
    font-size: 1.5rem;
}

p.is_hours {
    margin-block-start: 0;
    margin-block-end: 0;
}

h1, h2, h3 {
    font-family: 'HeadingFont';
	font-weight: 300;
}

h1 {
    font-size:2rem;
    z-index:3
}

h1, h2 {
    margin: 0;
}

.is_light {
    background-color: var(--is_light);
    color: var(--is_dark);
    border-right: 1px solid var(--is_dark)
}

.is_dark {
    background-color: var(--is_dark);
    color: var(--is_light);
}

.is_black {
    background-color: var(--is_black);
    color: var(--is_light);
}

.noise {
    width: 100vw;
    height: 100vh;
    position: fixed;
    pointer-events: none;
    background: url("noise.gif") repeat;
    z-index: 9999;
    opacity: 0.04;
}

.site.is_wrap {
    margin-right: 5em;
}

.site.is_viewport {
    height: 300vh;
    position: relative;
}

.site.is_horizontal {
    display: flex;
    justify-content: flex-start;
    position: sticky;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    width: 100%;
}

.site.is_vertical {
    display: flex;
    flex-wrap: wrap;
    width: 100vw;
}

.site.is_track {
    position: relative;
    height: 100%;
    flex: 0 0 auto;
    transform: translate(0%, 0px);
}

.site.is_content {
    display: flex;
    height: 100%;
    margin-right: -100vw;
    justify-content: flex-start;
    align-items: stretch;
}

.site.is_title {
    position: fixed;
    height: 100vh;
    width: 100vw;
    font-size: 10vw;
    font-weight: 600;
    text-align: center;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header.is_wrap {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vh;
    transform: rotate(90deg) translate(100%);
    transform-origin: top right;
    text-align: right;
    z-index: 99;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid currentColor;
}

.header.is_book, .header.is_bottom, .header.is_items {
    padding: 2em;
}

.header.is_book {
    border-right: 1px solid currentColor;
    transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header.is_book:hover {
    background-color: var(--is_dark);
    color: var(--is_light);
    transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header.is_bottom {
    border-left: 1px solid currentColor;
}

.header.is_items {
    gap: 5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

section {
    height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    position: relative;
}

section.is_hero {
    height: 200vh;
    width: 100vw;
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    background-color: var(--is_light);
    border-bottom: 1px solid var(--is_dark);
    color: var(--is_dark);
}

section {
    margin-left: -1px;
}

section.is_full {
    width: 100vw;
}

section.is_third {
    width: 66vw;
}

section.is_half {
    width: 50vw;
}

section.is_load {
    background-color: var(--is_dark);
    color: var(--is_light);
    z-index: 7;
    position: relative;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    clip-path: inset(0);
}

.content {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    padding: 5rem;
}

.is_half {
    width: 50%;
}

.from_vertical {
    display: flex;
    flex-direction: column;
    height:auto;
    flex-shrink: 0;
    max-width: 50%;
}

.content.is_img {
    position: relative;
}

.contact.is_details {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    text-align: center;
} 


.title.is_wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-right: -10em;
}

.separator {
    width: 100%;
    height: 1px;
}

.cta {
    position: absolute;
    top: 0;
    right: 0;
    width: 100vh;
    transform: rotate(90deg) translate(100%);
    transform-origin: top right;
    text-align: center;
    z-index: 9;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    border-bottom: 1px solid currentColor;
    border-top: 1px solid currentColor;
}

.align-bottom, .space-between, .justify-center {
    display: flex;
    flex-direction: column;
}

.justify-center {
    justify-content: center;
    text-align: center;
}

.align-bottom {
    justify-content: flex-end;
}

.space-between {
    justify-content: space-between;
}

.is_center {
    align-items: center;
    text-align: center;
}

.is_left {
    text-align: left;
    padding-right: 20em;
}

.is_large {
    text-align: left;
    padding-right: 10em;
}

.is_boxed {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.is_sticky {
    position: sticky;
    top: 0;
    width: 50%;
    flex: 1;
}

.is_half.from_vertical, .is_sticky {
    flex-basis: 50%;
}

.is_1, .is_2, .is_3, .is_4, .is_5 {
    opacity: 0;
}

.img.is_cover {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    object-fit: cover;
    will-change: transform;
    height: 100vh;
    width: 150%;
}

.img.is_badge {
    position: absolute;
    z-index: 0;
    top: 50%;
    height: 56vh;
    width: 20vw;
    border-radius: 40em;
    overflow: hidden;
    transform: translateY(-50%);
    opacity: 0.5;
    box-shadow: 0px 0px 100px rgb(80 77 77);
	object-fit: cover;
}


.is_hero img {
    position: absolute;
}

.button.is_badge {
    position: absolute;
    z-index: 0;
    top: 50%;
    height: 20vw;
    width: 20vw;
    border-radius: 40em;
    overflow: hidden;
    transform: translateY(-50%);
    opacity: 1;
    box-shadow: 0px 0px 100px rgb(207 207 207 / 50%);
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
	background-color: #fefefe;
	color: #716e5b;
	font-family: 'HeadingFont';
}

.button.is_badge:hover {
    height: 22vw;
    width: 22vw;
    box-shadow: 0px 0px 100px rgb(207 207 207);
    font-size: 2.5em;
    transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.button.is_menu {
    height: 5em;
    width: 5em;
    border: solid 1px var(--is_dark);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.is_1 {
    width: 14%;
    margin-top: 130%;
    margin-left: -67%;
}

.is_2 {
    width: 27%;
    margin-top: 100%;
    margin-left: -8%;
}

.is_3 {
    width: 20%;
    margin-top: 135%;
    margin-left: 60%;
}

.is_4 {
    width: 14%;
    margin-top: 125%;
    margin-left: 43%;
}

.is_5 {
    width: 19%;
    margin-top: 73%;
    margin-left: -49%;
}

/* POPUP */
.popup.is_wrap {
    position: fixed;
    height: 100vh;
    width: calc(100vw - 5em);
    top:0;
    bottom:0;
    left:0;
    right:0;
    z-index:7;
}

.popup.is_content {
    height:100vh;
    padding:0rem;
    display: flex;
    flex-direction: column;
}

.popup.is_item {
    flex: 1 1 33.333%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 5rem;
    border-bottom: 1px solid var(--is_dark);
    gap: 1em;
}

.popup.is_item:hover {
    background-color: var(--is_dark);
    color: var(--is_light);
}

.popup.is_title {
    flex: 1 1 33.333%;
    padding: 2.5rem 5rem;
    font-size: 5vw;
	font-family: 'HeadingFont';
	font-weight: 300;
    text-transform: uppercase;
    border-bottom: 1px solid var(--is_dark)
}

.item.is_details {
    max-width: 50%;
}

.transition {
    position: fixed;
    height:100vh;
    width:100vw;
    z-index:8;
}

.is_mobile {
    display: none;
}


/* RESPONSIVE */

@media (max-width: 940px) {
	
	p.is_big, h2 {
		font-size: 2rem;
	}
	
	.cta.is_light {
		display:none;
	}
	
	.site.is_title {
		right: 1rem;
	}

    .popup.is_title {
        flex: 1;
        padding: 2.5rem;
    }

    .popup.is_item {
        padding: 2.5rem 5.5rem 2.5rem 2.5rem;
    }

    .item.is_details {
        max-width: 100%;
    }

    .popup.is_wrap {
        width: 100vw;
    }

    section {
        margin-left: 0;
    }

    .is_light {
        border-right: 0px;
    }

    .content {
        padding: 2.5rem;
    }

    .content.is_large {
        padding: 2.5rem 5.5rem 2.5rem 2.5rem;
    }
    .site.is_horizontal {
        position:relative;
        height: auto;
        width: 100vw;
    }
    .site.is_content {
        display: flex;
        height: 100%;
        margin-right: -100vw;
        justify-content: flex-start;
        align-items: stretch;
        flex-direction: column;
    }
    section.is_half, section.is_third {
        width: 100vw;
    }
    p.is_hours {
        font-size: 12px;
    }
    .is_left {
        padding-right: 5em;
    }
    .is_boxed {
        width: 100%;
    }
    .is_center {
        padding-right: 5em;
    }
    .img.is_badge {
        width: 50%;
    }
    .is_mobile {
        display: flex;
    }
    .button.is_badge {
        height: 50vw;
        width: 50vw;
    }
    .header.is_book, .header.is_bottom, .header.is_items {
        padding: 1rem;
    }
    
    .button.is_badge:hover {
        height: 40vw;
        width: 40vw;
    }
    .is_half {
        width: 100%;
        text-align: center;
    }
    .contact.is_details {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        text-align: center;
    }
    .separator {
        width: 100%;
        height: 1px;
        margin-top: 3em;
        margin-bottom: 3em;
    }
    .mobile.align_center {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
    }

}