/* RESET */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	background: #FDFBF2;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
body, html {
/*  height: 100%;*/
}
html {
  overflow-x: hidden; /* Prevent horizontal scrolling */
  overflow-y: auto; /* Allow vertical scrolling */
}

body {
  overflow: visible;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}
::selection {
    background: #FFE164;
    color: #212320;
}

/* GRID SETUP */
.start-1 {
	grid-column-start: 1;
}
.start-2 {
	grid-column-start: 2;
}
.start-3 {
	grid-column-start: 3;
}
.start-4 {
	grid-column-start: 4;
}
.start-5 {
	grid-column-start: 5;
}
.start-6 {
	grid-column-start: 6;
}
.start-7 {
	grid-column-start: 7;
}
.start-8 {
	grid-column-start: 8;
}
.start-9 {
	grid-column-start: 9;
}
.start-10{
	grid-column-start: 10;
}
.start-11 {
	grid-column-start: 11;
}
.start-12 {
	grid-column-start: 12;
}

.span-1 {
	grid-column-end: span 1;
}
.span-2 {
	grid-column-end: span 2;
}
.span-3 {
	grid-column-end: span 3;
}
.span-4 {
	grid-column-end: span 4;
}
.span-5 {
	grid-column-end: span 5;
}
.span-6 {
	grid-column-end: span 6;
}
.span-7 {
	grid-column-end: span 7;
}
.span-8 {
	grid-column-end: span 8;
}
.span-9 {
	grid-column-end: span 9;
}
.span-10 {
	grid-column-end: span 10;
}
.span-11 {
	grid-column-end: span 11;
}
.span-12 {
	grid-column-end: span 12;
}

.full-page {

  /* Full height */
  height: fit-content;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
	position: relative;
}

.top, .bot {
	color: white;
	position: absolute;
	font-size: 20vw;
	letter-spacing: -1.5vw;
	text-align: center;
	left: 0; right: 0; margin: auto;
}

.top {
	top: 8vw;
}

.bot {
	bottom: 12vw;
}

.full-text {
  position: absolute;
  left: 0;
  top: 0;
	bottom: 0;
	margin: auto;
	height: fit-content;
  width: 100%;
  text-align: center;
  color: white;
}

.rule {
	width: 3px;
	background: white;
	position: absolute;
	top: 0; bottom: 0; left: 0; right: 0;
	height: 65%;
	margin: auto;
	z-index: 1;
}

