:root {
	/* --- COLORS --- */
	--color-bg: #0c0c0c;
	--color-text: #9c9c9c;
	--color-text-inv: #131313;
	--color-border: #4b4b4b;
	--color-focus: #6c6c6c;
	--color-error: #b10000;

	/* --- TYPOGRAPHY --- */
	/*
      Font: Clash Display
      License: Free for Commercial Use
      Link: https://befonts.com/clash-display-font.html
    */
	--font-reg: 'Clash-Display-Regular';
	--font-med: 'Clash-Display-Medium';

	/* --- LAYOUT --- */
	--max-w: 1600px;
	
	/* --- BORDERS & RADIUS --- */
	--radius-xs: 3px;
	--radius-sm: 5px;

	/* --- 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: 130%;
}

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;
}

.main-content {
	position: relative;
	background-color: var(--color-bg);
	z-index: var(--z-content);
}

[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);
}

body:not(.nav-open) .nav-parent.nav-hidden {
	transform: translateY(-100%);
}

._link, 
.btn_outlined {
    text-transform: uppercase;
    align-items: center;
    color: var(--color-text);
    display: inline-flex;
    width: max-content;
}

._link {
    --icon-size: 14px;
    gap: .5rem;
    transition-duration: .3s;
    transition-property: background-size, opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;
    padding-bottom: .15rem;
}

.btn_outlined {
    --icon-size: 13px;
    gap: .75rem;
    cursor: pointer;
    font-size: inherit;
    font-family: var(--font-reg);
    text-decoration: none;
    border: 1px solid var(--color-border);
    background-color: transparent;
    border-radius: var(--radius-xs);
    padding: .75rem 1rem;
    transition: all 0.25s ease-in;
}

._link .btn_icon,
.btn_outlined .btn_icon {
    display: inline-block;
    overflow: hidden;
    position: relative;
    width: var(--icon-size);
    height: var(--icon-size);
    flex-shrink: 0;
}

._link .btn_icon::before,
._link .btn_icon::after,
.btn_outlined .btn_icon::before,
.btn_outlined .btn_icon::after {
    background-color: currentColor;
    content: "";
    mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPSc5JyBoZWlnaHQ9JzknIGZpbGw9J25vbmUnPjxwYXRoIGZpbGw9JyNmZmYnIGQ9J004LjM1NCA4aC0xVjEuNzA3TC43MDcgOC4zNTQgMCA3LjY0NiA2LjY0NiAxSC4zNTRWMGg4eicvPjwvc3ZnPg==");
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: var(--icon-size) var(--icon-size);
    top: 0;
    left: 0;
    position: absolute;
    width: var(--icon-size);
    height: var(--icon-size);
    transition-duration: .25s;
    transition-property: opacity, transform;
    transition-timing-function: ease-out;
}

._link .btn_icon::before,
.btn_outlined .btn_icon::before {
    opacity: 1;
    transform: translate(0px, 0px);
    transition-delay: .2s;
}

._link .btn_icon::after,
.btn_outlined .btn_icon::after {
    opacity: 0;
    transform: translate(-4px, 4px);
    transition-delay: 0s;
}

.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.4s 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 .brand {
    display: block;
	font-family: var(--font-med);
	text-transform: uppercase;
	font-size: 1.25rem;
}

.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;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	gap: 1rem;
}

.nav-parent .nav-wrapper .main-nav ul li a {
    display: inline-block;
	position: relative;
	font-size: 1.8rem;
	text-transform: uppercase;
	transition: all 0.3s ease;
}

.nav-parent .nav-wrapper .burger {
	display: flex;
	background: transparent;
	width: 26px;
	height: 12px;
	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: 26px;
	height: 1.6px;
	background: var(--color-text);
	transform-origin: center;
	transition: all .15s ease;
}

.nav-parent .nav-wrapper .burger.active .bar:nth-child(1) {
	transform: translateY(4px) rotate(45deg);
}

.nav-parent .nav-wrapper .burger.active .bar:nth-child(2) {
	transform: translateY(-4px) rotate(-45deg);
}

.nav-parent .nav-wrapper .mobile-socials {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	gap: .5rem;
}

.hero-container {
	display: flex;
	flex-direction: column;
	padding: 12rem 0 10rem;
	margin: 0 .5rem;
	gap: 1rem;
}

.hero-container h1 {
    font-family: var(--font-med);
	text-transform: uppercase;
	font-size: 2.8rem;
}

.hero-container p,
.section-header p {
    text-transform: uppercase;
	max-width: 90%;
}

.hero-container .btn-group,
#about .btn-group {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	padding-top: 1rem;
	gap: .5rem;
}

#about h2,
#services h2,
#work h2,
#contact h2,
#quotes h2 {
	font-family: var(--font-med);
	text-transform: uppercase;
	font-size: 2.4rem;
}

#about, 
#services, 
#work,
#contact, 
#quotes {
	display: flex;
	padding: 3rem 0;
	margin: 0 .5rem;
	flex-direction: column;
	gap: 2rem;
}

.section-header {
    display: flex;
	flex-direction: column;
	gap: 1rem;
}

#about .about-grid {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}

#about .about-text {
	display: flex;
	flex-direction: column;
	order: 2;
	gap: 1rem;
}

#about .btn-group {
  padding-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;
	grid-auto-rows: auto;
	counter-reset: service;
	gap: 1.5rem;
}

#services .services-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 1.5rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	counter-increment: service;
	gap: 2rem;
}

#services .services-card::before {
	content: counter(service, decimal-leading-zero);
	display: block;
	font-size: 5rem;
}

#services .services-card h3,
#work .wc-card h3,
.cookie-content h3 {
    font-family: var(--font-med);
	text-transform: uppercase;
	font-size: 1.7rem;
}

#services .services-card p {
	margin-top: auto;
}

#work .wc-grid, 
#quotes .quotes-box {
	display: grid;
	grid-template-columns: 1fr;
	grid-auto-rows: auto;
	gap: 1.5rem;
}

#work .wc-card {
	display: flex;
    flex-direction: column;
    gap: 1rem;
}

#work .wc-image-wrapper {
	overflow: hidden;
	aspect-ratio: 4 / 3;
	border-radius: var(--radius-sm);
}

#work .wc-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(100%);
	transition: all .3s ease;
}

#quotes .quotes-card {
    display: flex;
	flex-direction: column;
	padding: 1.5rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	gap: 2rem;
}

#quotes .quotes-box .quotes-card svg {
    width: 5rem;
    height: auto;
    fill: var(--color-text);
}

#quotes .quotes-box .quotes-card cite {
    margin-top: auto;
    text-transform: uppercase;
}

#contact .contactForm-box {
	display: flex;
	flex-direction: column;
	gap: 6rem;
}

#contact .contact-box-desc {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    gap: 2rem;
}

footer .heart-box {
	display: flex;
	flex-direction: row;
	align-items: center;
	text-transform: uppercase;
	gap: .25rem;
}

footer .heart-box svg {
	height: .9em;
	fill: var(--color-text);
	display: inline-block;
	width: auto;
}

#contact .mail-phone-btn,
#contact .desktop-social-btn {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: .5rem;
}

#contact .mail,
#contact .tel  {
    display: flex;
    flex-direction: row;
    gap: .5rem;
}

#contact .mail-phone-btn a {
    text-transform: uppercase;
    width: max-content;
    transition: 0.25s ease-in;
}

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-reverse;
    gap: .5rem;
}

footer .copyright {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	text-transform: uppercase;
	font-size: .75rem;
	border-top: 1px solid var(--color-border);
	padding: 1.5rem 0;
	gap: 1rem;
}

footer .copyright a {
    transition: 0.25s ease-in;
}

footer .footer-legal {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: .5rem;
}

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
   ============================================================ */

.contact-form {
	display: flex;
	flex-direction: column;
    margin: 0 auto;
    width: 100%;
	gap: 0 1rem;
}

.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;
	background-color: transparent;
	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-focus);
}

