@font-face {
	font-family: 'FKT Echo Regular';
	src: url('/assets/fonts/FKTEcho_Rg.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'FKT Sinvoll Sans Mono Regular';
	src: url('/assets/fonts/FKTSinvollSansMono_Rg.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
}

:root {
	--font-echo: "FKT Echo Regular", sans-serif;
	--font-sinvoll-sans-mono: "FKT Sinvoll Sans Mono Regular", mono;
	--colour-cream: #DCDACE;
	--colour-brown: #873F0F;
}

html {
	background: var(--colour-cream);
	font-kerning: none;
	text-size-adjust: 100%;
	font-size: clamp(.8px, calc(100 / 440 * 1vw), 1.2px);
}

@media (min-width: 440px) {
	html {
		font-size: 1px;
	}
}

@media (min-width: 1024px) {
	html {
		font-size: clamp(1px, calc(100 / 1024 * 1vw), 2.2px);
	}
}

body {
	background: var(--colour-cream);
	color: var(--colour-brown);
	display: flex;
	flex-direction: column;
	font-family: var(--font-echo);
	justify-content: flex-end;
	margin: 0;
	min-height: 100svh;
}

.guides .hero .grid {
	position: relative;
	background: #bada55;
}

.guides .hero .grid:before {
	border-top: 1px dashed rebeccapurple;
	content: '';
	display: block;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.guides .hero .grid:after {
	border-top: 1px dashed rebeccapurple;
	bottom: 0;
	content: '';
	display: block;
	left: 0;
	position: absolute;
	width: 100%;
}

.sr-only:not(:focus):not(:active) {
	clip: rect(0 0 0 0); 
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap; 
	width: 1px;
}

.mono {
	font-family: var(--font-sinvoll-sans-mono);
}

.grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	padding: 0 30px;
}

@media (min-width: 1024px) {
	.grid {
		grid-template-columns: repeat(9, minmax(0, 1fr));
		padding: 0 28px;
	}
}

.hero {
	left: 0;
	height: 100%;
	padding-top: 75px;
	position: fixed;
	top: 0;
	width: 100%;
}

@media (min-width: 1024px) {
	.hero {
		padding-top: 118px;
	}
}

.hero__title {
	grid-column: 1 / span 2;
}

.hero__title-logo {
	width: 14rem;
}

@media (min-width: 1024px) {
	.hero__title-logo {
		height: 107rem;
		width: auto;
	}

	.hero__title-logo svg {
		height: 100%;
	}
}

.hero__logo {
	display: flex;
	justify-content: flex-end;
	grid-column: 3 / span 2;
}

@media (min-width: 1024px) {
	.hero__logo {
		grid-column: 8 / span 2;
		justify-content: center;
	}
}

.hero__logo-lottie {
	height: 77rem;
	margin-top: -2.5rem;
	width: 77rem;
}

@media (min-width: 1024px) {
	.hero__logo-lottie {
		height: 180rem;
		height: 115rem;
		margin-top: -5rem;
		margin-top: -3rem;
		width: 115rem;
	}
}

.hr {
	border-top: 2rem solid;
}

@media (min-width: 1024px) {
	.hr {
		border-top: 1.5rem solid;
	}
}

.content {
	background: var(--colour-cream);
	position: relative;
}

.content__inner {
	grid-column: 1 / span 4;
	margin-bottom: 99rem;
}

@media (min-width: 1024px) {
	.content__inner {
		grid-column: 1 / span 9;
		margin-bottom: 60rem;
	}
}

.content__description {
	font-size: 19rem;
	letter-spacing: 0.02rem;
	line-height: 23rem;
	margin: 0;
	max-width: 480rem;
	padding: 24rem 0 0 0;
	text-wrap: pretty;
}

@media (min-width: 1024px) {
	.content__description {
		font-size: 22rem;
		font-size: 13rem;
		line-height: 27rem;
		line-height: 1.2;
		max-width: 330rem;
		padding: 12rem 0 0 0;
	}
}

.footer {
	background: var(--colour-cream);
	/*bottom: -216rem;
	height: 214rem;*/
	bottom: -185rem;
	height: 185rem;
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
}

@media (min-width: 1024px) {
	.footer {
		bottom: -231rem;
		bottom: -143rem;
		height: 140rem;
	}
}

.footer__inner {
	grid-column: 1 / span 4;
}

@media (min-width: 1024px) {
	.footer__inner {
		grid-column: 1 / span 9;
	}
}

.footer__inner-text {
	font-size: 15rem;
	letter-spacing: .05em;
	line-height: 20rem;
	max-width: 540rem;
	padding: 24rem 0;
	text-transform: uppercase;
	text-wrap: pretty;
}

@media (min-width: 1024px) {
	.footer__inner-text {
		font-size: 10rem;
		line-height: 1.35;
		max-width: 250rem;
		padding: 22rem 0 0 0;
	}
}

p {
	margin: 0;
}

.footer__inner-text p + p {
	margin-top: 20rem;
}

@media (min-width: 1024px) {
	.footer__inner-text p + p {
		margin-top: 12rem;
	}
}

a {
	color: inherit;
}