/* GLOBAL SETUP */
/* TYPE */
@font-face {
	font-family: 'Apercu';
	src: url('apercu-light.woff'),
	url('apercu-light.woff2') format('woff2'),
	url('apercu-light.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-stretch: normal;
}

@font-face {
	font-family: 'Apercu Mono';
	src: url('apercu-mono-regular.woff'),
	url('apercu-mono-regular.woff') format('woff2'),
	url('apercu-mono-regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-stretch: normal;
}
img, body {
	width: 100%;
}
img {
	border-radius: 10px;
}
.grid img {
/*	border-radius: 12px;*/
}
body {
	color: #212320;
}
.page-container {
	width: calc(100% - 4vw);
	margin: 0 auto;
}
.grid {
	display: grid;
	margin: 0;
	grid-auto-flow: row;
	grid-template-columns: repeat(12,1fr);
	grid-column-gap: 4vw;
}
.flex-center {
  align-items: center;
  justify-content: center;
}
.inline {
	display: inline;
}
.pad-top-lg {
	margin-top: 8vw;
}
.pad-bot-lg {
	margin-bottom: 8vw;
}
.pad-top-md {
	margin-top: 4vw;
}
.pad-top-sm {
	margin-top: 3vw;
}
.pad-top-xs {
	margin-top: 2vw;
}
.pad-top-xxs {
	margin-top: 1vw;
}
.pad-bot-md {
	padding-bottom: 4vw;
}
.pad-bot-sm {
	padding-bottom: 3vw;
}
.pad-bot-xs {
	padding-bottom: 2vw;
}
.center {
	text-align: center;
}
.right {
	text-align: right;
}
.float-right {
	float: right;
}
.sticky {
  position: -webkit-sticky; /* Safari */
  position: sticky;
	top: 8vw;
	height: fit-content;
}
.relative {
	position: relative;
}
.row, .border-top {
	border-top: 1px solid #2A2722;
}
.row p {
	padding: 1vw 0;
	width: 45%;
	display: inline-block;
	vertical-align: top;
}
.plans-offset {
   margin-left: -30vw;
}

.border-bot {
  border-bottom: 1px solid #2A272252;
	padding-bottom: 8vw;
}
.border-top-strong {
	border-top: 1px solid #2A2722;
	padding-top: .5vw;
	margin-top: .5vw;
}

/* TYPOGRAPHY */
h1, h2, p, button, form, input, a, h3 {
	font-family: "Apercu";
}
h1 {
	font-family: "Apercu";
}
form {
	height: 2.8vw;
	position: relative;
}
h1 {
  font-size: 11.7vw;
  letter-spacing: -.7vw;
	text-align: left;
  font-weight: 300;
}
.intro h1 {
	padding-top: 2.5vw;
	padding-bottom: 3vw;
}
.intro-container {
	position: relative;
} 
.spacer {
	height: 6vw;
	display: none;
}
.price {
	position: absolute;
  font-family: "Apercu";
  font-size: 3.75vw;
  background: #FFE164;
  padding: 2vw 3vw 2vw 2.5vw;
  border-radius: 100%;
  letter-spacing: 0;
  top: 10vw;
	font-weight: 200;
  right: -3vw;
  color: #2A2722;
  line-height: inherit;
	z-index: 2;
	rotate: 15deg;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
h2 {
	font-size: 3.3vw;
	    line-height: 4vw;
	font-weight: 300;
}
h3 {
	font-size: 1.78vw;
	line-height: 2.8vw;
}
p, button, form, input, a {
	font-size: 14px;
	line-height: 22px;
	font-family: "Apercu Mono";
}
p {
	color: #464944;
}
a {
	display: inline;
	padding-bottom: .25vw;
}
.link, .link:visited {
	color: #212320;
	border-bottom: 1px solid transparent;
	padding-bottom: 0;
	display: inline;
	text-transform: uppercase;
	letter-spacing: 0.075vw;
}
.link:hover {
	opacity: .6;
	transition: opacity .1s;
}
button, .button, .button:visited {
	width: -webkit-fill-available;
	background: #FFE164;
	color: #212320;
	border-radius: 100px;
	padding: .81vw 1.67vw;
	border: none;
	cursor: pointer;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.075vw;
}

.shopify-buy__btn, .shopify-buy__btn:hover {
	width: -webkit-fill-available !important;
	background-color: #FFE164 !important;
	color: #212320 !important;
	border-radius: 100px !important;
	padding: .81vw 1.67vw !important;
	border: none !important;
	cursor: pointer !important;
	text-decoration: none !important;
	text-transform: uppercase !important;
	letter-spacing: 0.075vw !important;
	font-family: "Apercu Mono" !important;
	width: 100% !important; 
}

.shopify-buy__btn:hover, .shopify-buy__btn:focus {
	background-color: #FFE164 !important;
	opacity: 0.5 !important;
}

.shopify-buy__layout-vertical .shopify-buy__btn, .shopify-buy__layout-vertical .shopify-buy__quantity-container, .shopify-buy__layout-horizontal .shopify-buy__btn, .shopify-buy__layout-horizontal .shopify-buy__quantity-container {
	margin-top: 0px !important;
}

#product-component-1685806887571 {
	max-width: -webkit-fill-available !important;
	font-family: "Apercu Mono" !important;
	margin-top: 18px;
}



input {
	width: 100%;
	    padding: 0.81vw 1.67vw;
	    background-color: transparent;
	    color: #212320;
	    border-radius: 12px;
	    border: none;
	    border-bottom: 1px solid #212320;
	    padding-bottom: 0.5vw;
	    border-radius: 0;
	    padding: 0 0 0.81vw 0;
	    left: 0;
	    border-radius: top;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
}
input:focus-visible {
  outline: none !important;
	border-bottom: 2px solid #212320;
  box-shadow: none;
}
input:-webkit-autofill::first-line {
	font-family: "Apercu Mono";
	font-size: 1vw;
	line-height: 1.6vw;
	color: #212320;
}
.white {
	color: white;
}
::placeholder {
  color: #212320;
	opacity: .5;
}
button, .button {
	transition: all 0.175s;
	display: inline-block;
}
button:hover, .button:hover {
	opacity: 0.75;
}
button:active, .button:active {
	opacity: 0.5;
}
.btn-link {
	background: transparent;
	color: #212320;
	border-radius: 0;
	padding: 0;
	border: none;
	cursor: pointer;
	text-decoration: none;
	position: absolute;
	right: 0;
	width: auto;
	
}
.btn-link:hover, .btn-link:active {
    background: transparent;
		color: #212320;
}
.upper {
	text-transform: uppercase;
	letter-spacing: 0.05vw;
}
.underline {
	text-decoration: none;
	border-bottom: 2px solid #212320;
	padding-bottom: .28vw;
	line-height: 2.4vw;
	letter-spacing: .1vw;
}
.upper {
	text-transform: uppercase;
	letter-spacing: 0.05vw;
}
.underline {
	text-decoration: none;
	border-bottom: 1px solid #212320;
	padding-bottom: .28vw;
	line-height: 2.4vw;
	letter-spacing: .1vw;
}
.link {
	text-decoration: none;
	display: block;
	border-bottom: 1px solid transparent;
	width: max-content;
	vertical-align: top;
}
.selected {
/*	border-bottom: 1px solid #0B4087 !important;*/
}
.nav .link {
	cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.075vw;
	width: 100%;
	font-size: 14px;
}
.nav {
	width: 100%;
  position: sticky;
  top: 0;
  z-index: 99;
  padding: 1.4vw 2vw 1.4vw 2vw;
  background: rgb(253 251 242);
  margin: auto;
  left: 0;
  right: 0;
  border-bottom: 1px solid #21232024;
  box-sizing: border-box;
  transition: all 0.2s cubic-bezier(0.33, 1, 0.68, 1);
} 
.logo {
	width: 4.5vw;
	vertical-align: bottom;
	letter-spacing: 0;
}
.nav-spacer {
	height: 4.75vw;
	display: none;
}
.center {
	text-align: center;
	display: block;
	width: 100%;
}
.logo, .preloader-text {
  font-size: 20px !important;
  font-family: "Apercu Mono";
	text-transform: uppercase;
	    letter-spacing: 0.05vw;
			font-weight: 100;
}
.preloader-text {
  font-size: 32px !important;
}

.shadow {
/*	border-bottom: none;*/
/*	box-shadow: rgb(0 0 0 / 2%) 0px 1px 1px 0px, rgb(0 0 0 / 3%) 0px 2px 2px 0px, rgb(0 0 0 / 2%) 0px 4px 4px 0px, rgb(0 0 0 / 2%) 0px 8px 8px 0px, rgb(0 0 0 / 2%) 0px 16px 16px 0px;*/
}
.full-bleed {
	position: relative;
	  background-image: url("imgs/big.jpg");

	  /* Full height */
	  height: 100%; 

	  /* Center and scale the image nicely */
	  background-position: center;
	  background-repeat: no-repeat;
	  background-size: cover;
		color: white;
}
.full-bleed img {
	width: 100%;
	height: 110%;
	border-radius: 0 !important;
}
.full-bleed h1 {
	position: absolute;
	    font-size: 10vw;
	    left: 0;
	    right: 0;
	    bottom: 3vw;
	    margin: auto;
	    display: table;
	    color: white;
	    letter-spacing: -0.25vw;
}
.line {
	width: 58%;
	    top: 5.65vw;
	    background: white;
	    height: 2px;
	    position: absolute;
	    left: -3vw;
	    right: 0;
	    margin: auto;
}
.chunk {
	padding: 4vw 0;
	background: transparent;
	color: #423E38;
	border-bottom: 1px solid #21232024;
	position: relative;
	margin-left: -4vw;
	margin-right: -4vw;
}
.chunk img {
	width: 132vw;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	height: fit-content;
}
.chunk, .full-bleed {
/*	overflow: hidden;*/
}
.full-nav h2, h2 {
	letter-spacing: -0.025vw;
}
.full-nav h2:first-of-type {
	position: absolute;
	left: 4vw;
	top: 3vw;
}
.full-nav h2:last-of-type {
	position: absolute;
	right: 4vw;
	top: 3vw;
}
.nav-spacer {
/*	height: 4.75vw;*/
}
input:-internal-autofill-selected {
  appearance: menulist-button;
  background-image: none !important;
  background-color: white !important;
  color: #2A2722 !important;
}
.desk-hide {
	display: none;
}
.mob-relative {
	margin-top: -7vw;
	position: relative;
}
.desk-foot {
/*	border-top: 1px solid #0B4087;*/
  padding: 4.46vw 4vw;
	background: #f3f2ee;
}
.color-bg {
/*	border-top: 1px solid #0B4087;*/
  padding: 8vw 4vw;
	background: #C1DBFF;
}
.header {
	border-bottom: 1px solid;
	padding-bottom: 1vw;
}
.desk-foot h2 {
  font-size: 2vw;
  text-transform: lowercase;
  letter-spacing: -.5px;
  font-size: 32px;
/*  font-weight: bold;*/
  line-height: inherit;
}
.about-footer {
	margin-top: 0;
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  visibility: hidden;
	transition: all 0.5s cubic-bezier(.645,.045,.355,1);
  will-change: opacity, visibility;
}
.fade-in.is-visible {
  opacity: 1;
  transform: none;
  visibility: visible;
}
body {
    animation: fadein 500ms ease 0s;
    -moz-animation: fadein 500ms ease 0s; /* Firefox */
    -webkit-animation: fadein 500ms ease 0s; /* Safari and Chrome */
    -o-animation: fadein 500ms ease 0s; /* Opera */
}
.noto {
	font-family: 'Noto Emoji', sans-serif;
}
.buy {
	text-align: center;
	cursor: not-allowed;
}
.accordion {
	color: #212320;
	background: none;
	border-radius: 0;
		padding: 20px 10px 20px 0;
	border-top: 1px solid #21232024;
	cursor: pointer;
	text-align: left;
	font-weight: normal;
}
.accordion:first-of-type {
	margin-top: 40px;
}
.arrow {
	width: 15px;
  float: right;
  padding-top: 6px;
	transition: all 0.2s cubic-bezier(0.2, 1, 0.6, 1);
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */


.panel {
  max-height: 0;
  overflow: hidden;
	transition: all 0.2s cubic-bezier(0.2, 1, 0.6, 1);
}

.panel p:last-of-type {
	padding-bottom: 20px;
}


.flip {
	transform: scaleY(-1);
	display: block;
}


.nav-two {
/*	background: #f7f5ef;*/
background: linear-gradient(180deg, #FDFBF2 0%, rgba(253, 251, 242, 0.991353) 6.67%, rgba(253, 251, 242, 0.96449) 13.33%, rgba(253, 251, 242, 0.91834) 20%, rgba(253, 251, 242, 0.852589) 26.67%, rgba(253, 251, 242, 0.768225) 33.33%, rgba(253, 251, 242, 0.668116) 40%, rgba(253, 251, 242, 0.557309) 46.67%, rgba(253, 251, 242, 0.442691) 53.33%, rgba(253, 251, 242, 0.331884) 60%, rgba(253, 251, 242, 0.231775) 66.67%, rgba(253, 251, 242, 0.147411) 73.33%, rgba(253, 251, 242, 0.0816599) 80%, rgba(253, 251, 242, 0.03551) 86.67%, rgba(253, 251, 242, 0.0086472) 93.33%, rgba(253, 251, 242, 0) 100%);
	color: #212320;
	padding: 1vw 4vw 1vw 4vw;
	border-bottom: none;
/*	border-bottom: 1px solid;*/
}

.nav-two .link {
	color: #212320 !important;
}


.text-dark {
	color: #212320 !important;
}

.text-white {
	color: white;
}

.show {
	transform: translateY(0vw);
	transition: transform 0.2s cubic-bezier(0.33, 1, 0.68, 1);
}

.hide {
	transform: translateY(-12vw);
	transition: transform 0.2s cubic-bezier(0.33, 1, 0.68, 1);
}

/* KEYFRAMES */
@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-moz-keyframes fadein { /* Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-o-keyframes fadein { /* Opera */
    from {
        opacity:0;
    }
    to {
        opacity: 1;
    }
}

.close, .menu {
	cursor: pointer !important;
}
.inline-block {
	display: inline-block;
}
.detail-container .noto {
	padding-right: .5vw;
}

.detail-container {
	padding-top: .5vw;
}
.detail-container:first-of-type {
	padding-top: 1vw;
}

.reserve input {
	border-radius: 100px;
	border: 1px solid;
padding: 0.81vw 1.67vw;
box-sizing: border-box;
}

video {
	width: 100%;
	display: none;
}

.box {
	box-shadow: rgb(0 0 0 / 2%) 0px 1px 1px 0px, rgb(0 0 0 / 3%) 0px 2px 2px 0px, rgb(0 0 0 / 2%) 0px 4px 4px 0px, rgb(0 0 0 / 2%) 0px 8px 8px 0px, rgb(0 0 0 / 2%) 0px 16px 16px 0px;
}

.intro h1 , .intro img, .price {
    opacity: 0;
    transform: translateY(-100px);
		transition: all cubic-bezier(0.08, 1, 0.33, 1) 1s;
    will-change: opacity, transform; /* Hint to the browser */
}

.price {
			transition: opacity cubic-bezier(0.08, 1, 0.33, 1) .9s;
			transition: transform cubic-bezier(0.08, 1, 0.66, 1) .9s;
}


/* Keyframe animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* Image animation (delayed by 0.5s) */
.intro img {
    opacity: 0;
/*    transform: translateY(100px);*/
/*    animation: fadeUp 1s cubic-bezier(0.08, 1, 0.33, 1) forwards;*/
    animation-delay: 1.1275s; /* Delay the image animation */
}

/* H1 animation (runs immediately) */
.intro h1 {
/*    animation: fadeUp 1s cubic-bezier(0.08, 1, 0.33, 1) forwards;*/
    animation-delay: 1.275s; /* Delay the image animation */
    font-size: 11.35vw;
    letter-spacing: -.5vw;
    text-align: left;
    font-weight: 300;
    margin-left: -1vw;
}


.fade-in {
    opacity: 0;
		transition: all cubic-bezier(0.6, 0.2, 0.1, 1) .5s;
}

.fade-in.is-visible {
    opacity: 1;
}



/* Image animation (delayed by 0.5s) */
.mob-anim2 {
    opacity: 1;
}

.img-container {
	position: relative;
}


/* Preloader styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
height: 100vh;
    background: #FFE164;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: #212320;
    z-index: 9999;
    transition: all cubic-bezier(0.6, 0.2, 0.1, 1) .6s;
		max-height: -webkit-fill-available;;
		min-height: -webkit-fill-available;
				touch-action: none;
}
/* Hide content initially */
.hidden {
    display: none;
}

.mob-anim1, .mob-anim2 {
	opacity: 0;
}

/* Image animation (delayed by 0.5s) */
.mob-anim2 {
    opacity: 0;
    transform: translateY(100px);
    animation: fadeUp 1s cubic-bezier(0.08, 1, 0.33, 1) forwards;
    animation-delay: 1s; /* Delay the image animation */
}

/* H1 animation (runs immediately) */
.mob-anim1 {
    animation: fadeUp 1s cubic-bezier(0.08, 1, 0.33, 1) forwards;
    animation-delay: 1.275s; /* Delay the image animation */
}

.menu-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
		visibility: hidden;
		height: 100dvh;
		min-height: -webkit-fill-available;
    z-index: 100;
    background: #FFE164;
	 	transition: all cubic-bezier(0.6, 0.2, 0.1, 1) .4s;
    transform: translateY(100%);
		touch-action: none;
}

.menu-sheet.active {
    transform: translateY(0);
		visibility: visible;
}

/* Initially hide links */
.menu-sheet a {
    opacity: 0;
    transform: translateY(20px);
		color: #212320;
}

/* Staggered animation */
.menu-sheet.active a {
    animation: fadeInUp 0.4s cubic-bezier(0.6, 0.2, 0.1, 1) forwards;
}

.menu-sheet.active a:nth-child(1) { animation-delay: 0.1s; }
.menu-sheet.active a:nth-child(2) { animation-delay: 0.2s; }
.menu-sheet.active a:nth-child(3) { animation-delay: 0.3s; }
.menu-sheet.active a:nth-child(4) { animation-delay: 0.4s; }
.menu-sheet.active a:nth-child(5) { animation-delay: 0.5s; }

/* Keyframes for the animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.disclaimer {
	width: 100%;
	left: 0; right: 0; top: 0;
	position: relative;
  background: #FFE164;
  color: #212320;
	text-align: center;
  font-size: 12px;
	padding: 10px 0;
  font-family: 'Apercu Mono';
}

.no-scroll {
	overflow-y: hidden !important;
}


.intro-move {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.logo-name {
	width: 12vw;
}

.pad-right {
	padding-right: 2vw;
}

.list-payment {
	display: flex;
	grid-gap: 8px;
	margin-top: 4vw;
	vertical-align: middle;
	font-family: "Apercu Mono";
	font-size: 12px;
}

.copyright {
  vertical-align: middle;
  position: relative;
  top: 6px;
	padding-left: 8px;
}

.about-2 {
	font-size: 7.7vw;
	    letter-spacing: -.25vw;
	    text-align: left;
	    font-weight: 300;
	    text-align: center;
}
.about h2 {
	
  font-size: 4.3vw;
  line-height: 5vw;
}

.pad-top-xxl {
	padding-top: 18vw;
}


/* MEDIA QUERY */
@media (min-width: 1800px) {
	p, button, form, input, a {
/*	    font-size: .88vw;
	    line-height: 1.46vw;*/
      font-size: .65vw;
      line-height: 1.15vw;
	}
	input:-webkit-autofill::first-line {
		font-size: .88vw;
		line-height: 1.46vw;
	}
	.pad-top-xs {
		margin-top: 1.4vw;
	}
	.pad-bot-xs {
		padding-bottom: 1.4vw;
	}
	.underline {
    font-size: 1vw;
    line-height: 2.2vw;
	}
	.nav {
		padding: .75vw 2vw .75vw;
	}
	.spacer {
		display: none;
		height: 5.25vw;
	}
/*	h2 {
    font-size: 2.4vw;
    line-height: 3.4vw;
	}
	h3 {
    font-size: 1.28vw;
    line-height: 1.8vw;
	}*/

}


/* MEDIA QUERY */
@media (max-width: 760px) {
	body::-webkit-scrollbar {
	    -webkit-appearance: none;
	    width: 0;
	    height: 0;
			cursor: pointer;
	}
	
	html, body {
/*		overflow: initial;
		overflow-x: hidden;*/
	}
	
	.mob-pad {
		margin-left: 4vw;
		margin-right: 4vw;
	}
	.mob-pad-caro {
		margin-left: 4vw;
	}
	.fade-in {
	  opacity: 1;
	  visibility: visible;
		transform: none;
	}
	.scrolls {
		overflow-x: scroll;
		overflow-y: hidden;
		white-space: nowrap;
	}
	.scrolls::-webkit-scrollbar {
    display: none;
}
	.scrolls img, video {
		display: inline;
		margin-right: 3vw;
		vertical-align: top;
		margin-top: 0;
		width: 85.5%;
	}
	.scrolls img:last-of-type {
		margin-right: 4vw;
	}
	.scrolls video:first-of-type {
		margin-left: 4vw;
	}

	.page-container {
			overflow: hidden;
			width: calc(100%);
	}
	.retain-grid {
		width: calc(100% - 8vw);
	}
	p, button, form, input, input:-webkit-autofill::first-line, .button, a {
    font-size: 12.5px;
    line-height: 1.5;
		font-weight: 300;
	}
	h1 {
    font-size: 12vw;
    line-height: 14vw;
     letter-spacing: -.1vw; 
    text-align: left;
    font-weight: 200;
	}
	h2, .desk-foot h2 {
    font-size: 38px;
    line-height: 1.2;
    text-align: left;
    margin: 0 auto;
	}
	.bold {
/*		opacity: .65;*/
	}
	h3 {
		font-size: 5.75vw;
		line-height: 7.75vw;
    text-align: left;
    letter-spacing: 0vw;
    margin: 0 auto;
	}
	.grid {
		grid-template-columns: repeat(1, 1fr);
		display: block;
	}
	.border-bot {
/*		border-bottom: 1px solid #D1CFC8;*/
	}
	.pad-top-lg {
		margin-top: 10.46vw;
	}
	.pad-bot-lg {
		margin-bottom: 10.46vw;
	}
	.pad-top-xs {
		margin-top: 6vw;
	}
	.pad-bot-xs {
		padding-bottom: 6vw;
	}
	.pad-top-sm {
		margin-top: 8vw;
	}
	.pad-top-md , .pad-top-lg {
	    margin-top: 10.46vw;
	}
.pad-bot-md {
    margin-bottom: 10.46vw;
}
	.border-bot, .mob-pad-sm {
		padding-bottom: 6vw;
	}
	button, input, .button, .btn-link {
		padding: 3.8vw 0;
	}
	button, .button {
		width: 100%;
		text-align: center;
		letter-spacing: 1px;
		font-weight: 200;
	}
	.sticky {
		position: static;
		overflow: hidden;
		margin-top: 10.46vw;
	}
	.right, .center {
		text-align: left;
	}
	.mob-center {
		text-align: center;
	}
	.mob-relative {
		position: relative;
		margin-top: 12vw;
	}
	button, .button {
		width: 100%;
		text-align: center;
	}
	input, .reserve input {
		padding: 3vw 0vw 3vw 6vw;
		width: -webkit-fill-available;
		margin-bottom: 2vw;
		margin-top: 4vw;
		border-bottom: none;
		border: 1px solid #21232052;
		border-radius: 100px;
	}
	input:focus, input:active {
		border: 1px solid;
	}
	.mob-hide {
		display: none !important;
	}
	.plans-offset {
	    margin-left: -20vw;
	}
	.desk-hide {
		display: block;
	}
	.desk-img {
    height: 100%;
    width: auto;
	}
	.foot {
	  height: fit-content;
	  border-top: 1px solid;
	  padding-top: 4vw;
	}
	.foot a {
		text-decoration: none !important;
		border-bottom: 0 !important;
	}
	.desk-foot {
		border-top: 1px solid;
		padding-top: 10.46vw;
		padding-bottom: 5.96vw;
	}
	.link {
	    margin-bottom: 4.5vw;
	}
	.border-bot {
		border-bottom: none;
		padding-bottom: 2vw;
/*		padding-bottom: 0;*/
	}
	.nav {
		width: 100%;
/*		border-bottom: 1px solid #0B4087;*/
	}
	.shadow {
		border-bottom: 0;
	}
	.nav .center {
		text-align: center !important;
	}
	.selected {
		border-bottom: none !important;
	}
	.nav-spacer {
		display: none;
	    height: 13.1vw;
			
	}
	.border-top-strong {
		border-top: 1px solid transparent;
	}
	.nav {
		padding: 4.2vw 0 4.2vw 0px;
		width: 100%;
		background: #FDFBF2;
/*		background: linear-gradient(180deg, #FDFBF2 0%, rgba(253, 251, 242, 0.991353) 6.67%, rgba(253, 251, 242, 0.96449) 13.33%, rgba(253, 251, 242, 0.91834) 20%, rgba(253, 251, 242, 0.852589) 26.67%, rgba(253, 251, 242, 0.768225) 33.33%, rgba(253, 251, 242, 0.668116) 40%, rgba(253, 251, 242, 0.557309) 46.67%, rgba(253, 251, 242, 0.442691) 53.33%, rgba(253, 251, 242, 0.331884) 60%, rgba(253, 251, 242, 0.231775) 66.67%, rgba(253, 251, 242, 0.147411) 73.33%, rgba(253, 251, 242, 0.0816599) 80%, rgba(253, 251, 242, 0.03551) 86.67%, rgba(253, 251, 242, 0.0086472) 93.33%, rgba(253, 251, 242, 0) 100%);*/
	}
	.nav-two {
		display: block !important;
		transform: translateY(0) !important;
		position: fixed !important;
	}
	.nav .link {
		letter-spacing: 0.125vw;
	  font-size: 4.25vw !important;
		line-height: 6vw;
	  left: 0;
	  right: 0;
	  margin: auto;
	  display: block;
		width: fit-content;
	  text-align: center;
		letter-spacing: 0;
	}
	.menu {
		width: 100%;
		height: auto;
		position: absolute;
	}
	.menu-btn {
		left: 4vw;
		top: 3.5vw;
    width: 9.25vw;
		height: 7.25vw;
		cursor: pointer;
		position: absolute;
	}
	.close {
		position: absolute;
		left: 3vw;
		    top: 3vw;
		    width: 11vw;
		cursor: pointer;
	}


	.btn-link {
		position: static;
		color: white;
		background: #212320;
		width: -webkit-fill-available;
		border-radius: 100px;
	}
	.move-up {
		display: block;
	}
	.pad-top-xl {
		margin-top: 20vw;
	}
	.menu-sheet p {
		position: fixed;
		bottom: 4vw;
		left: 4vw;
		display: none;
	}
	form, input {
		height: auto;
		position: static;
		width: -webkit-fill-available;
	}
	form:last-of-type {
				margin-bottom: 10.46vw;
	}
	.btn-link:hover, .btn-link:active {
	    background: #212320;
			color: white;
			opacity: .5;
	}
	.detail-container p {
		width: 80%;
		vertical-align: top;
	}
	.detail-container:first-of-type {
		padding-top: 6vw;
	}
	.detail-container {
		padding-top: 3vw;
	}
	.detail-container .noto {
		padding: 2vw 3vw 0 0;
	}
	.desk-foot {
		padding-left: 4vw;
		padding-right: 4vw;
		border-top: 0;
	}
	.chunk {
	  background: transparent;
	  color: #423E38;
	  position: relative;
	  color: #212320;
		border-bottom: none;
		margin-top: 10.46vw;
		padding: 0;

	}
	.chunk img {
		width: 300vw;
	}
	.chunk h2 {
		font-size: 15vw;
		        line-height: 15vw;
		        letter-spacing: -0.2vw;
		text-align: center;
	}

	.full-bleed h1 {
		position: absolute;
		    font-size: 22vw;
		    line-height: 21vw;
		    left: 4vw;
		    right: 0;
		    bottom: 8vw;
		    margin: auto;
		    display: table;
		    color: white;
		    letter-spacing: -.5vw;
		    text-align: left;
		    font-weight: 100;
	}
	.price {
		display: none;
	}
	.hide {
    transform: translateY(-18vw);
    transition: transform 0.2s cubic-bezier(0.33, 1, 0.68, 1);
	}
	.line {
		width: 22%;
		    top: 8vw;
		    background: white;
		    height: 2px;
		    position: absolute;
		    left: -9vw;
		    right: 0;
		    margin: auto;
	}
	.grid img, video {
/*		border-radius: 12px;*/
	}
	.desk-foot {
		margin-bottom: 0px !important;
	}
	.accordion:first-of-type {
		margin-top: 12vw;
	}
	.accordion {
		padding: 20px 10px 20px 0;
	}
	.accordion:last-of-type {
		padding: 20px 10px 0 0;
	}
	.bold {
		padding-bottom: 3vw;
	}
	/* Prevent the default focus and active states */
	.accordion:focus,
	.accordion:active {
	    outline: none;   /* Remove the outline on focus */
	    background: none; /* Remove the background change on active */
	    box-shadow: none;  /* Remove any box-shadow */
	}
	button:hover, .button:hover {
	    opacity: 1;
	}
	/* Prevent tap highlight on mobile Safari */
	button, .accordion {
	    -webkit-tap-highlight-color: transparent; /* Disable tap highlight */
	}
	.accordion:active {
		opacity: .6;
	}
	
	.slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    list-style-type: none;
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    right: 0;
	}
	li {
		margin: 0 0.25rem;
	}

	.slick button {
		display: block;
		width: .75rem;
		height: .75rem;
		padding: 0;

		border: 1px solid white;
		border-radius: 100%;
		background-color: transparent;
	
		text-indent: -9999px;
	}

	li.slick-active button {
		background-color: white;
	}
	
	.slick img, .slick video {
		margin-top: 0 !important;
		margin-right: 0;
	}
	
	
/*	.slick > .slide:not(:first-child) {
	    display: none;
	}
	.slick > .slide:first-child {
	    padding: 0 20px;
	}*/
	
	.panel:last-of-type {
		padding-top: 20px;
	}
	img {
		border-radius: 0;
	}
	.menu-sheet h1 {
		font-size: 9vw;
    line-height: 13vw;
    letter-spacing: 0;
    text-align: left;
    font-weight: 200;
    text-align: center;
    width: 100%;
    display: block;
		margin-left: 0;
		margin-right: 0;
		letter-spacing: .25vw;
	}
	.menu-sheet a {
		display: block;
		width: 100%;
	}
	.link-container {
    position: inherit;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: max-content;
    height: max-content;
    margin: auto;
	}

	/* Image animation (delayed by 0.5s) */
	.mob-anim2 {
	    opacity: 0;
	    transform: translateY(100px);
	    animation: fadeUp 1s cubic-bezier(0.08, 1, 0.33, 1) forwards;
	    animation-delay: .75s; /* Delay the image animation */
	}

	/* H1 animation (runs immediately) */
	.mob-anim1 {
	    animation: fadeUp 1s cubic-bezier(0.08, 1, 0.33, 1) forwards;
	    animation-delay: .95s; /* Delay the image animation */
	}
	.about h2, .assembly h2 {
    font-size: 7vw;
    line-height: 8.75vw;
	}
	
	html, body {
	    touch-action: auto;
	    min-height: 100%;
	    height: 100%; /* Set to 100% to ensure full-page scrolling */
	    overflow-x: hidden; /* Prevent horizontal scrolling */
	    overflow-y: auto; /* Allow vertical scrolling */
	    -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
	}

	body {
	    position: relative; /* Allows positioning of sticky elements */
	}
	
	.preloader-text {
		font-size: 26px !important;
	}
	.mob-adjust {
/*		margin-top: 13.5vw;*/
	}
	.pad-right {
		padding-right: 0;
	}
	.list-payment {
		display: none;
	}
}


