@charset "UTF-8";

:root{
	--paper: #f4ecdc;
	--paper-soft: #ede2cc;
	--paper-deep: #d8c8a8;
	--ink: #1a1410;
	--ink-soft: #4a3f2a;
	--ink-faded: #7d6e52;
	--ink-pencil: #a89889;
	--accent-deep: #1a3050;
	--base: #2c4a6e;
	--point: #4a6fa5;
	--deep: var(--accent-deep);
	--sub: var(--paper);
	--ink2: var(--ink);
	--line: #b8a07c;
	--font-hand: "Klee One","Hiragino Mincho ProN","Yu Mincho",serif;
	--shadow: 0 8px 20px rgba(40, 25, 10, .18);
	--shadow2: 0 18px 44px rgba(40, 25, 10, .22);
	--max2: 45rem;
}
body{
	color: var(--ink-soft);
	background: var(--paper);
	font-family: "Noto Sans JP","Hiragino Sans","Hiragino Kaku Gothic ProN","Yu Gothic","Meiryo",sans-serif;
	font-weight: 400;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	line-height: 1.6;
}
body::before{
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 1;
	background-image: radial-gradient(rgba(60,45,30,.04) 1px, transparent 1px);
	background-size: 3px 3px;
	mix-blend-mode: screen;
}


/* common */

.commonWrap{
	max-width: var(--max2);
	margin: auto;
	padding: 0 3.72vw;
}
.commonSection{
	padding: 16vw 0;
}
.t-center{
	text-align: center;
}
.lineTop{
	border-top: 0.23vw solid var(--line);
}
.lineBottom{
	border-bottom: 0.23vw solid var(--line);
}
.bgGR{
	background: var(--paper-soft);
}
.commonTtl{
	margin: 0 0 11.16vw;
	text-align: center;
}
.commonTtl h3{
	display: block;
	margin: 0 0 1.86vw;
	color: var(--point);
	font-weight: 700;
	font-size: 2.79vw;
	letter-spacing: 0.4em;
	text-transform: uppercase;
}
.commonTtl h2{
	margin: 0.93vw 0 3.72vw;
	font-family: var(--font-hand);
	font-weight: 600;
	letter-spacing: 0.18em;
	font-size: 6.98vw;
	color: var(--ink2);
}
.commonTtl p{
	width: 14.88vw;
	height: 1.40vw;
	margin: 0 auto;
	background: var(--base);
}
.commonTtlSub{
	margin: 0 0 9.30vw;
	text-align: center;
}
.commonTtlSub h4{
	display: block;
	margin: 0 0 1.86vw;
	color: #9ca3af;
	font-weight: 800;
	font-size: 2.33vw;
	letter-spacing: 0.4em;
	text-transform: uppercase;
}
.commonTtlSub h3{
	margin: 0;
	font-weight: 900;
}
.commonBtn,
.commonBtn_muted{
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80vw;
	gap: 2.98vw;
	padding: 6.25vw 0;
	color: var(--ink2);
	text-decoration: none;
	border: 0;
	font-weight: 900;
	letter-spacing: 0.15em;
	font-size: 4.2vw;
	line-height: 1;
	transition: 0.25s ease;
}
.commonBtn_muted{
	background: #9CA3AF;
}
.commonBtn_muted small{
	font-size: 0.6em;
	font-weight: 500;
	letter-spacing: 0.1em;
	margin-left: -3.72vw;
}
.commonBtn{
	cursor: pointer;
	background: var(--base);
}
.commonBtn::before,
.commonBtn_muted::before{
	content: "";
	position: absolute;
	inset: 0.93vw;
	border: 0.2vw solid rgba(255,255,255,0.8);
}
@media screen and (min-width: 516px){
	.commonWrap{
		padding: 0 1rem;
	}
	.commonSection{
		padding: 5.5rem 0 5.81rem;
	}
	.lineTop{
		border-top: 1px solid var(--line);
	}
	.lineBottom{
		border-bottom: 1px solid var(--line);
	}
	.commonTtl{
		margin: 0 0 3rem;
	}
	.commonTtl h3{
		margin: 0 0 0.5rem;
		font-size: 12px;
	}
	.commonTtl h2{
		margin: 0.25rem 0 1rem;
		font-size: 1.875rem;
	}
	.commonTtl p{
		width: 4rem;
		height: 0.375rem;
	}
	.commonTtlSub{
		margin: 0 0 2.5rem;
	}
	.commonTtlSub h4{
		margin: 0 0 0.5rem;
		font-size: 10px;
	}
	.commonBtn,
	.commonBtn_muted{
		max-width: 23rem;
		gap: 0.8rem;
		font-size: 1.1rem;
    padding: 1.75rem 0;
	}
	.commonBtn_muted small{
		margin-left: -1rem;
	}
	.commonBtn::before,
	.commonBtn_muted::before{
		inset: 0.25rem;
		border: 0.05rem solid var(--ink2);
	}
	.commonBtn:hover{
		background: var(--deep);
	}
	.commonBtn:active{
		transform: scale(0.96);
	}
}