.contact-form .gdpr-checkbox input[type="checkbox"]:focus {
    border-color: var(--color-focus);
}

.contact-form input.input-error,
.contact-form textarea.input-error,
.contact-form select.input-error {
	border-color: var(--color-error);
}

.contact-form .gdpr-checkbox input[type="checkbox"].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;
	margin-top: 10px;
	font-size: 14px;
}

#formMessage.success {
	color: inherit;
	display: block;
}

#formMessage.error {
	background: none;
	display: block;
	color: var(--color-error);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: inset(50%);
    white-space: nowrap;
    border: 0;
    left: -9999px;
}

.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 {
	color: var(--color-text);
	text-transform: none;
}

.contact-form .gdpr-checkbox label a {
    cursor: pointer;
	color: var(--color-text);
	text-decoration: underline;
	line-height: 130%;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
}

/* ============================================================
   Cookie Consent
   ============================================================ */

#cookieConsent {
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	width: 100%;
	max-width: 30rem;
	background: inherit;
	border: 1px solid var(--color-border);
	padding: 1.5rem;
	z-index: 999;
	display: none;
	border-radius: var(--radius-sm);
}

#cookieConsent.show {
	display: block;
	animation: slideUp 0.3s ease-out 1s both;
}

@media (max-width: 600px) {
	#cookieConsent {
		left: 1rem;
		right: 1rem;
		width: auto;
		max-width: none;
	}
}

