:root {
	/* --- COLORS --- */
	--color-bg: #090909;
	--color-text: #9c9c9c;
	--color-text-inv: #131212;
	--color-border: #444;
	--color-error: #b10000;
	
	/* Scrollbar */
	--color-scroll-thumb: #2f2f2f;
	--color-scroll-hover: #8c8c8c;

	/* --- TYPOGRAPHY --- */
	--font-reg: 'Clash-Display-Regular';
	--font-med: 'Clash-Display-Medium';

	/* --- LAYOUT --- */
	--max-w: 1600px;
	
	/* --- BORDERS & RADIUS --- */
	--radius-xs: 3px;
	--radius-sm: 5px;
	--radius-md: 20px;
	--radius-pill: 100px;

	/* --- Z-INDEX --- */
	--z-footer: 1;
	--z-content: 4;
	--z-navbar: 5;
	--z-menu: 99;
	--z-burger: 100;

	/* --- TRANSITIONS --- */
	--trans-fast: 0.15s ease;
	--trans-std: 0.3s ease;
	--trans-std-in: 0.3s ease-in;
	--trans-std-in-out: 0.3s ease-in-out;
}

@font-face {
	font-family: Clash-Display-Medium;
	src: url(/assets/font/ClashDisplay-Medium.woff2);
	font-display: swap;
}

@font-face {
	font-family: Clash-Display-Regular;
	src: url(/assets/font/ClashDisplay-Regular.woff2);
	font-display: swap;
}

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;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

blockquote, q {
	quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

*, *:before, *:after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

html {
	text-size-adjust: 100%;
	text-rendering: optimizeLegibility;
	-webkit-tap-highlight-color: transparent;
}

a {
	text-decoration: none;
	color: inherit;
}

p {
	line-height: 120%;
}

ol,
ul,
li {
	list-style: none;
}

body {
	background-color: var(--color-bg);
	color: var(--color-text);
	font-family: var(--font-reg);
	font-size: 19px;
	line-height: 1;
	max-width: var(--max-w);
	margin: 0 auto;
	overflow-x: hidden;
}

::-webkit-scrollbar {
	width: 6px;
}

::-webkit-scrollbar-track {
	background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
	background-color: var(--color-scroll-thumb);
	border-radius: var(--radius-md);
}

::-webkit-scrollbar-thumb:hover {
	background-color: var(--color-scroll-hover);
}

.main-content {
	position: relative;
	background-color: var(--color-bg);
	z-index: var(--z-content);
}


.btn {
	align-items: center;
	color: var(--color-text);
	border: 1px solid var(--color-border);
	background-color: transparent;
	border-radius: var(--radius-pill);
	cursor: pointer;
	display: flex;
	justify-content: center;
	overflow: hidden;
	padding: .75rem 1rem;
	position: relative;
	text-transform: uppercase;
	font-size: inherit;
	font-family: var(--font-reg);
	transition: background-color 0.3s ease, color 0.3s ease;
	width: max-content;
	gap: .3rem;
}

.btn span {
	display: flex;
	align-items: center;
	transition: var(--trans-std);
	gap: .5rem;
}

.btn svg {
	width: 17px;
	height: 17px;
	transition: transform .3s;
}

.btn svg path {
	stroke: var(--color-text);
	transition: stroke .3s;
}


[data-fade-section] {
	opacity: 0;
	transition: opacity 0.3s ease-in;
	will-change: opacity;
}

.fadeIn {
	opacity: 1;
}

.fadeOut {
	opacity: 0;
}

img[data-zoom-out] {
	width: 100%;
	height: auto;
	display: block;
	transform-origin: center center;
	transform: scale(1.05);
	opacity: 0.5;
	transition: transform 0.3s ease, opacity 0.3s ease;
	will-change: transform, opacity;
}

img[data-zoom-out].animate-zoom-out {
	transform: scale(1);
	opacity: 1;
}

[data-blur-out] {
	filter: blur(8px);
	transition: filter 0.3s ease;
	will-change: filter;
}

.un-blur {
	filter: blur(0);
}


@media (hover: hover) and (pointer: fine) {

	.btn:hover svg,
	#contact .desktop-social-btn .social-btn:hover svg,
	.wc-card:hover svg {
		transform: rotate(45deg);
	}

	.btn:hover {
		background-color: var(--color-text);
		border: 1px solid var(--color-text);
		color: var(--color-text-inv);
	}

	.btn:hover svg path {
		stroke: var(--color-text-inv);
	}
	
	.nav-parent .nav-wrapper .main-nav ul li a:hover,
	#contact .contact-box .mail a:hover,
	#contact .contact-box .phone a:hover,
	#contact .desktop-social-btn .social-btn:hover {
		text-decoration: underline;
	}
}