/* mainVisual */

.mainVisualWrap{
	position: relative;
	display: grid;
	place-items: center;
	min-height: 95vh;
	background:	radial-gradient(ellipse at 50% 28%, rgba(255,248,232,.52) 0%, rgba(255,248,232,.18) 36%, transparent 68%), linear-gradient(180deg, var(--paper-deep) 0%, var(--paper) 100%);
	overflow: hidden;
}
.mainVisual{position: absolute;
	top: 48%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
}
.mvStage{
	position: relative;
	width: 100%;
	margin: 0 auto;
	display: grid;
	place-items: center;
	min-height: 72vh;
}
.mvComposite{
	position: relative;
	aspect-ratio: 2/3;
	max-height: 72vh;
	margin-inline: auto;
	width: 82vw;
	background: transparent;
	z-index: 2;
	isolation: isolate;
}
.mvNote{
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	aspect-ratio: 850/1311;
	display: block;
	z-index: 1;
	transform: translateZ(0);
	backface-visibility: hidden;
	will-change: filter;
	filter:
		drop-shadow(0 18px 34px rgba(40,25,10,.24))
		drop-shadow(0 5px 10px rgba(40,25,10,.16));
}
.mvIntroTextVertical{
	position: absolute;
	top: 47%;
	left: 50%;
	z-index: 4;
	width: 70%;
	height: 74%;
	transform: translate(-50%,-50%);
	pointer-events: none;
	animation: introTextBleedOut 2.05s cubic-bezier(.22,.61,.36,1) 5s forwards;
}
.mvIntroCol{
	position: absolute;
	top: 6%;
	display: block;
	white-space: nowrap;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	font-family: var(--font-hand);
	font-weight: 600;
	font-size: 3.8vw;
	line-height: 1.55;
	letter-spacing: .075em;
	color: rgba(26,20,16,.92);
	text-shadow: 0 1px 0 rgba(255,248,232,.38), 0 0 1px rgba(26,20,16,.2);
	opacity: 0;
	filter: blur(2px);
	clip-path: inset(0 0 100% 0);
	animation: introVerticalInk 1.05s cubic-bezier(.19,1,.22,1) forwards;
}
.mvIntroCol1{
	right: 10%;
	animation-delay: .55s;
}
.mvIntroCol2{
	right: 29%;
	top: calc(6% + 1.5em);
	animation-delay: 1.35s;
}
.mvIntroCol3{
	left: 30%;
	top: calc(6% + 5em);
	animation-delay: 2.75s;
}
.mvIntroCol4{
	left: 11%;
	top: calc(6% + 7.5em);
	animation-delay: 3.6s;
}
@keyframes introVerticalInk{
	0%{
		opacity: 0;
		filter: blur(2px);
		clip-path: inset(0 0 100% 0);
	}
	35%{
		opacity: .78;
	}
	100%{
		opacity: 1;
		filter: blur(0);
		clip-path: inset(0 0 0 0);
	}
}
@keyframes introTextBleedOut{
	0%{
		opacity: 1;
		filter: blur(0);
	}
	35%{
		opacity: .82;
		filter: blur(.45px);
	}
	70%{
		opacity: .4;
		filter: blur(1.6px);
	}
	100%{
		opacity: 0;
		filter: blur(3px);
	}
}
.mvLogo{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 49%;
	transform: translate(-50%,-50%);
	z-index: 3;
	opacity: 0;
	mix-blend-mode: multiply;
	filter: drop-shadow(0 1px 3px rgba(40,25,10,.10)) blur(7px);
	animation: logoEmerge 1.7s cubic-bezier(.22,.61,.36,1) 7.5s forwards,
	logoFloat 9s ease-in-out 9.5s infinite;
}
@keyframes logoEmerge{
	0%{
		opacity: 0;
		filter: drop-shadow(0 0 0 transparent) blur(7px);
		transform: translate(-50%,-50%) scale(.98);
	}
	100%{
		opacity: .84;
		filter: drop-shadow(0 1px 3px rgba(40,25,10,.10)) blur(0);
		transform: translate(-50%,-50%) scale(1);
	}
}
@keyframes logoFloat{
	0%,100%{
		transform: translate(-50%,-50%);
	}
	50%{
		transform: translate(-50%,-51%);
	}
}
.mvGlow{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 56%;
	aspect-ratio: 1/1;
	background: radial-gradient(circle, rgba(255,246,224,.24) 0%, rgba(255,246,224,.05) 42%, transparent 72%);
	z-index: 2;
	opacity: 0;
	animation: glowFade 1.7s ease-out 7.5s forwards,
	glowPulse 5s ease-in-out 9.5s infinite;
	mix-blend-mode: screen;
	pointer-events: none;
}
@keyframes glowFade{
	0%{
		opacity: 0;
	}
	100%{
		opacity: .78;
	}
}
@keyframes glowPulse{
	0%,100%{
		opacity: .68;
	}
	50%{
		opacity: .9;
	}
}