@keyframes slideUp {
	from {
		transform: translateY(100%);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.cookie-content {
	display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cookie-msg {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-msg a {
	text-decoration: underline;
	cursor: pointer;
}

.cookie-btns {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.c-btn {
	padding: .75rem 1rem;
	border-radius: var(--radius-xs);
	border: 1px solid var(--color-border);
	background: transparent;
	color: inherit;
	cursor: pointer;
	font-size: inherit;
	font-family: inherit;
	text-transform: uppercase;
	transition: 0.3s;
}

#cookieModal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color-bg);
	z-index: 1000;
	justify-content: center;
	align-items: center;
}

#cookieModal.show {
	display: flex;
}

.modal-box {
	background: transparent;
	border-radius: var(--radius-sm);
	border: 1px solid var(--color-border);
	padding: 1.5rem;
	max-width: 500px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
}

.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--color-border);
	padding-bottom: 1rem;
}

.modal-header h4 {
    font-family: var(--font-med);
    text-transform: uppercase;
    font-size: 1.4rem
}

.modal-close {
	background: none;
	border: none;
	font-size: 40px;
	color: inherit;
	cursor: pointer;
}

.cookie-option {
	display: flex;
	align-items: flex-end;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--color-border);
	gap: 1rem;
}

.option-text h4 {
	margin: 0 0 1rem 0;
	text-transform: uppercase;
	font-size: 1.2rem
}

.option-text p {
	margin: 0;
}

.switch {
	position: relative;
	display: inline-block;
	flex-shrink: 0;
	width: 40px;
	height: 24px;
}

.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--color-text);
	transition: .3s;
	border-radius: 24px;
}

.slider:before {
	position: absolute;
	content: "";
	height: 16px;
	width: 16px;
	left: 4px;
	bottom: 4px;
	background-color: var(--color-bg);
	transition: .3s;
	border-radius: 50%;
}

.modal-actions {
    margin-top: 20px;
    text-align: right;
}

input:checked+.slider {
	background-color: var(--color-text);
}

input:checked+.slider:before {
	transform: translateX(16px);
}

input:disabled+.slider {
	cursor: not-allowed;
}

#link-cookie-trigger {
    position: fixed;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: 0;
    z-index: 10;
    cursor: pointer;
    text-decoration: none;
    padding: .5rem;
}

#link-cookie-trigger::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239c9c9c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2a10 10 0 1 0 10 10 4 4 0 0 1-5-5 4 4 0 0 1-5-5Z'/%3E%3Ccircle cx='8.5' cy='8.5' r='0.5' fill='%239c9c9c'/%3E%3Ccircle cx='16' cy='15.5' r='0.5' fill='%239c9c9c'/%3E%3Ccircle cx='12' cy='12' r='0.5' fill='%239c9c9c'/%3E%3Ccircle cx='11' cy='17' r='0.5' fill='%239c9c9c'/%3E%3Ccircle cx='7' cy='14' r='0.5' fill='%239c9c9c'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

@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: 2.35rem;
	}
	
	.hero-container {
		padding: 18rem 0 12rem;
		margin: 0 1rem;
	}
	
	.hero-container h1 {
		font-size: 3.5rem;
	}
	
	.hero-container p,
	.section-header p {
		max-width: 60%;
	}
	
	.hero-container .btn-group,
    #about .btn-group {
        flex-direction: row;
    }
	
	#about h2, 
	#services h2,
	#work h2, 
	#contact h2, 
	#quotes h2 {
		font-size: 3rem;
	}
	
	#about, 
	#services, 
	#work,
	#contact, 
	#quotes {
		padding: 5rem 0;
		margin: 0 1rem;
		gap: 4rem;
	}
    
	footer {
	    padding: 0 1rem;
	}
}

@media (min-width: 768px) {
    
	.nav-parent .nav-wrapper {
		margin: 0 1.5rem;
	}
	
	.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.75rem;
	}
	
	.hero-container h1 {
		font-size: 4rem;
	}
	/*
	.hero-container p,
	.section-header p,
	#about p {
		font-size: 1.3rem;
	}
	*/
	.hero-container {
		padding: 25rem 0 20rem;
		margin: 0 1.5rem;
	}
	
	#about h2, 
	#services h2,
	#work h2, 
	#contact h2, 
	#quotes h2 {
		font-size: 3.5rem;
	}
	
	#about, 
	#services, 
	#work,
	#contact, 
	#quotes {
		margin: 0 1.5rem;
	}
	
	#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,
	#quotes .quotes-box {
		grid-template-columns: repeat(2, 1fr);
	}
	
	#contact .contactForm-box {
	    gap: 8rem;
    }
	
	.contact-form {
	    max-width: 70%;
    }
    
	#contact .contact-form .form-group > button {
        align-self: flex-end;
    }
    
    #contact .contact-box-desc,
    footer .footer-legal {
        flex-direction: row;
    }
    
	footer {
	    padding: 0 1.5rem;
	}
	
	footer .copyright {
        flex-direction: row;
	}
}