body:not(.nav-open) .nav-parent.nav-hidden {
	transform: translateY(-100%);
}

.nav-parent {
	max-width: var(--max-w);
	width: 100%;
	background: var(--color-bg);
	margin: 0 auto;
	position: fixed;
	top: 0;
	z-index: var(--z-navbar);
	transition: transform 0.3s ease-in-out;
}

.nav-parent .nav-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 .5rem;
	padding: .5rem 0;
}

.nav-parent .nav-wrapper .branding {
	display: block;
}

.nav-parent .nav-wrapper .branding a {
	font-family: var(--font-med);
	text-transform: uppercase;
	font-size: 1.4rem;
}

.nav-parent .nav-wrapper .main-nav {
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	right: -100%;
	transition: right 0.15s ease;
	background: var(--color-bg);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	padding: 5rem .5rem 2rem;
	box-sizing: border-box;
	z-index: var(--z-menu);
}

.nav-parent .nav-wrapper .main-nav.active {
	right: 0;
}

.nav-parent .nav-wrapper .main-nav ul {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

.nav-parent .nav-wrapper .main-nav ul li a {
	position: relative;
	font-family: var(--font-reg);
	font-size: 1.8rem;
	text-transform: uppercase;
	transition: all 0.3s ease;
}

.nav-parent .nav-wrapper .burger {
	display: flex;
	background: transparent;
	width: 32px;
	height: 14px;
	cursor: pointer;
	border: 0;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	z-index: var(--z-burger);
	position: relative;
}

.nav-parent .nav-wrapper .burger .bar {
	width: 32px;
	height: 1.7px;
	background: var(--color-text);
	transform-origin: center;
	transition: all .15s ease;
}

.nav-parent .nav-wrapper .burger.active .bar:nth-child(1) {
	transform: translateY(5px) rotate(-45deg);
}

.nav-parent .nav-wrapper .burger.active .bar:nth-child(2) {
	transform: translateY(-5px) rotate(-135deg);
}

.nav-parent .nav-wrapper .mobile-socials {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: .8rem;
	width: 100%;
}

.nav-parent .nav-wrapper .mobile-socials .social-btn {
	width: max-content;
	text-transform: uppercase;
}

.nav-parent .nav-wrapper .mobile-socials .social-btn span {
	display: flex;
	align-items: center;
	gap: .25rem;
}

.nav-parent .nav-wrapper .mobile-socials .social-btn svg {
	width: 14px;
	height: 14px;
}

.hero-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 14rem 0 10rem;
	margin: 0 .5rem;
	gap: 1rem;
}

.hero-container h1 {
	text-transform: uppercase;
	font-size: 3rem;
}

.hero-container p {
	max-width: 90%;
}

.hero-container .btn-group,
#about .btn-group {
	display: flex;
	flex-direction: column;
	padding-top: 1rem;
	gap: .5rem;
}

#about h2,
#services h2,
#prices h2,
#work h2,
#contact h2 {
	font-family: var(--font-med);
	text-transform: uppercase;
	font-size: 2.4rem;
}

#about, #services, #work, #prices, #contact {
	display: flex;
	padding: 3rem 0 3rem;
	margin: 0 .5rem;
	flex-direction: column;
	gap: 2rem;
}

#about .about-grid {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}

#about .about-text {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	order: 2;
}

#about .btn-group {
	margin-top: 2rem;
}

#about .about-grid .about-img-container {
	display: flex;
	justify-content: center;
	order: 1;
	width: 100%;
}

