/* Self-hosted: TWK Lausanne */
@font-face {
	font-family: 'TWK Lausanne';
	src: url('../fonts/TWKLausanne-500.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'TWK Lausanne';
	src: url('../fonts/TWKLausanne-700.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'TWK Lausanne';
	src: url('../fonts/TWKLausanne-900.woff2') format('woff2');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
video {
	display: inline-block;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden] {
	display: none;
}

html {
	font-family: sans-serif;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
}

a:focus {
	outline: thin dotted;
}

a:active,
a:hover {
	outline: 0;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

hr {
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	height: 0;
}

mark {
	background: #ff0;
	color: #000;
}

code,
kbd,
pre,
samp {
	font-family: monospace, serif;
	font-size: 1em;
}

pre {
	white-space: pre-wrap;
}

q {
	quotes: "\201C" "\201D" "\2018" "\2019";
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 0;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

button,
input,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	margin: 0;
}

button,
input {
	line-height: normal;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="search"] {
	-webkit-appearance: textfield;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
	vertical-align: top;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

*,
*::after,
*::before {
	box-sizing: border-box;
}

:root {
	font-size: 16px;
	--font-custom: 'TWK Lausanne', Futura, Arial, sans-serif;
}

body {
	--color-text: #1a1a1a;
	--color-bg: #F5F6EE;
	--color-link: #2d2d2d;
	--color-link-hover: #555;
	--color-overlay: #1a1a1a;
	--color-tagline: #2d2d2d;
	--color-footer-link: #8b7b6b;
	--color-footer-link-hover: #6d5f52;
	color: var(--color-text);
	background-color: var(--color-bg);
	font-family: var(--font-custom);
	font-weight: 500;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.demo-2 {
	--color-text: #1a1a1a;
	--color-bg: #F5F6EE;
	--color-link: #2d2d2d;
	--color-link-hover: #555;
	--color-tagline: #2d2d2d;
	overflow: hidden;
}


/* Page Loader */

.js .loading::before {
	content: '';
	position: fixed;
	z-index: 100000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color-bg);
}

.js .loading::after {
	content: '';
	position: fixed;
	z-index: 100000;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	pointer-events: none;
	border-radius: 50%;
	opacity: 0.4;
	background: var(--color-link);
	animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
	to {
		opacity: 1;
		transform: scale3d(0.5, 0.5, 1);
	}
}

a {
	text-decoration: none;
	color: var(--color-tagline);
	outline: none;
}

.casa-link {
	color: var(--color-footer-link);
}
.casa-link:hover {
	color: var(--color-footer-link-hover);
}
.frame__download {
	display: inline-block;
	margin-top: 0.5rem;
	padding: 0.5rem 1rem;
	border: 1px solid var(--color-tagline);
	border-radius: 4px;
	transition: background-color 0.2s, color 0.2s;
}
.frame__download:hover {
	background-color: var(--color-tagline);
	color: var(--color-bg);
}
.site-footer {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 1rem 1.75rem 1.25rem;
	text-align: left;
	font-size: 0.9rem;
	color: var(--color-footer-link);
	background: linear-gradient(to top, var(--color-bg) 60%, transparent);
}
.site-footer a {
	color: var(--color-footer-link);
}
.site-footer a:hover {
	color: var(--color-footer-link-hover);
}
.footer__sep {
	margin: 0 0.5rem;
	opacity: 0.6;
}
@media screen and (min-width: 50em) {
	.site-footer {
		text-align: left;
		padding: 1.25rem 2.75rem 1.5rem 2.75rem;
	}
}

a:hover,
a:focus {
	color: var(--color-link-hover);
	outline: none;
}

.message {
	background: var(--color-text);
	color: var(--color-bg);
	padding: 1rem;
	text-align: center;
}

.frame {
	padding: 1.75rem;
	/* text-align: center; */
	position: relative;
	z-index: 1000;
}

.frame__title {
	font-size: 1rem;
	margin: 0 0 1rem;
	font-weight: 500;
}

.frame__tagline {
	line-height: 1.5em;
	color: var(--color-tagline);
}

.frame__links {
	display: inline;
}

.frame a {
	/* text-transform: lowercase; */
}

.frame__github,
.frame__links a:not(:last-child),
.frame__demos a:not(:last-child) {
	margin-right: 1rem;
}

.frame__demos {
	margin: 1rem 0;
}

.frame__demo--current,
.frame__demo--current:hover {
	color: var(--color-text);
}

.content {
	display: flex;
	flex-direction: column;
	width: 100vw;
	height: calc(100vh - 13rem);
	position: relative;
	justify-content: flex-start;
	align-items: center;
}

/* Mobile layout: reorder and center vertically */
@media screen and (max-width: 49.99em) {
	main {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		min-height: 100vh;
		padding: 0 1.75rem 5rem; /* horizontal padding + space for fixed footer */
	}

	.content {
		order: -1; /* Move Blotter text above the frame */
		height: auto;
		width: 100%;
		margin-bottom: 0.5rem;
		align-items: flex-start; /* Left-align the Blotter text */
	}

	.frame {
		width: 100%;
		text-align: left;
		padding: 0;
	}

	.frame__title-wrap {
		display: block;
	}

	.frame__tagline {
		text-align: left;
		margin: 0;
		max-width: 100%;
	}
}

.content__img-wrap {
	position: relative;
	width: 80%;
	height: calc(100% - 13rem);
}

.content__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/large.jpg) no-repeat 50% 100%;
	background-size: cover;
	opacity: 0.7;
	will-change: transform;
}

.content__img:nth-child(1) {
	opacity: 0.3;
}

.content__img:nth-child(2) {
	opacity: 0.5;
}

.content__text {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	font-size: 3vw;
}

/* Mobile: left-align Blotter text (must come after base .content__text) */
@media screen and (max-width: 49.99em) {
	.content__text {
		position: relative;
		left: 0;
		transform: none;
		font-size: 5vw;
	}
}

.js .content__text-inner {
	opacity: 0;
}

/* Visible when Blotter fails and we restore plain text */
.js .content__text-inner.content__text-fallback {
	opacity: 1;
}

.grid {
	display: grid;
	padding: 1rem;
	margin: 0 auto;
	grid-template-columns: 100%;
	grid-row-gap: 4rem;
	grid-column-gap: 20vw;
	max-width: 1200px;
}

.grid__item {
	height: 60vh;
	max-height: 500px;
	position: relative;
}

.grid__item-img {
	position: relative;
	width: 100%;
	height: 100%;
	background-size: cover;
}

.grid__item-img::after {
	content: '';
	background: var(--color-overlay);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	mix-blend-mode: color-dodge;
	opacity: 0;
	transition: opacity 0.3s;
}

.grid__item:hover .grid__item-img::after {
	opacity: 1;
}

.grid__item-letter {
	position: absolute;
	bottom: -4vw;
	right: -4vw;
	z-index: 10;
	font-size: 15vw;
	line-height: 1;
}

@media screen and (min-width: 50em) {
	.frame {
		/* position: fixed; */
		text-align: left;
		z-index: 10000;
		padding: 2.75rem;
	}
	.frame__tagline {
		position: relative;
		margin: 0;
		padding: 0;
		max-width: 420px;
	}
}

/* Subpages (Privacy, Terms, Support) */
.subpage {
	background: var(--color-bg);
	min-height: 100vh;
}

.subpage .site-footer {
	position: static;
	background: none;
	margin-top: 3rem;
	padding-left: 0;
	padding-right: 0;
}

.subpage__main {
	max-width: 42rem;
	margin: 0 auto;
	padding: 2rem 1.75rem 6rem;
}

.page-back {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	min-width: 2.75rem;
	min-height: 2.75rem;
	padding: 0.5rem 0.5rem 0.5rem 0;
	margin: 0 0 2rem 0;
	font-size: 1.75rem;
	font-weight: 500;
	color: var(--color-tagline);
	transition: color 0.2s;
	line-height: 1;
}

.page-back:hover,
.page-back:focus {
	color: var(--color-link-hover);
}

.legal-content h1 {
	font-size: 1.75rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	color: var(--color-text);
}

.legal-content__updated {
	font-size: 0.9rem;
	color: var(--color-tagline);
	opacity: 0.85;
	margin-bottom: 1.5rem;
}

.legal-content h2 {
	font-size: 1.1rem;
	font-weight: 700;
	margin: 2rem 0 0.5rem;
	color: var(--color-text);
}

.legal-content h3 {
	font-size: 1rem;
	font-weight: 700;
	margin: 1.25rem 0 0.35rem;
	color: var(--color-text);
}

.legal-content ul {
	margin: 0 0 1rem;
	padding-left: 1.25rem;
	line-height: 1.6;
	color: var(--color-tagline);
}

.legal-content li {
	margin-bottom: 0.35rem;
}

.legal-content p {
	line-height: 1.6;
	margin: 0 0 1rem;
	color: var(--color-tagline);
}

.legal-content a {
	color: var(--color-link);
}

.legal-content a:hover {
	color: var(--color-link-hover);
}