@media (min-width: 1024px) {
    
    body.nav-open {
		overflow-x: visible;
	}
   
	.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,
	.nav-parent .nav-wrapper .mobile-socials {
		display: none;
	}
	
	.hero-container h1 {
		font-size: 5rem;
		max-width: 80%;
	}

	#about h2, 
	#services h2,
	#work h2, 
	#contact h2, 
	#quotes h2 {
		font-size: 4rem;
	}
	
	#quotes .quotes-box .quotes-card svg {
        width: 6rem;
    }
	
	#services .services-card::before {
	    font-size: 6rem;
    }
}

@media (min-width: 1200px) {
    
    .nav-parent .nav-wrapper {
		margin: 0 2rem;
		padding: 1rem 0;
	}

	.hero-container {
		padding: 13rem 0rem; 
		margin: 0 2rem;
	}

	.hero-container h1 {
		font-size: 6rem;
	}
 
	.hero-container p {
		max-width: 35rem;
	}
	
	#about h2,
	#services h2,
	#work h2,
	#contact h2,
	#quotes h2 {
		font-size: 5.5rem;
	}

	#about, 
	#services, 
	#work, 
	#contact, 
	#quotes {
		margin: 0 2rem;
		gap: 4rem;
	}
    
	#services .services-grid,
	#work .wc-grid,
	#quotes .quotes-box {
		grid-template-columns: repeat(3, 1fr);
	}
	
	#work .wc-grid {
	    grid-template-columns: 1.6fr 1fr 1fr;
	    align-items: start;
    }
   
	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;
	}
}

@media screen and (min-width: 250px) and (max-width: 340px) {
   
    .nav-parent .nav-wrapper .main-nav ul li a {
        font-size: 1.6rem;
    }
    
    .hero-container h1 {
        font-size: 2.2rem;
    }

    #about h2,
	#services h2,
	#work h2,
	#contact h2 {
        font-size: 2rem;
    }
  
    #services .services-card h3 {
        font-size: 1.7rem;
    }
}

@media (hover: hover) and (pointer: fine) {
    
    ._link:hover,
    ._link:focus-visible,
    .wc-card:hover ._link {
        background-size: 100% 1px;
        opacity: 1;
    }
    
    .wc-card:hover .wc-image {
        transform: scale(1.05);
    }

    .btn_outlined:hover,
    .btn_outlined:focus-visible {
        opacity: 1;
        background: var(--color-text);
	    color: var(--color-text-inv);
    }

    ._link:hover .btn_icon::before,
    ._link:focus-visible .btn_icon::before,
    .wc-card:hover .btn_icon::before,
    .project-item:hover .btn_icon::before,
    .btn_outlined:hover .btn_icon::before,
    .btn_outlined:focus-visible .btn_icon::before {
        opacity: 0;
        transform: translate(4px, -4px);
        transition-delay: 0s;
    }

    ._link:hover .btn_icon::after,
    ._link:focus-visible .btn_icon::after,
    .wc-card:hover .btn_icon::after,
    .project-item:hover .btn_icon::after,
    .btn_outlined:hover .btn_icon::after,
    .btn_outlined:focus-visible .btn_icon::after {
        opacity: 1;
        transform: translate(0px, 0px);
        transition-delay: .2s;
    }
 
	.c-btn:hover, 
	.c-btn.accept:hover {
	    background: var(--color-text);
	    color: var(--color-text-inv);
    }
    
    .nav-parent .nav-wrapper .main-nav ul li a:before {
		content: "";
		position: absolute;
		width: 0;
		height: 1px;
		bottom: -2px;
		background: var(--color-text);
		transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	}
   
	.nav-parent .nav-wrapper .main-nav ul li a:hover:before {
		width: 100%;
	}
	
	footer .footer-legal a:hover,
	#contact .mail-phone-btn a:hover {
	    color: var(--color-focus);
	}
}