.scrollDownWrap{
	margin-top: 1.1rem;
	text-align: center;
}
.scrollDown{
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: .55rem;
	color: rgba(74,63,42,.76);
	font-size: .68rem;
	font-weight: 500;
	letter-spacing: .28em;
	text-indent: .28em;
	text-transform: uppercase;
	opacity: 0;
	animation: scrollDownFade 1.2s ease 8.95s forwards;
}
.scrollDown::after{
	content: "";
	width: 1px;
	height: 2.2rem;
	background: linear-gradient(180deg, rgba(74,63,42,.15) 0%, rgba(74,63,42,.7) 100%);
	transform-origin: top center;
	animation: scrollLinePulse 2.2s ease-in-out 5.8s infinite;
}
@keyframes scrollDownFade{
	from{
		opacity: 0;
		transform: translateY(6px);
	}
	to{
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes scrollLinePulse{
	0%,100%{
		transform: scaleY(1);
		opacity: .7;
	}
	50%{
		transform: scaleY(.72);
		opacity: 1;
	}
}
@media screen and (min-width: 516px){
	.mainVisualWrap{
		min-height: 100vh;
	}
	.mainVisual{
		top: 48%;
		max-width: 32rem;
	}
	.mvComposite{
		width: 26rem;
		max-height: none;
	}
	.mvIntroCol{
		font-size: 1.2rem;
	}
	.scrollDownWrap{
		margin-top: 1.5rem;
	}
	.scrollDown{
		font-size: 0.75rem;
	}
}


/* story */

.storyWrap{
	margin-top: -18vw;
	padding-bottom: 7vw;
	text-align: center;
}
.storyHead{
	margin: 0 0 4.5vw;
	text-align: center;
	font-family: var(--font-hand);
	font-weight: 600;
}
.storyHead h2{
	font-size: 4vw;
	color: var(--base);
	font-weight: 600;
	letter-spacing: 0.4em;
	margin-bottom: 0.8vw;
}
.storyHead h1{
	font-size: 10.5vw;
	letter-spacing: 0.12em;
	color: var(--ink-soft);
	line-height: 1.2;
}
.storyWrap h4{
	font-family: var(--font-hand);
	color: var(--ink-soft);
	font-weight: 400;
	font-size: 4vw;
	letter-spacing: 0.06em;
	line-height: 1.9;
}
.storyWrap h5{
	margin: 5vw auto 11vw;
	width: 85vw;
	padding: 2.5vw;
	background: rgba(253,250,242,.34);
	color: var(--base);
	border: 1px solid var(--base);
	font-size: 3.25vw;
	font-weight: 400;
	letter-spacing: 0.3em;
	line-height: 1.7;
}
.storyBody{
	font-family: var(--font-hand);
	width: 85vw;
	margin: 0 auto;
	font-size: 3.65vw;
	font-weight: 600;
	line-height: 2.7;
	letter-spacing: 0.08em;
	color: var(--ink);
	text-align: center;
}
.storyBody p:not(:last-of-type){
	margin-bottom: 6vw;
}
.detailList{
	margin: 15vw auto 0;
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	gap: 2.25vw;
	width: 100%;
}
.detailList li{
	--size: 27vw;
	line-height: 4.47vw;
	background: var(--base);
	align-items: center;
	justify-content: center;
	display: inline-flex;
	flex-direction: column;
	color: var(--base);
	width: var(--size);
	height: var(--size);
	background: rgba(253,250,242,.34);
	border: 1px solid rgba(74,63,42,.22);
	position: relative;
}
.detailList li::before{
	content: "";
	position: absolute;
	inset: 1vw;
	border: 1px solid rgba(44,74,110,.18);
	pointer-events: none;
}
.detailList li svg{
	width: 6vw;
	height: 6vw;
	stroke-width: 1.85;
	opacity: .9;
	margin-bottom: 2vw;
}
.detailList li h3{
	font-size: 2.75vw;
	font-weight: 800;
	letter-spacing: 0.04em;
}
.detailList li span{
	font-size: 3.4vw;
	font-weight: 800;
	letter-spacing: 0.06em;
}
.detailList li img{
	width: 8.60vw;
	padding-bottom: 1.16vw;
}
@media screen and (min-width: 516px){
	.storyWrap{
		margin-top: -5.5rem;
		padding-bottom: 2rem;
	}
	.storyHead{
		margin: 0 0 1.5rem;
	}
	.storyHead h2{
		font-size: 1.2rem;
		margin-bottom: 0.25rem;
	}
	.storyHead h1{
		font-size: 3.5rem;
	}
	.storyWrap h4{
		font-size: 1.25rem;
	}
	.storyWrap h5{
		margin: 1.5rem auto 3rem;
		width: 32rem;
		padding: 0.9rem;
		font-size: 1rem;
	}
	.storyBody{
		width: 32rem;
		font-size: 1rem;
	}
	.storyBody p:not(:last-of-type){
		margin-bottom: 1.75rem;
	}
	.detailList{
		margin: 4rem auto 0;
		gap: 0.75rem;
	}
	.detailList li{
		--size: 9rem;
		line-height: 1.3rem;
	}
	.detailList li::before{
		inset: 0.3rem;
	}
	.detailList li svg{
		width: 1.8rem;
		height: 1.8rem;
		margin-bottom: 0.6rem;
	}
	.detailList li h3{
		font-size: 0.9rem;
	}
	.detailList li span{
		font-size: 1.1rem;
	}
	.detailList li img{
		width: 2.5rem;
		padding-bottom: 0.35rem;
	}
}


/* howto */

.productFigure{
	width: 95%;
	margin: 0 auto 1vw;
}
.productFigure img{
	display: block;
	width: 100%;
	height: auto;
	box-shadow:
		0 1px 0 rgba(255,255,255,.35) inset,
		0 0.35rem 0.7rem rgba(40,25,10,.10),
		0 1rem 2rem rgba(40,25,10,.14);
}
.howto{
	max-width: 36rem;
	width: 85vw;
	margin: 0 auto;
	font-family: var(--font-hand);
}
.howtoTimeline{
	position: relative;
	margin: 0 auto;
	padding: 1.5rem 0 3.5rem;
}
.howtoTimeline::before{
	content: "";
	position: absolute;
	left: 1.5rem;
	top: .75rem;
	bottom: .75rem;
	width: 1px;
	background: linear-gradient(180deg,	transparent 0%,	var(--base) 6%,	var(--base) 94%, transparent 100%);
	opacity: .45;
}
.howtoTimeline li{
	position: relative;
}
.howtoPhase{
	display: flex;
	align-items: baseline;
	gap: 1rem;
	padding: 1rem 0 1.25rem 4.5rem;
}
.howtoPhase::after{
	content: "";
	position: absolute;
	left: 1.25rem;
	top: 50%;
	transform: translate(-0%,-50%);
	width: .55rem;
	height: .55rem;
	background: var(--paper);
	border: 1px solid var(--base);
	border-radius: 50%;
	z-index: 1;
}
.howtoPhase::before{
	content: "";
	position: absolute;
	left: 2rem;
	top: 50%;
	width: 1.5rem;
	height: 1px;
	background: var(--base);
	opacity: .5;
}
.howtoPhase strong{
	font-size: 5.5vw;
	font-weight: 600;
	color: var(--ink);
	letter-spacing: .15em;
}
.howtoStep{
	padding: .7rem 0 .7rem 4.5rem;
	min-height: 2.75rem;
	display: flex;
	align-items: center;
	transition: .3s ease;
}
.howtoBadge{
	position: absolute;
	left: .375rem;
	top: 50%;
	transform: translateY(-50%);
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	background: var(--paper);
	border: 1px solid var(--base);
	display: grid;
	place-items: center;
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .05em;
	color: var(--base);
	z-index: 1;
	transition: .3s ease;
}
.howtoBadge::before{
	content: "";
	position: absolute;
	inset: 3px;
	border: 1px solid rgba(44,74,110,.25);
	border-radius: 50%;
}
.howtoBody{
	display: flex;
	flex-direction: column;
	gap: .15rem;
}
.howtoBody h5{
	font-weight: 600;
	font-size: 1rem;
	letter-spacing: .03em;
	line-height: 1.5;
	color: var(--ink);
}
.howtoEn{
	font-size: 9px;
	font-weight: 500;
	letter-spacing: .3em;
	color: var(--ink-pencil);
	text-transform: uppercase;
}
@media screen and (min-width: 516px){
	.howto{
		width: 100%;
	}
	.howtoTimeline{
		padding: 1rem 0 2.5rem;
	}
	.howtoTimeline::before{
		left: 1.5rem;
		top: 0.75rem;
		bottom: 0.75rem;
	}
	.howtoPhase{
		gap: 1rem;
		padding: 1rem 0 1.25rem 4.5rem;
	}
	.howtoPhase strong{
		font-size: 1.6rem;
	}
}

/* outline */

.outlineInner{
	padding: 0 5vw;
	max-width: var(--max2);
	margin: 0 auto;
}
.outlineList{
	font-family: var(--font-hand);
	padding: 0 3.72vw;
}
.outlineList div{
	display: grid;
	gap: 1.86vw;
	padding: 4.47vw 0;
	color: var(--ink);
}
.outlineList div:last-of-type{
	padding-bottom: 0;
}
.outlineList dt{
	display: flex;
	align-items: center;
	gap: 3vw;
	font-size: 4.25vw;
	font-weight: 600;
	letter-spacing: 0.1em;
	color: var(--point);
}
.outlineList dt svg{
	color: var(--point);
	stroke-width: 1.4;
}
.outlineList dd{
	font-size: 3.7vw;
	line-height: 1.8;
	font-weight: 600;
	letter-spacing: 0.05em;
}
.outlineList dd a{
	color: var(--point);
}
.outlineList span{
	margin: 5.58vw 0 0;
	font-size: 3.1vw;
	letter-spacing: 0.12em;
}
.reservationFigure img{
	width: 100%;
	height: auto;
	display: block;
	padding-top: 5vw;
}
@media screen and (min-width: 516px){
	.outlineInner{
		padding: 0 1.5rem;
	}
	.outlineList{
		padding: 0 1rem;
	}
	.outlineList div{
		gap: 0.5rem;
		padding: 1.25rem 0;
	}
	.outlineList dt{
		gap: 0.9rem;
		font-size: 1.2rem;
	}
	.outlineList dd{
		font-size: 1rem;
	}
	.outlineList span{
		margin: 1.5rem 0 0;
		font-size: 0.85rem;
	}
	.reservationFigure img{
		padding-top: 1.5rem;
	}
}


/* information */

.infoList{
	background: #fdfaf2;
	border: 1px solid var(--line);
	padding: 8vw 6vw;
	text-align: left;
}
.infoList h5{
	margin: 0 0 3vw;
	color: var(--base);
	font-size: 3.5vw;
	font-weight: 700;
	letter-spacing: 0.08em;
}
.infoList h5:not(:first-of-type){
	margin-top: 7vw;
}
.infoList ul{
	display: grid;
	gap: .85rem;
}
.infoList li{
	position: relative;
	padding-left: 1.2rem;
	font-size: 3.2vw;
	font-weight: 400;
	line-height: 1.9;
	color: var(--ink-soft);
}
.infoList li::before{
	content: "・";
	position: absolute;
	left: 0;
	top: 0;
	font-weight: 400;
}
@media screen and (min-width: 516px){
	.infoList{
		padding: 2.5rem 2rem;
	}
	.infoList h5{
		margin: 0 0 1rem;
		font-size: 1.1rem;
	}
	.infoList li{
		font-size: 0.9rem;
		line-height: 1.7;
	}
	.infoList h5:not(:first-of-type){
		margin-top: 2rem;
	}
}


/* event */

.eventCard{
	background: #fdfaf2;
	border: 1px solid var(--line);
	padding: 8vw 5vw;
}
.eventCard h4{
	font-size: 4vw;
	font-weight: 600;
	letter-spacing: 0.12em;
	color: var(--base);
	text-align: center;
	margin-bottom: .5rem;
	padding-bottom: 1.2rem;
	border-bottom: 1px solid var(--line);
}
.eventCta{
	margin-top: 10vw;
	text-align: center;
}
.eventLink{
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	padding: 4vw 12vw;
	border: 1px solid var(--point);
	color: var(--point);
	font-weight: 600;
	letter-spacing: 0.15em;
	font-size: 3.25vw;
	transition: .2s ease;
	text-decoration: none;
}
.eventLink:hover{
	background: var(--base);
	color: #fff;
	border-color: var(--base);
}
.eventLink .icoBase{
	color: currentColor;
	width: 4vw;
	height: 4vw;
}
@media screen and (min-width: 516px){
	.eventCard{
		padding: 2.5rem 1.5rem;
	}
	.eventCard h4{
		font-size: 1.25rem;
		padding-bottom: 1.2rem;
	}
	.eventCta{
		margin-top: 3rem;
	}
	.eventLink{
		gap: 0.6rem;
		padding: 1.1rem 3.5rem;
		font-size: 1rem;
	}
	.eventLink .icoBase{
		width: 1.1rem;
		height: 1.1rem;
	}
}

/* contact */

.contactMail{
	display: inline-flex;
	align-items: center;
	gap: .9rem;
	font-weight: 600;
	font-size: 3.25vw;
	color: var(--ink);
	text-decoration: none;
	border-bottom: 2px solid var(--base);
	padding-bottom: 2.5vw;
	letter-spacing: 0.24em;
	transition: .2s ease;
	max-width: 100%;
	text-transform: uppercase;
}
.contactMail span{
	white-space: nowrap;
}
.contactMail:hover{
	color: var(--point);
}
.contactMail .icoBase{
	color: var(--base);
	width: 4.5vw;
	height: 4.5vw;
}
@media screen and (min-width: 516px){
	.contactMail{
		gap: 0.9rem;
		font-size: 1rem;
		padding-bottom: 0.75rem;
	}
	.contactMail .icoBase{
		width: 1.25rem;
		height: 1.25rem;
	}
}

/* footer */

footer{
	text-align: center;
	background: #fff;
	padding: 25vw 0 10vw;
	border-top: 1px solid var(--line);
	position: relative;
}
.secretLogoWrap{
	margin: 0 auto 10vw;
	display: flex;
	flex-direction: column;
	align-items: center;
	user-select: none;
	-webkit-user-select: none;
	width: 100%;
}
.secretLogo{
	position: relative;
	width: 70vw;
	max-width: 20rem;
	margin: 0 auto;
	-webkit-tap-highlight-color: transparent;
}
.secretLogo > img{
	width: 100%;
	height: auto;
	display: block;
}
.charEyeTarget{
	position: absolute;
	left: 62.5%;
	top: 31%;
	width: 12%;
	min-width: 40px;
	min-height: 40px;
	aspect-ratio: 1 / 1;
	transform: translate(-50%, -50%);
	border: 0;
	background: transparent;
	cursor: default;
	outline: none;
	-webkit-tap-highlight-color: transparent;
	z-index: 2;
}
.charEyeTarget:focus,
.charEyeTarget:focus-visible{
	outline: none;
}
.charEyeTarget.tapped::after{
	content: "";
	position: absolute;
	inset: -10%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(201,167,71,.55) 0%, rgba(44,74,110,.25) 40%, transparent 70%);
	animation: tapPulse .55s ease-out;
	pointer-events: none;
}
@keyframes tapPulse{
	0%{
		opacity: 0;
		transform: scale(.5);
	}
	40%{
		opacity: 1;
	}
	100%{
		opacity: 0;
		transform: scale(1.5);
	}
}
.footerCopy{
	font-size: 2.5vw;
	color: var(--ink-faded);
	line-height: 2.4;
	letter-spacing: .4em;
	text-transform: uppercase;
	font-weight: 500;
}


/* secretOverlay */

.secretOverlay{
	position: fixed;
	inset: 0;
	background: #000;
	z-index: 9999;
	opacity: 0;
	pointer-events: none;
	transition: opacity 1.1s ease;
	display: grid;
	place-items: center;
}
.secretOverlay.active{
	opacity: 1;
	pointer-events: all;
}
.secretOverlayCore{
	text-align: center;
	color: #f4ecdc;
	transform: scale(.95);
	opacity: 0;
	transition: opacity 1s ease .3s, transform 1s ease .3s;
}
.secretOverlay.active .secretOverlayCore{
	transform: scale(1);
	opacity: 1;
}
.secretOverlayEye{
	width: 80px;
	height: 80px;
	margin: 0 auto;
	border: 1px solid #c9a747;
	border-radius: 50%;
	display: grid;
	place-items: center;
	position: relative;
	animation: eyeOpen 1.5s ease infinite;
}
.secretOverlayEye::before{
	content: "";
	width: 14px;
	height: 14px;
	background: #c9a747;
	border-radius: 50%;
}
@keyframes eyeOpen{
	0%,100%{
		box-shadow: 0 0 0 0 rgba(201,167,71,.6);
	}
	50%{
		box-shadow: 0 0 0 12px rgba(201,167,71,0);
	}
}
@media screen and (min-width: 516px){
	footer{
		padding: 7rem 0 3rem;
	}
	.secretLogoWrap{
		margin: 0 auto 3rem;
	}
	.secretLogo{
		width: 20rem;
	}
	.charEyeTarget{
		min-width: 2.5rem;
		min-height: 2.5rem;
	}
	.footerCopy{
		font-size: 0.75rem;
		line-height: 2.2;
	}
}

/* reveal */

.reveal{
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 1.1s cubic-bezier(.22,.61,.36,1),
	transform 1.1s cubic-bezier(.22,.61,.36,1);
	transition-delay: var(--rd, 0s);
	will-change: opacity, transform;
}
.reveal.active{
	opacity: 1;
	transform: translateY(0);
}
/* Story section: slower, softer emergence (paper-like settling) */
