
/*-- !!! TRIAL fonts --*/

@font-face {
  font-family: 'Domaine Sans Text';
  font-weight: normal;
  font-style: normal;
  src: url(/assets/2025/fonts/test-domaine-sans-text-medium.woff2);
}
@font-face {
  font-family: 'Domaine Sans Text';
  font-weight: bold;
  font-style: normal;
  src: url(/assets/2025/fonts/test-domaine-sans-text-bold.woff2);
}
@font-face {
  font-family: 'Feature Display';
  src: url(/assets/2025/fonts/FeatureDisplay-Regular-Trial.otf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Feature Display';
  src: url(/assets/2025/fonts/FeatureDisplay-RegularItalic-Trial.otf);
  font-weight: normal;
  font-style: italic;
}

/*-- main --*/

html{
	font-family: "Domaine Sans Text";
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
	color:#21211E;
	-webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    background-color: #9EC4B8;

}
body{
	-webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
}
body,
*{
	box-sizing:border-box;
	position: relative;
}
main{
	display:block;
	position:relative;
	width:100%;
	/*overflow-x:hidden;*/
}
button{
	border:none;
	background:transparent;
	margin:0;
	padding:0;
	text-decoration: none;
	outline:none;
}
a.skip-main {
    background-color: inherit;
    font-size: 0;
    text-decoration: none;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    width: 99%;
    transition: all .35s ease;
}
a.skip-main:focus {
    display: block;
    position: static;
    padding: 20px 50px;
    width: 100%;
    font-size: 28px;
    margin: 0px 0px 10px 0px;
}

figure{
	margin:0;
	padding:0;
	display:block;
	position: relative;
}
figure img{
	margin:0;
	padding:0;
	display:block;
	width:100%;
	max-width: none;
}
a{
	color:inherit;
	text-decoration: none;
	outline:none;
}


p{

	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 180%;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}


/* Fluid value from 568px to 768px viewport width */
@media screen and (min-width: 650px) {
  p {
    font-size: calc(14px + 8px * ((100vw - 650px) / (1600 - 650)));
  }
}
/* Fixed maximum value above the maximum breakpoint */
@media screen and (min-width: 1600px) {
  p {
    font-size: 22px;
  }
}

.text-center{
	text-align:center;
}
.bg-green{
	background-color: #9EC4B8;

}

.bg-paper{
	position: relative;
}
.bg-paper::after{
	content: "";
	background-image:url('/assets/2025/images/paper.jpg');
	background-size:cover;
	mix-blend-mode: multiply;
	position: absolute;
	z-index: 0;
	top:0;
	left:0;
	width:100%;
	height: 100%;
	pointer-events: none;
}
.text,
.relative{
	position:relative;
}
.text{
	z-index:2;
}
.bg-img{
	display:block;
	position: absolute;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	top:0;
	left:0;
	z-index:0;
	width:100%;
	height:100%;
}
figure.bg-img img{
	width:100%;
	height:100%;
	object-fit: cover;
}
.pad{
	padding:5.75vw;
}
.pad-more{
	padding:10.25vw 13.35vw;
}
.flex-wrap,
.flex-col{
	display: table;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap:wrap;
}
.reverse{
	flex-direction:row-reverse;
}
.flex-col{
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
}
.align-bottom{
	justify-content: flex-end;
}
.half{
	width:50%;
}
.fourth{
	width:25%;
}
.third{
	width:33.333%;
}

/*-- welcome --*/
header{
	position: fixed;
	top:0;
	left:0;
	right:0;
	padding:10px 30px;
	text-align:center;
	z-index: 3;
	width:100%;
	margin:0 0 0 auto;
	background-color: #9EC4B8;
	color:#21211E;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
header a{
	display: block;
}
header span{
	text-transform: uppercase;
	font-size: 1.35vw;
	font-weight: normal;
}
header a svg{
   width: 25vw;
    height: auto;
    max-width: 520px;
    min-width: 190px;
    transform: translateY(-3px);
}
h1{
	font-family: 'Montserrat';
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	color:#CFB8E9;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin:0 0 40px;
	z-index: 1;
}
#welcome{
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 1;
}
#welcome figure.bg-img{
	position: absolute;
	height: 100%;
	width:100%;
	/*border: 15px solid #DAC19C;*/
	top:0;
	left:0;
}
#welcome figure.bg-img::after {
    content: "";
    display: block;
    position: absolute;
    background: #00000085;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    mix-blend-mode: darken;
}
#welcome figure img{
	object-fit: cover;
	width:100%;
	height:100%;
}
#welcome svg#welcome-text{
	position: relative;
	z-index: 1;
	display:block;
	width:80%;
	height: auto;
	max-width:900px;
	min-width: 350px;
	
}
#welcome a.btn {
    color: white;
    padding: 0;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.5px;
    background: transparent;
    display: inline-block;
    transition: color 0.35s ease;
}
#welcome a.btn:hover,
#welcome a.btn:focus{
	/*color:#9EC4B8;*/
	transition: color 0.35s ease;
}
#welcome a.btn svg{
	display: block;
    margin: 10px auto 0;
    height: auto;
    fill: #F2F1EC;
    border: 1px solid;
    border-radius: 50px;
    padding: 3px 42px;
    width: 105px;
    transition: all 0.35s ease;
}
#welcome a.btn:hover svg,
#welcome a.btn:focus svg{
	border-color:#9EC4B8;
	background-color:#9EC4B8;
	transition: all 0.35s ease;
}