@media (max-width: 1023px) and (orientation: landscape) {
    .nav-parent .nav-wrapper .main-nav {
        padding: 4rem 1rem 1rem;
        justify-content: flex-start;
        gap: 1rem;
    }
    
    .nav-parent .nav-wrapper .main-nav ul {
        gap: .75rem;
    }
    
    .nav-parent .nav-wrapper .main-nav ul li a {
        font-size: 1.4rem;
    }
    
    .nav-parent .nav-wrapper .mobile-socials {
        display: none;
    }
}

/* ============================================================
   2026 VISUAL SYSTEM
   A presentation-layer refresh: existing HTML hooks and JS states
   intentionally remain unchanged.
   ============================================================ */

:root {
    --color-bg: #090b10;
    --color-surface: #121620;
    --color-surface-raised: #171c28;
    --color-text: #aeb7c7;
    --color-text-strong: #f5f7fb;
    --color-text-inv: #0a0c11;
    --color-border: rgba(219, 228, 241, 0.14);
    --color-focus: #c8ff71;
    --color-accent: #c8ff71;
    --color-accent-warm: #ffb86b;
    --radius-xs: 8px;
    --radius-sm: 16px;
    --radius-lg: 28px;
    --shadow-soft: 0 20px 70px rgba(0, 0, 0, 0.28);
    --shadow-lift: 0 26px 60px rgba(0, 0, 0, 0.42);
}

html {
    scroll-padding-top: 6rem;
    background: var(--color-bg);
}

body {
    max-width: none;
    min-width: 320px;
    background:
        radial-gradient(circle at 8% 12%, rgba(200, 255, 113, 0.11), transparent 23rem),
        radial-gradient(circle at 92% 34%, rgba(108, 129, 255, 0.12), transparent 30rem),
        #090b10;
    color: var(--color-text);
    font-size: clamp(1rem, 0.97rem + 0.16vw, 1.12rem);
    line-height: 1.55;
}

body::before {
    content: "";
    position: fixed;
    z-index: -1;
    inset: 0;
    pointer-events: none;
    opacity: 0.32;
    background-image: linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

.main-content {
    width: min(100%, 1440px);
    margin: 0 auto;
    overflow: clip;
    background: transparent;
}

section:not(.hero-container) {
    position: relative;
    margin-inline: clamp(1.25rem, 4vw, 4rem);
    padding-block: clamp(5.5rem, 10vw, 10rem);
    border-top: 1px solid var(--color-border);
}

h1, h2, h3, h4, .brand, button, input, select, textarea {
    letter-spacing: -0.035em;
}

h1, h2, h3, h4 {
    color: var(--color-text-strong);
    line-height: 0.96;
    font-family: var(--font-med);
}

h2 {
    font-size: clamp(2.65rem, 6.4vw, 6.4rem);
    max-width: 12ch;
}

h3 {
    font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.section-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: end;
    gap: 1.25rem;
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-header p {
    max-width: 30rem;
    margin: 0;
    color: #8994a6;
    font-size: 0.96rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Navigation */
.nav-parent {
    position: sticky;
    top: 0;
    z-index: var(--z-navbar);
    width: 100%;
    padding: 1rem clamp(1rem, 3vw, 2.5rem);
    background: linear-gradient(to bottom, rgba(9, 11, 16, 0.88), rgba(9, 11, 16, 0));
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
    transition: transform 0.35s ease;
}

.nav-parent .nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100%, 1360px);
    min-height: 3.65rem;
    margin: 0 auto;
    padding: 0.45rem 0.75rem 0.45rem 1.15rem;
    border: 1px solid rgba(232, 239, 250, 0.13);
    border-radius: 999px;
    background: rgba(17, 21, 30, 0.76);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

.nav-parent .nav-wrapper .brand {
    color: var(--color-text-strong);
    font-size: 1.25rem;
    line-height: 1;
}

.nav-parent .nav-wrapper .main-nav ul {
    gap: clamp(1.1rem, 2vw, 2.25rem);
}

.nav-parent .nav-wrapper .main-nav ul li a {
    position: relative;
    color: #b7c0cf;
    font-size: 0.82rem;
    font-family: var(--font-med);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color var(--trans-std);
}

.nav-parent .nav-wrapper .main-nav ul li a::before {
    bottom: -0.45rem;
    height: 2px;
    border-radius: 999px;
    background: var(--color-accent);
}

.nav-parent .nav-wrapper .burger {
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background: #202633;
}

.nav-parent .nav-wrapper .burger .bar {
    background: var(--color-text-strong);
}

/* Hero */
.hero-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: min(780px, 83svh);
    margin: 0 clamp(1.25rem, 4vw, 4rem);
    padding: clamp(7rem, 14vw, 12rem) 0 clamp(5.5rem, 10vw, 8rem);
    isolation: isolate;
}

.hero-container::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: min(50vw, 690px);
    aspect-ratio: 1;
    right: -12%;
    top: 8%;
    border-radius: 50%;
    border: 1px solid rgba(200, 255, 113, 0.2);
    background: radial-gradient(circle at 38% 38%, rgba(200, 255, 113, 0.17), rgba(86, 103, 205, 0.06) 42%, transparent 68%);
    box-shadow: inset 0 0 70px rgba(200, 255, 113, 0.06), 0 0 120px rgba(88, 106, 255, 0.1);
}