#about .about-grid .about-img-container #imageContainer {
	position: relative;
	width: 100%;
	max-width: 30rem;
	aspect-ratio: 1 / 1;
	height: auto;
	cursor: pointer;
}

#about .about-grid .about-img-container canvas {
	display: block;
	border-radius: var(--radius-sm);
	width: 100%;
	height: 100%;
}

#services .services-grid {
	display: grid;
	grid-template-columns: 1fr;
	counter-reset: service;
	gap: 1.5rem;
}

#services .services-card {
	padding: 1rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	counter-increment: service;
	gap: 3rem;
}

#services .services-card::before {
	content: counter(service, decimal-leading-zero);
	display: block;
	font-size: 3rem;
	font-family: var(--font-med);
}

#services .services-card h3 {
	text-transform: uppercase;
	font-size: 1.8rem;
}

#services .services-card p {
	margin-top: auto;
}

#work .wc-grid {
	display: grid;
	grid-template-columns: 1fr;
	grid-auto-rows: auto;
	gap: 1.5rem;
}

#work .wc-card {
	display: block;
}

#work .wc-image-wrapper {
	width: 100%;
	overflow: hidden;
	aspect-ratio: 7 / 5;
	border-radius: var(--radius-sm);
	margin-bottom: .75rem;
}

#work .wc-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#work .work-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: .75rem;
	border-bottom: 1px solid var(--color-border);
}

#work .work-title h3 {
	text-transform: uppercase;
	margin-left: .2rem;
}

#work .work-title svg {
	width: 17px;
	height: 17px;
	margin-right: .2rem;
	transition: transform .3s;
}

#prices .prices-grid {
	display: grid;
	grid-template-columns: 1fr;
	grid-auto-rows: auto;
	gap: 1.5rem;
}

#prices .prices-card {
	padding: 1rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	gap: 3rem;
}

#prices .prices-card-head {
	display: flex;
	flex-direction: column;
	gap: .5rem;
}

#prices .prices-card-head h3 {
	font-family: var(--font-med);
	text-transform: uppercase;
	font-size: 2.2rem;
}

#prices .prices-card-head span {
	font-size: 1.3rem;
}

#prices .prices-card-item {
	display: flex;
	flex-direction: column;
	margin-top: auto;
	gap: 3rem;
}

#prices .prices-card  .prices-card-item ul {
	list-style: none;
	padding-left: 0;
}

#prices .prices-card .prices-card-item ul li {
	line-height: 150%;
}

#prices .info {
	display: flex;
	flex-direction: row;
	align-items: center;
	font-size: 15px;
	margin-top: 0;
	gap: .5rem;
}

#prices .info span {
	align-items: center;
	background-color: var(--color-text);
	border-radius: 2em;
	color: #0c0c0c;
	display: flex;
	height: 1rem;
	justify-content: center;
	min-width: 1rem;
	width: 1rem;
}

#contact .contact-box {
	display: grid;
	grid-template-columns: 1fr;
	align-items: start;
	justify-items: start;
	gap: 6rem;
}

#contact .contactForm-box {
	display: flex;
	flex-direction: column;
	width: 100%;
}

#contact .contact-box-desc {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 100%;
	margin-bottom: 2rem;
	gap: 3rem;
}

#contact .mail-phone-btn {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

#contact .contact-box .mail,
#contact .contact-box .phone {
	display: flex;
	flex-direction: column;
	gap: .5rem;
}

#contact .contact-box .mail a,
#contact .contact-box .phone a {
	font-size: 1.6rem;
	width: max-content;
	font-family: var(--font-med);
}

#contact .desktop-social-btn {
	display: flex;
	flex-direction: column;
	gap: .5rem;
}

#contact .desktop-social-btn .social-btn {
	font-family: var(--font-med);
	font-size: 1.6rem;
	text-transform: uppercase;
	width: max-content;
}

#contact .desktop-social-btn .social-btn span {
	display: flex;
	align-items: center;
	gap: .5rem;
}

#contact .desktop-social-btn .social-btn svg {
	width: 19px;
	height: 19px;
	transition: transform .3s;
}