#welcome .align-bottom{
	padding:0 0 40px;
	position: absolute;
	bottom:0;
	left:0;
	right: 0;
}


/*-- Sight sound --*/
.bg-text{
	position: absolute;
	z-index: 0;
	font-family: "Feature Display";
	font-style:italic;
}
.bg-text h2 {
    margin: 0;
    font-size: 35.5vw;
    font-weight: 400;
    opacity: 0;
}

.bg-text h2 span:first-of-type {
    transform: translateY(-26%) translateX(-3vw);
}
.bg-text h2 span:last-of-type {
        transform: translateY(-35%) translateX(-14vw);
}
.bg-text span{
	display: block;

}
.overlap-images{
	padding: 12vw 0;
}
.overlap-images .half.flex-wrap{
	flex-wrap: nowrap;
	align-items: center;
}
.overlap-images .half.flex-wrap:first-of-type{
	flex-direction: row-reverse;
	z-index:1;
}
.overlap-images .half.flex-wrap:first-of-type{
	transform: translateX(4.5vw) translateY(0);
}
.overlap-images .half.flex-wrap:last-of-type{
	transform: translateX(-4.5vw) translateY(9vw);
}
.overlap-images .half.flex-wrap .img{
	width:75%;
	flex-grow: 1;

}
.overlap-images h3{
	color:#F2F1EC;
	margin:0;
	text-align: center;
	text-transform: uppercase;
	font-weight: bold;
	font-size:1vw;
	width: 25%;
}
.overlap-images .half.flex-wrap:first-of-type h3{
	margin:20px 0 0;
	transform: translateX(-20px);
}
.overlap-images .half.flex-wrap:last-of-type h3{
	margin:0px 0 0;
	transform: translateY(-40px) translateX(20px);
}
#scroll-content{
	overflow-x: hidden;
}
#scroll-content section{
	position: relative;
	overflow: visible;
}

/*-- calendar callout --*/
#calendar-callout{
	margin-top:80px;
}
#calendar-callout a.btn {
    padding: 0;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.5px;
    background: transparent;
    display: inline-block;
    transition: color 0.35s ease;
    color:#21211E;
}
#calendar-callout a.btn svg{
	fill:#21211E;
	display: block;
    margin: 10px auto 0;
    height: auto;
    border: 1px solid;
    border-radius: 50px;
    padding: 3px 42px;
    width: 105px;
    transition: all 0.35s ease;
}
#calendar-callout a.btn:hover svg,
#calendar-callout a.btn:focus svg{
	fill:#9EC4B8;
	border-color:#21211E;
	background-color:#21211E;
	transition: all 0.35s ease;
}
#calendar-callout #alchemy-text{
	fill:#21211E;
	width:75%;
	min-width: 280px;
	max-width: 550px;
	margin:30px 0;
	height: auto;
}


/*-- footer --*/
footer#reserve {
	position: relative;
    overflow: hidden;
}
footer figure{
	position: relative;
	height: 44vw;
}
footer figure img{
	height: 120%;
    object-fit: cover;
}
footer figcaption{
	z-index: 2;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 100%;
    text-align: center;
}
footer figcaption svg{
    min-width: 250px;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    right: initial;
    left: initial;
    top: initial;
    height: auto;
}
footer figcaption a {
    display: block;
    cursor: pointer;
}


/*-- video --*/

#fixed-video{
	overflow: visible;
	position:relative;
	/*flex-wrap:nowrap;*/
}
#video{
	/*overflow: hidden;*/
	display: block;
	width:30%;
	height:100vh;
	/*display: flex;
	flex-direction: column;
	align-items:center;
	justify-content: center;*/
	top:0;
	position: absolute;
	position: sticky;
    z-index: 2;
}
/*#video svg{
	height:auto;
	width:50px;
	position: absolute;
	z-index: 1;
}
#video svg path {
    fill: white;
}*/