.hero-container::after {
    content: "Independent digital designer · Győr, HU";
    position: absolute;
    top: clamp(8rem, 15vw, 12rem);
    left: 0;
    color: var(--color-accent);
    font-family: var(--font-med);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-container h1 {
    max-width: 10ch;
    margin: 0;
    color: var(--color-text-strong);
    font-size: clamp(3.55rem, 9.5vw, 9.5rem);
    line-height: 0.86;
    text-wrap: balance;
}

.hero-container p {
    max-width: 39rem;
    margin: 2rem 0 0;
    color: #b8c1d0;
    font-size: clamp(1.05rem, 1.4vw, 1.35rem);
    line-height: 1.45;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2.4rem;
}

.btn_outlined {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-width: 12.5rem;
    padding: 0.36rem 0.38rem 0.36rem 1.15rem;
    border: 1px solid rgba(228, 236, 248, 0.22);
    border-radius: 999px;
    color: var(--color-text-strong);
    background: rgba(18, 22, 32, 0.72);
    font-family: var(--font-med);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform var(--trans-std), border-color var(--trans-std), background var(--trans-std), color var(--trans-std), box-shadow var(--trans-std);
}

.btn_outlined .btn_icon {
    display: grid;
    width: 2.25rem;
    height: 2.25rem;
    margin-left: 1.1rem;
    place-items: center;
    border-radius: 50%;
    background: var(--color-accent);
}

.btn_outlined .btn_icon::before,
.btn_outlined .btn_icon::after {
    background: var(--color-text-inv);
}

/* About and services */
#about .about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    gap: clamp(2.5rem, 7vw, 8rem);
}

#about .about-text {
    max-width: 43rem;
}

#about .about-text > p:first-child {
    color: var(--color-text-strong);
    font-family: var(--font-med);
    font-size: clamp(1.65rem, 2.6vw, 2.35rem);
    line-height: 1.1;
}

#about .about-text > p + p {
    margin-top: 1.3rem;
    color: #aeb8c8;
}

#about .about-grid .about-img-container {
    position: relative;
    overflow: hidden;
    min-height: 25rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, #1b2333, #0e1119);
    box-shadow: var(--shadow-soft);
}

#about .about-grid .about-img-container::before {
    content: "01 / PROFILE";
    position: absolute;
    z-index: 2;
    top: 1.25rem;
    left: 1.25rem;
    color: var(--color-accent);
    font-family: var(--font-med);
    font-size: 0.65rem;
    letter-spacing: 0.14em;
}

#about .about-grid .about-img-container #imageContainer,
#about .about-grid .about-img-container canvas {
    width: 100%;
    height: 100%;
}

#services .services-grid,
#quotes .quotes-box {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
}

#services .services-card,
#quotes .quotes-card {
    position: relative;
    overflow: hidden;
    min-height: 17rem;
    padding: 1.7rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: linear-gradient(145deg, rgba(30, 36, 49, 0.82), rgba(14, 17, 25, 0.76));
    box-shadow: var(--shadow-soft);
    transition: transform var(--trans-std), border-color var(--trans-std), background var(--trans-std), box-shadow var(--trans-std);
}

#services .services-card::before {
    content: "0" counter(card, decimal-leading-zero);
    counter-increment: card;
    top: 1.5rem;
    right: 1.5rem;
    left: auto;
    width: auto;
    height: auto;
    color: rgba(200, 255, 113, 0.6);
    background: none;
    font-family: var(--font-med);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
}

#services .services-grid { counter-reset: card; }

#services .services-card h3 {
    max-width: 8ch;
    margin-top: 4rem;
}

#services .services-card p {
    margin-top: 1.15rem;
    color: #9ca8ba;
    font-size: 0.98rem;
    line-height: 1.55;
}

/* Work and testimonials */
#work .wc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

#work .wc-card {
    display: block;
    padding: 0.7rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: rgba(17, 21, 30, 0.65);
    box-shadow: var(--shadow-soft);
    transition: transform var(--trans-std), border-color var(--trans-std), box-shadow var(--trans-std);
}