footer {
	max-width: var(--max-w);
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	height: auto;
	z-index: var(--z-footer);
	background-color: var(--color-bg);
	margin: 0 auto;
	padding: 0 .5rem;
	padding-bottom: env(safe-area-inset-bottom);
	will-change: transform;
}

footer .footer-wrapper {
	display: flex;
	flex-direction: column;
	gap: .5rem;
}

footer .copyright {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	font-size: .9rem;
	border-bottom: 1px solid var(--color-border);
	padding: .5rem 0;
	gap: .5rem;
}

footer .heart-box {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: .25rem;
}

footer .heart-box svg {
	height: .8em;
	fill: var(--color-text);
	display: inline-block;
	width: auto;
}

footer .footer-brand-svg {
	width: 100%;
	height: auto;
}

footer .footer-brand-svg text {
	font-family: var(--font-med);
	font-size: 248px;
	font-weight: 600;
	fill: var(--color-text);
	text-transform: uppercase;
	display: block;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
}

.contact-form label {
	font-size: inherit;
	color: var(--color-text);
	text-transform: uppercase;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select {
	background: transparent;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	padding: 1rem;
	color: var(--color-text);
	font-size: 1rem;
	font-family: var(--font-reg);
	outline: none;
	width: 100%;
	box-sizing: border-box;
	transition: border-color 0.2s;
}

.contact-form textarea {
	min-height: 20rem;
}

#contactMessage {
	resize: none;
}

.contact-form select {
	appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='21' height='10' fill='none' viewBox='0 0 21 10'><path stroke='%239c9c9c' d='m1 1 9.5 8L20 1'/></svg>");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 1.5em;
	color: var(--color-text);
	cursor: pointer;
	padding-right: 30px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
	border-color: var(--color-text);
}

.contact-form input.input-error,
.contact-form textarea.input-error,
.contact-form select.input-error {
	border-color: var(--color-error);
}

.error-message {
	color: var(--color-error);
	font-size: 13px;
	margin-top: -5px;
	min-height: 15px;
}

#formMessage {
	display: none;
	color: inherit;
}

#formMessage.success {
	color: inherit;
	display: block;
}

#formMessage.error {
	background: none;
	display: block;
	color: var(--color-error);
}

.contact-form .gdpr-checkbox {
	display: flex;
	align-items: center;
	font-size: inherit;
	gap: 1rem;
}

.contact-form .gdpr-checkbox input[type="checkbox"] {
	appearance: none;
	width: 25px;
	height: 25px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-xs);
	background: transparent;
	cursor: pointer;
	position: relative;
	flex-shrink: 0;
	transition: border-color 0.2s, background-color 0.2s;
}

.contact-form .gdpr-checkbox input[type="checkbox"]::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 7px;
	height: 14px;
	border: solid var(--color-text);
	border-width: 0 2px 2px 0;
	transform: translate(-50%, -60%) rotate(45deg);
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
}

.contact-form .gdpr-checkbox input[type="checkbox"]:checked {
	background-color: transparent;
}

.contact-form .gdpr-checkbox input[type="checkbox"]:checked::after {
	opacity: 1;
}

.contact-form .gdpr-checkbox input[type="checkbox"]:focus-visible {
	outline: 2px solid #f0f0f0;
}

.contact-form .gdpr-checkbox label {
	cursor: pointer;
	color: var(--color-text);
	text-transform: uppercase;
}

.contact-form .gdpr-checkbox label a {
	color: var(--color-text);
	text-decoration: underline;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
}




@media (min-width: 576px) {
	
	.nav-parent .nav-wrapper {
		margin: 0 1rem;
		padding: 1rem 0;
	}
	
	.nav-parent .nav-wrapper .main-nav {
		padding: 8rem 1rem 4rem;
	}
	
	.nav-parent .nav-wrapper .main-nav ul li a {
		font-size: 2rem;
	}
	
	.hero-container {
		padding: 17rem 0 12rem;
		margin: 0 1rem;
	}
	
	.hero-container h1 {
		font-size: 3.5rem;
	}
	
	.hero-container p {
		max-width: 60%;
	}
	
	#about h2, #services h2, #prices h2, #work h2, #contact h2 {
		font-size: 3rem;
	}
	
	#about, #services, #work, #prices, #contact {
		padding: 3rem 0 5rem;
		margin: 0 1rem;
		gap: 4rem;
	}
}




