@font-face {
	font-family: "ABCMonumentGrotesk";
	src: url("assets/fonts/ABCMonumentGrotesk-Bold.otf") format("opentype"),
		url("assets/fonts/ABCMonumentGrotesk-Bold.woff2") format("woff2"),
		url("assets/fonts/ABCMonumentGrotesk-Bold.woff") format("woff");
	font-weight: bold;
}


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;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

* {
	box-sizing: border-box;
}


::-webkit-scrollbar {
	display: none;
}

:root {
	--gap: 15px;
	--grid-columns: 8;

	--content-width: calc(100vw - (2 * var(--gap)));

	--column: calc((var(--content-width) - ((var(--grid-columns) - 1) * var(--gap))) / var(--grid-columns));

	--col-1: var(--column);
	--col-2: calc((2 * var(--column)) + var(--gap));
	--col-4: calc((4 * var(--column)) + (3 * var(--gap)));
	--col-8: var(--content-width);

}

html,
body {
	font-family: "ABCMonumentGrotesk", Helvetica, Arial, sans-serif;
	margin: 0;
	width: 100%;
	height: 100%;
	font-weight: bold;
	font-size: 13px;
	line-height: 13px;
	letter-spacing: 0.01em;
	background: white;
	color: black;
	-webkit-font-smoothing: antialiased;
	hyphens: none;
	word-break: normal;
}

::selection {
	background: #97A7AC;
	color: white;
}

::-moz-selection {
	background: #97A7AC;
	color: white;
}

a {
	color: black;
	cursor: pointer;
	text-decoration: none;
}

a:hover,
.locked:hover,
.nav--left:has(h2:hover, h4:hover) h2,
.nav--left:has(h2:hover, h4:hover) h4 {
	color: #97A7AC;
}

h3 {
	font-size: 50px;
	line-height: 49px;
}


h4 {
	text-transform: uppercase;
}


.nav {
	position: fixed;
	top: var(--gap);

	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	z-index: 100;
}


.nav--left {
	left: var(--gap);
	width: var(--col-4);
}

.nav--left>* {
	cursor: pointer;
}

.nav--right {
	right: var(--gap);
	width: var(--col-4);
}

.locked:hover {
	cursor: not-allowed;
}

.locked-mess {
	display: none;
}

.contact {
	position: relative;
}

.contact span {
	position: absolute;
	display: none;
	top: 1.5px;
	right: -9px;
}

.contact:hover span {
	display: inline-block;

}

.tagline {
	width: var(--col-8);
	position: fixed;
	left: var(--gap);
	top: 40px;
	display: none;
	z-index: 50;
}

.media {
	position: fixed;
	left: var(--gap);
	width: var(--col-4);
	bottom: var(--gap);
	top: 145px;

}


.media video {
	display: block;
	position: absolute;

	left: 0;
	bottom: 0;

	max-width: 100%;
	max-height: 100%;

	aspect-ratio: 16 / 9;
	border-radius: 4px;
	z-index: 10;
	cursor: ne-resize;
}

.media.big {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100vw;
	height: 100vh;
}

.media.big video {
	width: 100%;
	height: 100%;
	max-width: inherit;
	max-height: inherit;
	border-radius: 0;
	object-fit: cover;

	cursor: sw-resize;

}


span.work {
	cursor: pointer;
}


/* TAGLINE QUERY */
@media (max-width: 1250px) {
	.tagline br {
		display: none;
	}
}



/* MEDIA QUIERRIS MOBIL */
@media (max-width: 830px) {

	.nav--left {
		left: var(--gap);
		width: var(--col-8);
	}

	.nav--right {
		top: inherit;
		bottom: var(--gap);
		width: var(--col-8);
	}

	.media {
		width: var(--col-8);
		top: 50px;
		bottom: 50px;
		height: calc(100dvh - 100px);
		left: var(--gap);
		right: var(--gap);
	}

	.media video {
		top: 50%;
		left: 50%;

		transform: translate(-50%, -50%);
	}

	h3 {
		font-size: 32px;
		line-height: 28px;
	}

	.tagline br {
		display: none;
	}

	/* TAGLINE QUERY */
@media (max-width: 400px) {
	h3 {
    hyphens: auto;

    hyphenate-limit-chars: 15 5 5;
    hyphenate-limit-lines: 3;
    hyphenate-limit-last: always;
	}
}


}