#work .wc-image-wrapper {
    overflow: hidden;
    aspect-ratio: 1.35;
    border-radius: calc(var(--radius-sm) - 6px);
    background: #202634;
}

#work .wc-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.45s ease;
}

#work .wc-card h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1.15rem 0 0.55rem;
    font-size: 1.35rem;
}

#work .wc-card h3::after {
    content: "↗";
    display: grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-accent);
    font-size: 1rem;
}

#quotes .quotes-card {
    display: flex;
    flex-direction: column;
    min-height: 19rem;
}

#quotes .quotes-box .quotes-card svg {
    width: 2.4rem;
    height: 2rem;
    fill: var(--color-accent);
}

#quotes .quotes-card p {
    margin-top: 2rem;
    color: #d4dbe6;
    font-size: 1.05rem;
    line-height: 1.5;
}

#quotes .quotes-box .quotes-card cite {
    margin-top: auto;
    padding-top: 2rem;
    color: var(--color-accent);
    font-family: var(--font-med);
    font-size: 0.76rem;
    font-style: normal;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Contact */
#contact .contactForm-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 6vw, 6rem);
    padding: clamp(1.15rem, 3vw, 2rem);
    border: 1px solid rgba(200, 255, 113, 0.24);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(29, 37, 43, 0.9), rgba(12, 15, 22, 0.92));
    box-shadow: var(--shadow-lift);
}

.contact-form {
    display: grid;
    gap: 1.25rem;
}

.form-group { margin: 0; }

.contact-form label {
    display: block;
    margin-bottom: 0.55rem;
    color: #b9c3d2;
    font-family: var(--font-med);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select {
    width: 100%;
    min-height: 3.55rem;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(227, 237, 250, 0.16);
    border-radius: 10px;
    outline: none;
    color: var(--color-text-strong);
    background-color: rgba(5, 7, 11, 0.36);
    font-size: 0.95rem;
    transition: border-color var(--trans-fast), box-shadow var(--trans-fast), background var(--trans-fast);
}

.contact-form textarea { min-height: 8rem; resize: vertical; }
.contact-form select { color: #c6cfdd; }
.contact-form option { color: #11151d; }

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #687486; }

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--color-accent);
    background-color: rgba(5, 7, 11, 0.68);
    box-shadow: 0 0 0 4px rgba(200, 255, 113, 0.1);
}

.contact-form .gdpr-checkbox {
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-form .gdpr-checkbox label {
    margin: 0;
    color: #9eabba;
    font-family: var(--font-reg);
    font-size: 0.84rem;
    letter-spacing: 0;
    line-height: 1.45;
    text-transform: none;
}

.contact-form .gdpr-checkbox label a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

#submit-group .btn_outlined { border-color: var(--color-accent); background: var(--color-accent); color: #0b0d12; }
#submit-group .btn_outlined .btn_icon { background: #0c1017; }
#submit-group .btn_outlined .btn_icon::before,
#submit-group .btn_outlined .btn_icon::after { background: var(--color-accent); }

#contact .contact-box-desc {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2.5rem;
    padding: clamp(0.6rem, 2vw, 1.1rem);
}

#contact .mail-phone-btn { display: grid; gap: 1.25rem; }
#contact .mail-phone-btn > div { display: grid; gap: 0.35rem; }
#contact .mail-phone-btn span,
#contact .contact-box-desc small {
    color: var(--color-accent);
    font-family: var(--font-med);
    font-size: 0.68rem;
    letter-spacing: 0.13em;
}

#contact .mail-phone-btn a {
    color: var(--color-text-strong);
    font-size: clamp(1.15rem, 2vw, 1.65rem);
    line-height: 1.1;
}