@media (min-width: 768px) {
	
	.nav-parent .nav-wrapper {
		margin: 0 1.5rem;
		padding: 1.5rem 0;
	}
	
	.nav-parent .nav-wrapper .main-nav {
		padding: 8rem 1.5rem 4rem;
	}
	
	.nav-parent .nav-wrapper .main-nav ul {
		gap: 1.5rem;
	}
	
	.nav-parent .nav-wrapper .main-nav ul li a {
		font-size: 2.5rem;
	}
	
	.hero-container h1 {
		font-size: 4rem;
	}
	
	.hero-container {
		padding: 24rem 0 15rem;
		margin: 0 1.5rem;
	}
	
	#about h2, #services h2, #prices h2, #work h2, #contact h2 {
		font-size: 3.5rem;
	}
	
	#services .services-grid, #work .wc-grid, #prices .prices-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	#prices .info {
		margin-top: -2rem;
	}
	
	#contact .contactForm-box {
		width: 75%;
		margin: 0 auto;
	}
	
	#about, #services, #work, #prices, #contact {
		margin: 0 1.5rem;
	}
	
}





@media (min-width: 1024px) {
	
	.hero-container h1 {
		font-size: 4.5rem;
	}
	
	#about h2, #services h2, #prices h2, #work h2, #contact h2 {
		font-size: 4rem;
	}
}





@media (min-width: 1200px) {

	body.nav-open {
		overflow: visible;
	}

	.nav-parent .nav-wrapper {
		margin: 0 2rem;
		padding: 1rem 0;
	}

	.nav-parent .nav-wrapper .main-nav {
		position: static;
		width: auto;
		height: auto;
		right: auto;
		background: transparent;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		padding: 0;
		z-index: auto;
	}

	.nav-parent .nav-wrapper .main-nav ul {
		flex-direction: row;
		align-items: center;
		gap: 1.5rem;
		width: auto;
	}

	.nav-parent .nav-wrapper .main-nav ul li a {
		font-size: .9rem;
	}

	.nav-parent .nav-wrapper .burger {
		display: none;
	}

	.nav-parent .nav-wrapper .mobile-socials {
		display: none;
	}

	.hero-container {
		padding: 15rem 0 12rem; 
		margin: 0 2rem;
	}

	.hero-container h1 {
		font-size: 6rem;
		max-width: 90%;
	}

	.hero-container p {
		max-width: 30rem;
	}

	.hero-container .btn-group, 
	#about .btn-group {
		flex-direction: row;
	}

	#about h2,
	#services h2,
	#prices h2,
	#work h2,
	#contact h2 {
		font-size: 5rem;
	}

	#about, #services, #work, #prices, #contact {
		padding: 3rem 0 8rem;
		margin: 0 2rem;
		gap: 4rem;
	}

	#about .about-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		align-items: start;
	}

	#about .about-text {
		order: unset;
	}
	
	#about .about-grid .about-img-container {
		order: unset;
		justify-content: flex-end;
	}
	
	#services .services-grid, #work .wc-grid, #prices .prices-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	#services .services-card {
		gap: 4rem;
	}

	#services .services-card::before {
		font-size: 4rem;
	}

	#services .services-card h3 {
		font-size: 2rem;
	}

	#prices .prices-card-head h3 {
		font-size: 3rem;
	}
	
	#contact .contact-box {
		grid-template-columns: 1.4fr .6fr;
		justify-items: end;
		gap: 5rem;
	}
	
	#contact .contact-box-desc {
		width: auto;
        max-width: none;
		margin-bottom: 0;
	}
	
	#contact .contactForm-box {
		width: 100%;
	}
	
	footer {
		padding: 0 2rem;
	}
	
	.contact-form {
		display: grid;
		grid-template-columns: 1fr 1fr;
		align-items: end;
	}

	#message-group,
	#gdpr-group,
	#submit-group {
		grid-column: 1 / -1;
	}
}