#video video {
    width: 100%; 
    height: 100%;
    object-fit: cover;
}
#scroll-content{
	width:70%;
	z-index: 1;
	margin:0 0 0 auto;
}
.mobile-hero{
	display: none;
}
@media only screen and (max-width:767px) {
	#video,
	#scroll-content{
		width:100%;
	}
	#video{
		height:100vh;
		width:100%;
		position: relative;
		border:none;
		display:  block;
		top:0;
		left:0;
		z-index: 2;
	}
	#welcome figure {
	    display: none;
	}

	#welcome {
	   display: none;
	}
	header{
		width:100%;
		z-index: 5;
	}
	aside#video::after {
	    content: "";
	    background: rgb(0 0 0 / 50%);
	    position: absolute;
	    display: block;
	    height: 100%;
	    width: 100%;
	    z-index: 1;
	    top: 0;
	    left: 0;
	}
	.mobile-hero{
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		position: absolute;
		width: 100%;
		height: 100%;
		top:0;
		left: 0;
		z-index: 2;
	}
	.mobile-hero .svg-text{
		position: relative;
	    z-index: 1;
	    display: block;
	    width: 100%;
	    height: auto;
	    max-width: 900px;
	    min-width: 350px;
	}
	.mobile-hero .align-bottom{
	    padding: 0 0 40px;
	    position: absolute;
	    bottom: 0;
	    left: 0;
	    right: 0;
	    z-index: 1;
	}
	.mobile-hero .btn{
		color: white;
	    padding: 0;
	    text-transform: uppercase;
	    font-weight: 400;
	    font-size: 14px;
	    letter-spacing: 0.5px;
	    background: transparent;
	    display: inline-block;
	    transition: color 0.35s ease;
	}
	.mobile-hero .btn svg{
		display: block;
	    margin: 10px auto 0;
	    height: auto;
	    fill: #F2F1EC;
	    border: 1px solid;
	    border-radius: 50px;
	    padding: 3px 42px;
	    width: 105px;
	}
	#sight-sound{
		margin-bottom:80px;
	}
	#mind-spirit{
		margin-bottom:120px;
	}
	.bg-text h2 {
	    margin: 0;
	    font-size: 50vw;
	    font-weight: 400;
	}
	.overlap-images {
	    padding: 18vw 20px;
	}
	.bg-text h2 span:last-of-type {
	    transform: translateY(-40%) translateX(-12vw);
	}
	.overlap-images h3{
		    font-size: 1.75vw;
	}
	header span {
	    font-size: 11px;
	}

}

/*
@media only screen and (max-width:650px){
	#sight-sound,
	#mind-spirit{
		margin-bottom: 0;
	}
	#calendar-callout{
		margin-top:0;
	}
	.flex-wrap.overlap-images {
	    display: block;
	}

	.overlap-images h3 {
	    width: 45%;
	    font-size: 2.25vw;
	}

	.overlap-images .half.flex-wrap .img {
	    width: 55%;
	}

	.overlap-images .half.flex-wrap {
	    width: 100%;
	}

	.overlap-images .half.flex-wrap:first-of-type {
	    transform: translateX(0vw) translateY(0);
	}

	.overlap-images {
	    padding: 6vw 10vw;
	}

	.overlap-images .half.flex-wrap:last-of-type {
	    transform: translateX(0vw) translateY(0);
	    margin:-27vw 0 0;
	}

	.overlap-images .half.flex-wrap:first-of-type {
	    align-items: flex-start;
	}

	.overlap-images .half.flex-wrap:last-of-type {
	    align-items: flex-end;
	}

	.overlap-images .half.flex-wrap:first-of-type h3 {
	    margin: 110px 0 0 0;
	    text-align: right;
	}

	.overlap-images .half.flex-wrap:last-of-type h3 {
	    margin: -110px 0 0 0;
	    text-align: left;
	}
}
*/
@media only screen and (max-width:580px){
	
	.pad{
		padding:40px 30px;
	}
	
	footer figcaption svg{
		    width: 60%;
	}
	header a svg{
		   min-width: 170px;
	       transform: translateY(-5px);
	}
	header span {
        font-size: 8px;
    }
    footer figure {
	    height: 55vw;
	}
	footer figure img {
	    height: 140%;
	    top: 20%;
	}
	.bg-text h2 {
        font-size: 46vw;
    }
    .bg-text h2 span:first-of-type {
	    transform: translateY(-25%) translateX(10vw);
	}
   	.bg-text h2 span:last-of-type {
        transform: translateY(-25%) translateX(-14vw);
    }
    .overlap-images .half.flex-wrap:last-of-type h3 {
	    transform: translateY(-30px) translateX(10px);
	}
	.overlap-images .half.flex-wrap:first-of-type h3 {
	    transform: translateY(-0px) translateX(-10px);
	}
	#sight-sound .bg-text h2 span:last-of-type{
		font-size: 95%;
		transform: translateY(-25%) translateX(-18vw);
	}
	#calendar-callout a.btn svg,
	.mobile-hero .btn svg {
        padding: 5px 43px;
        width: 115px;
    }
    #calendar-callout a.btn,
    .mobile-hero .btn{
    	font-size: 15px;
    }
}