.desktop-social-btn { display: flex; flex-wrap: wrap; gap: 1rem; }
.desktop-social-btn ._link, .mobile-socials ._link { color: #aeb9c8; font-size: 0.8rem; }

/* Footer and consent interfaces */
footer {
    position: relative;
    z-index: var(--z-footer);
    overflow: hidden;
    margin-top: 0;
    padding: 5rem clamp(1.25rem, 4vw, 4rem) 2rem;
    background: #07090d;
    border-top: 1px solid var(--color-border);
}

footer .footer-wrapper {
    width: min(100%, 1360px);
    margin: 0 auto;
}

footer .copyright { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem; }
footer .footer-legal { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; }
footer .footer-legal a, footer .heart-box { color: #8c98aa; font-size: 0.78rem; }
footer .footer-legal a { text-decoration: underline; text-underline-offset: 0.25em; }
footer .footer-brand-svg { width: 100%; height: auto; margin-top: 4rem; }
footer .footer-brand-svg text { fill: rgba(245, 247, 251, 0.92); font-family: var(--font-med); font-size: 11rem; letter-spacing: -0.08em; }

#cookieConsent, #cookieModal .modal-box {
    border: 1px solid rgba(226, 235, 249, 0.16);
    background: rgba(20, 25, 35, 0.94);
    box-shadow: var(--shadow-lift);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

#cookieConsent { border-radius: var(--radius-sm); }
.cookie-content { gap: 1.5rem; }
.cookie-msg h3, .modal-header h4, .option-text h4 { color: var(--color-text-strong); }
.cookie-msg p, .option-text p { color: #a5b0bf; line-height: 1.45; }
.c-btn { border: 1px solid var(--color-border); border-radius: 999px; color: var(--color-text-strong); background: transparent; }
.c-btn.accept, .modal-actions .c-btn { border-color: var(--color-accent); color: var(--color-text-inv); background: var(--color-accent); }

/* Motion and interaction refinements */
@media (hover: hover) and (pointer: fine) {
    .btn_outlined:hover {
        transform: translateY(-3px);
        border-color: var(--color-accent);
        color: var(--color-text-inv);
        background: var(--color-accent);
        box-shadow: 0 12px 30px rgba(200, 255, 113, 0.16);
    }
    .btn_outlined:hover .btn_icon { background: #0b0e14; }
    .btn_outlined:hover .btn_icon::before,
    .btn_outlined:hover .btn_icon::after { background: var(--color-accent); }
    #services .services-card:hover,
    #quotes .quotes-card:hover,
    #work .wc-card:hover {
        transform: translateY(-7px);
        border-color: rgba(200, 255, 113, 0.48);
        box-shadow: var(--shadow-lift);
    }
    #work .wc-card:hover .wc-image { transform: scale(1.055); filter: saturate(1.08); }
    .nav-parent .nav-wrapper .main-nav ul li a:hover { color: var(--color-text-strong); }
    #contact .mail-phone-btn a:hover { color: var(--color-accent); }
}

.btn_outlined:focus-visible,
.nav-parent a:focus-visible,
.c-btn:focus-visible,
#link-cookie-trigger:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

@media (min-width: 768px) {
    .section-header { grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.45fr); }
    .section-header p { justify-self: end; }
    #about .about-grid { grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.8fr); }
    #about .about-grid .about-img-container { min-height: 33rem; }
    #services .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    #services .services-card { min-height: 23rem; padding: 2rem; }
    #work .wc-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    #quotes .quotes-box { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    #contact .contactForm-box { grid-template-columns: minmax(0, 1.15fr) minmax(15rem, 0.7fr); }
}

@media (min-width: 1024px) {
    .nav-parent .nav-wrapper .main-nav { position: static; width: auto; height: auto; padding: 0; background: none; }
    .nav-parent .nav-wrapper .burger { display: none; }
    .hero-container { min-height: min(860px, 88vh); }
}

@media (max-width: 1023px) {
    .nav-parent .nav-wrapper .main-nav {
        top: 0;
        right: 0;
        width: min(100%, 31rem);
        height: 100dvh;
        padding: 8rem 2rem 3rem;
        background: rgba(11, 14, 21, 0.98);
        box-shadow: -24px 0 70px rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(20px);
    }
    .nav-parent .nav-wrapper .main-nav ul { gap: 1.15rem; }
    .nav-parent .nav-wrapper .main-nav ul li a { color: var(--color-text-strong); font-size: clamp(1.8rem, 8vw, 3rem); letter-spacing: -0.05em; }
    .nav-parent .nav-wrapper .mobile-socials { display: flex; margin-top: auto; gap: 1.1rem; }
}

@media (max-width: 520px) {
    .nav-parent { padding: 0.7rem 0.8rem; }
    .nav-parent .nav-wrapper { min-height: 3.25rem; padding-left: 0.95rem; }
    .hero-container { min-height: 45rem; padding-bottom: 4rem; }
    .hero-container::before { width: 25rem; right: -11rem; top: 15%; }
    .hero-container::after { top: 7.5rem; font-size: 0.6rem; }
    .hero-container h1 { font-size: clamp(3.35rem, 16vw, 4.75rem); }
    .btn_outlined { width: 100%; min-width: 0; }
    #about .about-grid .about-img-container { min-height: 22rem; }
    #services .services-card, #quotes .quotes-card { min-height: auto; }
    #contact .contactForm-box { padding: 1rem; }
    footer .footer-brand-svg { margin-top: 3rem; }
    footer .footer-brand-svg text { font-size: 16rem; }
    .cookie-btns { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
