/* ------------------ CSS-RESET ------------------ */
@layer reset {
	*,
	*::before,
	*::after {
		box-sizing: border-box;
	}

	* {
		margin: 0;
	}

	body {
		line-height: 1.5;
		-webkit-font-smoothing: antialiased;
		min-height: 100dvh;
	}

	img,
	picture,
	video,
	canvas,
	svg {
		display: block;
		max-width: 100%;
	}

	input,
	button,
	textarea,
	select {
		font: inherit;
	}

	p,
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		overflow-wrap: break-word;
	}

	#root,
	#__next {
		isolation: isolate;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		text-wrap: balance;
	}

	p {
		text-wrap: pretty;
	}
}

/* ------------------ BASE ------------------ */
* {
	-webkit-tap-highlight-color: transparent;
}

button:active,
a:active,
.feature-card:active {
	opacity: 0.7;
	transform: scale(0.98);
	transition:
		transform 0.1s ease,
		opacity 0.1s ease;
}

html {
	font-size: 16px;
	scroll-padding-top: var(--header-height);
	scroll-behavior: smooth;
}

@media (max-width: 768px) {
	html {
		scroll-padding-top: 4rem;
	}
}

:focus {
	outline: none;
}

@media (hover: hover) {
	:focus-visible {
		outline: 2px solid var(--color-accent);
		outline-offset: 4px;
		border-radius: 4px;
	}
}

@media (hover: none) {
	:focus-visible,
	:focus,
	:active,
	button,
	a,
	input,
	textarea,
	.hamburger-btn,
	.hamburger-btn svg {
		outline: none !important;
		box-shadow: none !important;
		-webkit-tap-highlight-color: transparent !important;
		-webkit-focus-ring-color: transparent !important;
	}
}

footer :focus-visible {
	outline-color: var(--color-primary);
}

.container-wide {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding-left: 5%;
	padding-right: 5%;
}

/* ------------------ VERTICAL SCROLLBAR ------------------ */
html {
	scrollbar-width: thin;
	scrollbar-color: #d4af37 var(--color-background);
}

@supports (scrollbar-color: #d4af37) {
	html {
		scrollbar-width: thin;
		scrollbar-color: #d4af37 var(--color-background);
	}
}

@supports (scroll-behavior: smooth) {
	html {
		scroll-behavior: smooth;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

html::-webkit-scrollbar {
	width: 8px;
	background-color: #d4af37;
}

html::-webkit-scrollbar-track {
	background: #ede8d4;
}

html::-webkit-scrollbar-thumb {
	border-radius: 12px;
	background-color: #d4af37;
}

@supports (-webkit-touch-callout: none) {
	html {
		scrollbar-width: auto;
		scrollbar-color: auto;
	}

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

/* ------------------ HTML, BODY ------------------ */
html,
body {
	min-height: 100%;
	height: auto;
	width: 100%;
	margin: 0;
	padding: 0;
	color: var(--color-background);
	background-color: var(--color-background);
	overflow-x: hidden;
	overflow-y: auto;
}

/*   LANDSCAPE HEIGHT FIX   */
@media (max-height: 280px) and (orientation: landscape) {
	html {
		min-height: 200px;
	}
}

body {
	-webkit-font-smoothing: antialiased;
	/* WebKit (Chrome/Safari) */
	-moz-osx-font-smoothing: grayscale;
	/* Firefox (macOS) */
	text-rendering: optimizeLegibility;
	/* Rendering Quality + */
	background-color: var(--color-background);
	margin: 0;
	padding: 0;
	/* iOS Safari */
	padding-top: env(safe-area-inset-top, 0);
	padding-left: env(safe-area-inset-left, 0);
	padding-right: env(safe-area-inset-right, 0);
	padding-bottom: env(safe-area-inset-bottom, 0);
}

body.menu-open {
	overflow: hidden;
}

body img {
	font-size: 0;
}

::selection {
	background-color: var(--color-secondary);
	color: #fff;
}

blockquote::selection,
blockquote *::selection,
.services-pricing-note *::selection,
.step-number::selection,
.step-title::selection,
.feature-card-content h3::selection,
.service-content h3::selection {
	background-color: var(--color-accent);
	color: #ffffff;
	text-shadow: none;
}

/* ------------------ VARIABLES ------------------ */
:root {
	--header-height: 4rem;
	--color-text: #2d2c2b;
	--color-background: #faf9f6;
	--color-background-2: ivory;
	--color-primary: #d5c9ab;
	--color-secondary: #5b3c29;
	--color-accent: #d0a05b;
	--color-accent-2: #4a432a;
	--color-accent-3: #d4af37;
	--color-background-header: #171a26;
	--color-background-footer: #2d2c2b;
	--font-logo: 'Nunito Sans', 'Avenir Next', Avenir, 'Segoe UI', sans-serif;
	--font-headings: 'Cormorant Garamond', Georgia, serif;
	--font-text: 'Raleway', Arial, Helvetica, sans-serif;
	--shadow-soft: 0 10px 40px -10px rgba(45, 44, 43, 0.15);
	--text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

/* ------------------ FONTS, KEYFRAMES, ETC ------------------ */
html {
	font-family: var(--font-text);
	font-weight: 400;
}

body {
	text-align: center;
	font-family: var(--font-text);
	font-weight: 400;
	line-height: 1.6;
	background-color: var(--color-background);
}

h1,
h2,
h3,
h4 {
	font-family: var(--font-headings);
	font-weight: 500;
	line-height: 1.1;
}

h1 {
	font-size: clamp(3rem, 7vw, 5.5rem);
}

h2 {
	font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h3 {
	font-size: clamp(1.4rem, 4vw, 1.9rem);
}

h5,
h6 {
	font-family: var(--font-headings);
	font-style: normal;
	font-weight: 600;
}

li > a {
	font-family: var(--font-headings);
	font-style: normal;
	font-weight: 500;
}

article,
p {
	font-family: var(--font-text);
	font-style: normal;
	font-weight: 400;
}

@keyframes dark-gold-shimmer {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 10%;
	}

	100% {
		background-position: 0% 50%;
	}
}

@keyframes lightMove {
	0% {
		background-position: 0% 0%;
	}

	50% {
		background-position: 50% 50%;
	}

	100% {
		background-position: 100% 0%;
	}
}

@keyframes logoFadeIn {
	0% {
		opacity: 0;
		transform: scale(0.8);
	}

	70% {
		opacity: 1;
		transform: scale(1.05);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes pulse {
	0% {
		transform: scaleX(1);
	}

	50% {
		transform: scaleX(1.025);
	}

	100% {
		transform: scaleX(1);
	}
}

@keyframes bounce-circle {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-5px);
	}
}

/* ------------------ USER-SELECT: NONE ------------------ */
header,
img,
svg,
.logo-circle,
.hamburger-btn,
.btn-hero,
.btn-service,
.btn-send,
.h2-title,
.faq-question::after,
.slider-prev,
.slider-next,
.slider-pagination,
.contact-title,
.contact-links-list,
.contact-form label,
.footer-center p,
.mail-icon {
	-webkit-user-select: none;
	user-select: none;
}

.contact-email-a {
	-webkit-user-select: text;
	user-select: text !important;
	cursor: text;
}

/* ------------------ HEADER AND NAVIGATION ------------------ */
header {
	width: 100%;
	min-height: 50px;
	height: var(--header-height);
	max-height: 100dvh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	background-color: transparent;
	transition:
		background-color 0.4s ease,
		backdrop-filter 0.4s ease;
	pointer-events: none;
}

.header-content-wrapper .logo-header,
.header-content-wrapper .desktop-nav,
.hamburger-btn {
	pointer-events: auto;
	cursor: pointer;
}

.logo-header:active {
	transform: none !important;
	opacity: 1 !important;
}

@media (min-width: 1000px) {
	header.scrolled {
		background-color: #0f1119;
		pointer-events: auto;
		cursor: auto;
	}

	@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
		header.scrolled {
			background-color: rgba(15, 17, 25, 0.95);
			-webkit-backdrop-filter: blur(10px);
			backdrop-filter: blur(10px);
			will-change: transform;
		}
	}

	header.scrolled .logo-header {
		color: var(--color-accent);
		cursor: auto;
	}
}

@media (max-width: 999px) {
	header.scrolled {
		backdrop-filter: none !important;
		-webkit-backdrop-filter: none !important;
		background-color: rgba(15, 17, 25, 0.98);
	}
}

.header-content-wrapper {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

@media (min-width: 1000px) {
	.header-content-wrapper {
		justify-content: space-between;
		max-width: 1440px;
		margin: 0 auto;
		padding: 0 2rem;
	}
}

.mobile-nav-container {
	width: min(4rem, 15%);
	height: 100%;
	min-width: 4rem;
	position: relative;
}

@media (min-width: 1000px) {
	.mobile-nav-container {
		display: none;
	}
}

.hamburger-btn {
	width: 3.75rem;
	height: 100%;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 100;
	position: absolute;
	top: 1.5rem;
	left: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hamburger-btn:active {
	transform: none !important;
	opacity: 1 !important;
}

.hamburger-btn .icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 2.5rem;
	height: 2.5rem;
	color: var(--color-text);
	stroke: currentColor;
	fill: none;
	padding: 0.2rem;
	border-radius: 50%;
	transform-origin: center;

	border: 0.1rem solid transparent;
	background-color: transparent;

	-webkit-font-smoothing: antialiased;
	backface-visibility: hidden;
	transform: translateZ(0);
	shape-rendering: geometricPrecision;

	transition:
		opacity 0.3s ease,
		transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
		color 0.4s ease,
		background-color 0.4s ease,
		border-color 0.4s ease;
}

.hamburger-btn .menu-icon {
	opacity: 1;
	transform: rotate(0deg) scale(1);
}

.hamburger-btn .close-icon {
	opacity: 0;
	color: #fff;
	transform: rotate(-90deg) scale(0.5) translateZ(0);
}

.hamburger-btn.active .menu-icon {
	opacity: 0;
	transform: rotate(90deg) scale(0.5) translateZ(0);
}

.hamburger-btn.active .close-icon {
	opacity: 1;
	transform: rotate(0deg) scale(1) translateZ(0);
}

.hamburger-menu {
	width: clamp(16rem, 25%, 60%);
	height: 100dvh;
	min-height: 100dvh;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	padding: calc(var(--header-height) + 0.5rem) 1rem calc(1.5rem + env(safe-area-inset-bottom)) 1rem;
	text-align: center;
	z-index: 50;
	opacity: 0;
	visibility: hidden;
	transform: translateX(-120%);
	pointer-events: none;
	font-family: var(--font-headings);
	font-weight: 500;
	letter-spacing: 0.5px;
	background: #0f1119;
	box-shadow: 5px 0 25px rgba(0, 0, 0, 0.5);
	overflow-y: auto;
	overflow-x: hidden;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	touch-action: pan-y;
	scrollbar-width: thin;
	scrollbar-color: var(--color-accent-3) transparent;
	transition:
		transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.1s ease,
		visibility 0s linear 0.5s;
	padding-top: 3rem;
}

@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
	.hamburger-menu {
		background: rgba(15, 17, 25, 0.95);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
	}
}

@media (max-width: 999px) {
	.hamburger-menu {
		background: rgba(15, 17, 25, 0.98);
		backdrop-filter: none !important;
		-webkit-backdrop-filter: none !important;
	}
}

.hamburger-menu.active {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
	pointer-events: auto;
	transition:
		transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.1s ease,
		visibility 0s linear 0s;
}

.hamburger-menu::-webkit-scrollbar {
	width: 5px;
}

.hamburger-menu::-webkit-scrollbar-track {
	background: transparent;
	margin-top: var(--header-height);
	margin-bottom: 1rem;
}

.hamburger-menu::-webkit-scrollbar-thumb {
	background-color: var(--color-accent-3);
	border-radius: 10px;
}

.menu-item {
	min-height: auto;
	flex-shrink: 0;
	height: auto;
	width: 100%;
	list-style: none;
	opacity: 0;
	transition:
		transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.1s ease;
	padding: 0.15rem 0;
}

.menu-item:first-of-type {
	margin-top: 3rem;
}

.menu-item:first-child {
	margin-top: 1rem;
}

.menu-contacts-container > *,
.menu-footer-info > * {
	opacity: 0;
	transform: translateY(10px);
	transition:
		opacity 0.35s ease,
		transform 0.35s ease;
}

.hamburger-menu.active .menu-item:nth-child(1) {
	transition-delay: 0.1s;
	opacity: 1;
	transform: translateX(0) rotate(0);
}

.hamburger-menu.active .menu-item:nth-child(2) {
	transition-delay: 0.15s;
	opacity: 1;
	transform: translateX(0) rotate(0);
}

.hamburger-menu.active .menu-item:nth-child(3) {
	transition-delay: 0.2s;
	opacity: 1;
	transform: translateX(0) rotate(0);
}

.hamburger-menu.active .menu-item:nth-child(4) {
	transition-delay: 0.25s;
	opacity: 1;
	transform: translateX(0) rotate(0);
}

.hamburger-menu.active .menu-item:nth-child(5) {
	transition-delay: 0.3s;
	opacity: 1;
	transform: translateX(0) rotate(0);
}

.hamburger-menu.active .menu-contacts-container {
	transition-delay: 0.35s;
	opacity: 1;
	transform: translateX(0) rotate(0);
}

.hamburger-menu.active .menu-footer-info {
	transition-delay: 0.4s;
	opacity: 1;
	transform: translateX(0) rotate(0);
}

.hamburger-menu.active .menu-contacts-container .menu-contacts-wrapper:nth-child(1) {
	transition-delay: 0.35s;
	opacity: 1;
	transform: translateX(0) rotate(0);
}

.hamburger-menu.active .menu-contacts-container .menu-contacts-wrapper:nth-child(2) {
	transition-delay: 0.4s;
	opacity: 1;
	transform: translateX(0) rotate(0);
}

.hamburger-menu.active .menu-contacts-container .menu-contacts-wrapper:nth-child(3) {
	transition-delay: 0.45s;
	opacity: 1;
	transform: translateX(0) rotate(0);
}

.hamburger-menu.active .menu-contacts-container .menu-contacts-wrapper:nth-child(4) {
	transition-delay: 0.5s;
	opacity: 1;
	transform: translateX(0) rotate(0);
}

.hamburger-menu.active .menu-footer-text {
	transition-delay: 0.55s;
	opacity: 1;
	transform: translateX(0) rotate(0);
}

.menu-item a.link {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 0;
	text-decoration: none;
	color: var(--color-primary);
	font-size: clamp(1.2rem, 5vh, 1.4rem);
	transition: color 0.05s ease;
	position: relative;
	text-rendering: optimizeLegibility;
}

.menu-item:hover a.link {
	color: var(--color-accent);
}

.menu-item:hover {
	background: none;
	box-shadow: none;
}

.menu-contacts-container {
	width: 100%;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	flex-shrink: 0;
	padding: 1.8rem 0 1.8rem 0;
	margin: auto 0;
}

.menu-footer-info {
	width: 100%;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	flex-shrink: 0;
	margin: auto 0 0 0;
	padding: 1rem 0 2rem 0;
}

.menu-contacts-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0.1rem 0;
	overflow: hidden;
	width: 100%;
}

.menu-contact-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	text-decoration: none;
	color: var(--color-text);
	transition:
		color 0.3s,
		background 0.3s,
		box-shadow 0.3s;
	gap: 0.3rem;
	padding: 0.2rem;
	margin: 0;
}

.menu-contact-icon {
	min-width: 1.2rem;
	min-height: 1.2rem;
	max-width: 1.8rem;
	max-height: 1.8rem;
}

.menu-contact-text {
	font-size: 1rem;
	color: var(--color-primary);
}

.menu-contact-link:hover .menu-contact-text {
	color: var(--color-accent);
}

.menu-footer-text {
	margin-top: auto;
	font-size: 0.6rem;
	text-align: center;
}

.menu-footer-text span {
	font-size: 0.8rem;
}

.menu-footer-text br {
	margin: 0.2rem 0;
}

.hamburger-btn .icon.icon-scrolled {
	background-color: rgba(0, 0, 0, 0.3);
	color: #fff;
	border-color: transparent;
}

.logo-header,
.desktop-nav {
	display: none;
}

@media (min-width: 1000px) {
	.logo-header {
		display: block;
		font-family: var(--font-headings);
		font-weight: 600;
		font-size: 1.75rem;
		text-decoration: none;
		transition: color 0.3s ease;
		color: var(--color-text);
	}

	.desktop-nav {
		display: block;
	}

	.desktop-nav ul {
		display: flex;
		align-items: center;
		gap: 2.5rem;
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.desktop-nav ul a.link {
		font-family: var(--font-headings);
		font-size: 1.1rem;
		font-weight: 500;
		text-decoration: none;
		position: relative;
		padding: 0.5rem 0;
		transition: color 0.3s ease;
		color: var(--color-text);
	}

	.desktop-nav ul a.link:not(.btn-header-cta)::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 1px;
		background-color: var(--color-accent);
		transform: scaleX(0);
		transform-origin: right;
		transition:
			transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
			background-color 0.3s ease;
	}

	.desktop-nav ul a.link:hover:not(.btn-header-cta) {
		color: var(--color-secondary);
	}

	.desktop-nav ul a.link:hover:not(.btn-header-cta)::after {
		transform: scaleX(1);
		transform-origin: left;
		background-color: var(--color-secondary);
	}

	.btn-header-cta {
		padding: 0.6rem 1.2rem !important;
		border-radius: 8px;
		border: 1px solid var(--color-text);
		color: var(--color-text) !important;
		transition:
			background-color 0.3s ease,
			color 0.3s ease,
			border-color 0.3s ease;
	}

	.btn-header-cta:hover {
		background-color: var(--color-secondary);
		border-color: var(--color-secondary);
		color: #fff !important;
	}

	/* ------------------ HEADER - SCROLLED ------------------ */
	header.scrolled .desktop-nav ul a.link {
		color: #fff;
	}

	header.scrolled .desktop-nav ul a.link:hover:not(.btn-header-cta) {
		color: var(--color-accent);
	}

	header.scrolled .desktop-nav ul a.link:hover:not(.btn-header-cta)::after {
		background-color: var(--color-accent);
	}

	header.scrolled .btn-header-cta {
		border-color: var(--color-accent);
		color: var(--color-accent) !important;
	}

	header.scrolled .btn-header-cta:hover {
		background-color: var(--color-accent);
		border-color: var(--color-accent);
		color: var(--color-background-footer) !important;
	}
}

/* ------------------ BASIC CONTAINERS ------------------ */
.body-container {
	width: 100%;
	display: block;
	flex: 1 0 auto;
}

main {
	width: 100%;
	height: auto;
	display: block;
	scrollbar-gutter: stable;
	background-color: var(--color-background);
	margin-top: 0;
	padding-top: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-items: flex-start;
}

a.link {
	text-decoration: none;
}

/* ---------------- BLOCK HEADINGS ---------------- */
h1 {
	font-size: 3.2rem;
}

.block-1-logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	margin-top: auto;
	width: 100%;
}

.block-1 h1 {
	font-family: var(--font-logo);
	color: var(--color-accent-2);
	margin-top: auto;
	padding: 1rem 2rem;
}

h2 {
	font-size: 1.6rem;
}

.h2-first {
	padding: 1rem;
	color: var(--color-text);
	font-size: 2.5rem;
}

.h2-second {
	padding: 1rem 2rem;
	color: var(--color-text);
	font-size: 1.9rem;
}

h3 {
	font-size: 1.2rem;
	padding-bottom: 1.4rem;
}

/* ------------------ BLOCK-1 ------------------ */

.block {
	width: 100%;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	background-color: var(--color-background);
}

.block-1 {
	height: 100svh;
	min-height: 100svh;
	max-height: 100dvh;
	position: relative;
	display: grid;
	grid-template-rows: 1.4fr 4fr 2fr;
	align-items: stretch;
	justify-items: center;
	gap: 0;
}

.block-1 * {
	line-height: 1.2;
}

@media (min-width: 1000px) {
	.block-1 {
		height: auto;
		min-height: 100dvh;
		padding-top: 4rem;
	}
}

@media (min-width: 768px), (orientation: landscape) {
	.block-1 br {
		display: none;
	}
}

.block-1-grid-1,
.block-1-grid-2,
.block-1-grid-3 {
	display: flex;
	flex-direction: column;
	height: 100%;
	margin: 0;
}

.block-1-grid-1 {
	width: 100%;
	align-items: center;
	justify-content: center;
}

.block-1-grid-2 {
	align-items: center;
	justify-content: flex-start;
}

@media (max-height: 630px) {
	.block-1-grid-2 {
		justify-content: flex-start;
	}
}

.block-1-grid-3 {
	align-items: center;
	justify-content: flex-start;
	justify-content: center;
}

@media (max-height: 630px) {
	.block-1-grid-3 {
		justify-content: flex-start;
	}
}

.block-1-wrapper {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}

.block-1-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
	display: block;
	font-size: 0;
	/* text-indent: -9999px; */
	color: transparent;
	filter: sepia(0.35) contrast(1.1) saturate(1.1) brightness(0.92);
	z-index: 0;
	transition: none;
}

.block-1-content {
	grid-row: 2 / 3;
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	text-align: center;
	width: 100%;
	margin: 1rem 0 0 0;
}

.block-1-content p {
	font-family: var(--font-headings);
	font-size: 1.2rem;
}

@media (min-width: 768px), (orientation: landscape) {
	.block-1-content h3 {
		font-size: 1.35rem;
	}
}

.block-1-cta {
	grid-row: 3 / 4;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin-top: 2rem;
	margin-bottom: auto;
}

main section:not(:first-of-type) {
	display: flex;
	justify-content: center;
	align-items: center;
}

.block-content {
	width: 100%;
	height: 100%;
	position: relative;
	padding: 1rem;
	z-index: 0;
	overflow: hidden;
	margin: 0 0 3.2rem 0;
}

@media (min-width: 1200px) {
	.block-content {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
}

.h2-title {
	width: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	position: relative;
	margin-left: 2rem;
	font-family: var(--font-headings);
	font-weight: 600;
	line-height: 1;
	color: var(--color-accent-2);
	letter-spacing: 0.5px;
	font-size: 2.8rem;
	text-align: left;
}

@media (min-width: 680px) {
	.h2-title {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		font-size: 3rem;
		margin-left: 0;
		white-space: pre-wrap;
	}
}

/* ---------------- CTA BUTTON ---------------- */
.btn-hero {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: relative;
	padding: 1rem 1rem;
	border-radius: 50px;
	color: #ffffff;
	font-weight: 600;
	font-size: 1.5rem;
	overflow: hidden;
	background: transparent;
	transform-origin: center center;
	transition: transform 0.3s ease;
}

.btn-hero:hover {
	transform: translate3d(0, -3px, 0);
}

.btn-hero .btn-bg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--color-secondary);
	border-radius: 50px;
	z-index: 10;
	transition: background-color 0.3s ease;
}

.btn-hero .btn-text {
	display: inline-block;
	position: relative;
	z-index: 10;
}

.btn-hero::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.35s ease-in-out;
	z-index: 50;
}

.btn-hero:hover::after {
	left: 100%;
}

.btn-hero:hover .btn-bg {
	background-color: #4a3020;
}

/* ------------------ BLOCKQUOTES ------------------ */
.blockquote-container {
	min-width: 100%;
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	isolation: isolate;
	background-color: transparent;
	padding: 2rem 1rem 2rem 1rem;
}

.blockquote-container::before {
	content: '';
	display: none;
}

@media (min-width: 768px), (orientation: landscape) {
	.blockquote-container {
		padding: 2.5rem 2rem;
	}
}

@media (min-width: 1200px) {
	.blockquote-container {
		padding-top: 2.4rem;
		padding-bottom: 2.4rem;
	}
}

@media (min-width: 1600px) {
	.blockquote-container {
		max-width: 1600px;
	}
}

blockquote {
	min-height: 100%;
	max-height: 100%;
	width: auto;
	max-width: 80%;
	margin-top: 1rem;
	padding: 1rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	font-family: var(--font-headings);
	font-style: italic;
	font-weight: 500;
	font-size: 2rem;
	line-height: 1.1;
	border-left: none;
	color: var(--color-accent-2);
	text-align: center;
}

blockquote p {
	width: 100%;
	height: 100%;
	font-family: var(--font-headings);
	font-weight: 400;
	text-align: center;
}

@media (min-width: 768px), (orientation: landscape) {
	blockquote p br {
		display: none;
	}
}

.blockquote-footer {
	font-size: 0.9rem;
	color: var(--color-secondary);
	margin-top: 1.5rem;
	padding: 1.2rem 2.4rem;
	background: none;
	-webkit-text-fill-color: var(--color-secondary);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-family: var(--font-text);
}

/* ------------------ BLOCK-2 ------------------ */
.brand-gold {
	background: linear-gradient(45deg, #5c4400, #8b6d1f, #c9a03c, #5c4400);
	background-size: 300% 300%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: dark-gold-shimmer 5s ease-in-out infinite;
	text-decoration: none;
	font-style: italic;
}

@media (min-width: 768px) {
	.block-2-1-content {
		margin-top: 0.4rem;
		margin-bottom: 5rem;
	}
}

@media (min-width: 900px) {
	.block-2-1-content {
		margin-bottom: 5.6rem;
	}
}

@media (min-width: 1200px) {
	.block-2-1-content {
		max-width: 1280px;
	}
}

.block-2-2 {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 1.4rem;
	margin: 0 1rem 1rem 1rem;
	background-color: var(--color-primary);
}

@media (min-width: 768px), (orientation: landscape) {
	.block-2-2 {
		flex-direction: row;
	}
}

@media (min-width: 1200px) {
	.block-2-2 {
		justify-content: center;
	}
}

.block-2-2-lead {
	padding: 0 2rem;
	font-family: var(--font-text);
	font-weight: 400;
	font-size: 1.2rem;
	line-height: 1.4;
	color: var(--color-text);
	text-align: center;
}

@media (min-width: 768px), (orientation: landscape) {
	.block-2-2-lead {
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
		padding: 1rem 2rem;
		font-size: 1.3rem;
	}
}

@media (min-width: 1200px) {
	.block-2-2-lead {
		margin-right: 0;
	}
}

.extra-wrapper {
	max-width: 100%;
	width: 100%;
	height: 100%;
	position: relative;
	padding: 0;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-items: center;
}

/* ------------------ SLIDER ------------------ */
.block-2-3 {
	width: 100%;
	margin: 1rem;
	background-color: var(--color-background);
}

.slider-container {
	width: 100%;
	max-width: 480px;
	padding-top: 1rem;
	padding-bottom: 3.5rem;
	overflow: hidden;
}

.slider-card {
	width: 80%;
	height: auto;
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	display: block;
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.slider-card img {
	max-width: 450px;
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	aspect-ratio: 4 / 5;
	margin-left: auto;
	margin-right: auto;
	border-radius: 0;
}

@media (min-width: 450px) {
	.slider-card img {
		border-radius: 18px;
	}
}

@media (min-width: 550px) {
	.slider-container {
		max-width: 560px;
	}

	.slider-card {
		width: 100%;
		max-width: 350px;
		margin: 0 auto;
	}
}

@media (min-width: 900px) {
	.slider-card {
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
	}

	.extra-wrapper {
		margin-top: auto;
		margin-bottom: auto;
	}

	.block-2-4 p {
		margin-bottom: 0;
	}
}

@media (min-width: 1300px) {
	.slider-card {
		max-width: 350px;
	}

	.slider-container {
		max-width: 100%;
	}
}

.slider-pagination .swiper-pagination-bullet {
	width: 14px;
	height: 14px;
	background: var(--color-primary);
	opacity: 0.5;
	margin: 0 6px !important;
	transition:
		opacity 0.3s ease,
		background-color 0.3s ease,
		transform 0.3s ease;
}

.slider-pagination .swiper-pagination-bullet-active {
	opacity: 1;
	background: var(--color-accent);
	transform: scale(1.3);
}

.slider-prev,
.slider-next {
	background-color: rgba(0, 0, 0, 0.6);
	color: #ffffff;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	backdrop-filter: blur(2px);
	border: none;
	transition:
		background-color 0.3s ease,
		color 0.3s ease,
		transform 0.3s ease;
	z-index: 10;
}

.slider-prev:after,
.slider-next:after {
	font-size: 1.2rem;
	font-weight: bold;
}

.slider-prev:hover,
.slider-next:hover {
	background-color: var(--color-accent);
	color: #fff;
	transform: scale(1.1);
}

@media (max-width: 900px) {
	.slider-prev,
	.slider-next {
		display: none;
	}
}

/* ------------------ BLOCK-2-4 ------------------ */
.block-2-4 {
	max-width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 2.5rem 1rem;
	gap: 1.5rem;
	background-color: var(--color-background-2);
	margin: auto 0;
}

.block-2-4 p {
	max-width: 80%;
	font-size: 1.1rem;
	line-height: 1.4;
	color: var(--color-text);
	font-family: var(--font-text);
	font-weight: 400;
	text-align: left;
}

@media (min-width: 768px), (orientation: landscape) {
	.block-2-4 p {
		max-width: 60%;
		font-size: 1.2rem;
		font-weight: 500;
	}
}

@media (min-width: 2000px) {
	.block-2-4 p {
		width: 50%;
	}
}

/* ------------------ BLOCK-3 ------------------ */
.block-3-0-quote {
	margin-top: 0;
}

.block-3-1-content {
	margin-top: 0.2rem;
	margin-bottom: 2.8rem;
}

@media (min-width: 768px) {
	.block-3-1-content {
		margin-top: 1rem;
		margin-bottom: 3.2rem;
	}
}

@media (min-width: 900px) {
	.block-3-0-quote {
		padding-top: 4rem;
	}
	.block-3-1-content {
		margin-bottom: 4rem;
	}
}

@media (min-width: 1200px) {
	.block-3-1-content {
		max-width: 1280px;
	}
}

.features-grid {
	width: 100%;
	max-width: 1200px;
	padding: 1rem 5% 1rem 5%;
	display: grid;
	grid-template-columns: 1fr;
	gap: 4.5rem;
	margin: 0 auto;
}

@media (min-width: 768px) {
	.features-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
		padding-top: 2rem;
	}
}

@media (min-width: 1200px) {
	.features-grid {
		padding-left: 0;
		padding-right: 0;
	}
}

.feature-card {
	background-color: #ffffff;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(45, 44, 43, 0.08);
	overflow: hidden;
	text-align: center;
	display: flex;
	flex-direction: column;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(45, 44, 43, 0.12);
}

.feature-card-image img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	display: block;
}

.feature-card-content {
	padding: 1.5rem 2rem 2rem 2rem;
}

.feature-card-content h3 {
	font-size: clamp(1.5rem, 4vw, 1.75rem);
	color: var(--color-accent-2);
	margin-bottom: 0.75rem;
	padding: 0;
}

.feature-card-content p {
	font-size: 1.05rem;
	line-height: 1.6;
	color: var(--color-text);
}

/* ------------------ BLOCK-4 ------------------ */
/* .block-4-0-quote {
	margin-top: 0.6rem;
} */

@media (min-width: 768px) {
	.block-4 {
		margin-bottom: 3.2rem;
	}

	/* .block-4-0-quote {
		margin-top: 1.6rem;
	} */
}

.block-4-1-content {
	margin-top: 5rem;
	margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
	.block-4-1-content {
		margin-top: 6rem;
		margin-bottom: 3rem;
	}
}

@media (min-width: 900px) {
	.block-4-1-content {
		margin-top: 7rem;
		margin-bottom: 5rem;
	}
}

@media (min-width: 1200px) {
	.block-4-1-content {
		max-width: 1280px;
	}
}

.service-container {
	width: 100%;
	max-width: 1200px;
	padding: 1rem 5% 1rem 5%;
	display: flex;
	flex-direction: column;
	gap: 4.5rem;
	margin: 0 auto;
}

@media (min-width: 768px) {
	.service-container {
		gap: 5rem;
		padding-top: 2rem;
	}
}

@media (min-width: 1200px) {
	.service-container {
		padding-left: 0;
		padding-right: 0;
		width: 90%;
	}
}

.service-entry {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	align-items: center;
}

@media (min-width: 768px) {
	.service-entry {
		flex-direction: row;
		gap: 3rem;
	}
}

.service-image {
	flex: 1;
	width: 100%;
}

.service-image img {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(45, 44, 43, 0.1);
}

.service-content {
	flex: 1;
	width: 100%;
	text-align: left;
	color: var(--color-text);
}

.service-content h3 {
	font-size: clamp(2rem, 5vw, 2.5rem);
	color: var(--color-accent-2);
	padding: 0;
	margin-bottom: 3rem;
}

.service-content p {
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.service-details {
	list-style-type: none;
	padding-left: 0;
	margin-bottom: 2rem;
}

.service-details li {
	padding-left: 1.8rem;
	position: relative;
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 0.5rem;
}

.service-details li::before {
	content: '•';
	color: var(--color-accent);
	font-weight: bold;
	display: inline-block;
	position: absolute;
	left: 0;
	font-size: 1.5rem;
	line-height: 1;
}

.service-time {
	font-style: italic;
	color: var(--color-secondary);
}

.btn-service {
	display: inline-block;
	padding: 0.3rem 0;
	background-color: transparent;
	color: var(--color-text);
	text-decoration: none;
	border-radius: 0;
	font-weight: 600;
	font-size: 1.1rem;
	position: relative;
	transition: color 0.3s ease;
	border-bottom: none;
	margin-left: 1.7rem;
}

.btn-service::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--color-accent);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-service:hover {
	background-color: transparent;
	color: var(--color-secondary);
}

.btn-service:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

@media (min-width: 768px) {
	.service-container {
		gap: 7rem;
	}

	.service-image {
		margin: 0.5rem 0 auto 0;
	}

	.service-entry--reverse {
		flex-direction: row-reverse;
	}
}

/* ------------------ PRICING NOTE ------------------ */
.services-pricing-note {
	width: 90%;
	max-width: 800px;
	margin: 4rem auto 0 auto;
	text-align: center;
	padding: 2.5rem 2rem;
	background-color: #ffffff;
	border-radius: 16px;
	box-shadow: 0 10px 40px -10px rgba(45, 44, 43, 0.1);
	position: relative;
	overflow: hidden;
}

.services-pricing-note::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.services-pricing-note h4 {
	font-family: var(--font-headings);
	font-size: 1.8rem;
	color: var(--color-accent-2);
	margin-bottom: 1.2rem;
	position: relative;
	display: inline-block;
}

.services-pricing-note p {
	font-family: var(--font-text);
	font-size: 1.15rem;
	color: var(--color-text);
	line-height: 1.5;
	max-width: 95%;
	margin: 0 auto 0.8rem auto;
}

.services-pricing-note p:last-of-type {
	margin-bottom: 0;
}

.services-pricing-note strong {
	color: var(--color-secondary);
	font-weight: 600;
}

@media (min-width: 768px) {
	.services-pricing-note {
		margin-top: 6rem;
		padding: 3rem 4rem;
	}
}

/* ------------------ BLOCK-5 ------------------ */
/* .block-5-0-quote {
	margin-top: 2rem;
} */

/* @media (min-width: 768px) {
	.block-5-0-quote {
		margin-top: 0;
	}
} */

/* @media (min-width: 600px) {
	.block-5-0-quote br {
		display: none;
	}
} */

.block-5-1-content {
	margin-top: 6.6rem;
	margin-bottom: 1.4rem;
}

@media (min-width: 768px) {
	.block-5-1-content {
		margin-top: 4.6rem;
		margin-bottom: 3rem;
	}
}

@media (min-width: 900px) {
	.block-5-1-content {
		margin-bottom: 5rem;
	}
}

@media (min-width: 1200px) {
	.block-5-1-content {
		max-width: 1280px;
	}

	.block-5-2 {
		max-width: 1280px;
	}
}

.how-it-works-container {
	width: 100%;
	max-width: 1200px;
	padding: 2rem 5%;
	display: flex;
	flex-direction: column;
	gap: 3.6rem;
	margin: 0 auto 0 auto;
}

@media (max-width: 499px) {
	.how-it-works-container {
		padding: 2rem 0;
	}
}

.process-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 1.2rem;
}

@media (min-width: 768px) {
	.process-step {
		flex-direction: row;
		gap: 3rem;
		align-items: center;
	}

	.process-step:nth-child(even) {
		flex-direction: row-reverse;
	}
}

.how-it-works-container > .process-step:last-of-type {
	margin-bottom: 0;
}

.step-image-wrapper {
	flex: 1;
	width: 100%;
}

.step-image-wrapper img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 499px) {
	.step-image-wrapper img {
		border-radius: 0;
	}
}

@media (min-width: 768px) {
	.step-image-wrapper img {
		margin: auto;
		margin-top: 10vh;
	}

	.step-image-wrapper img:first-of-type {
		margin-top: 0;
	}
}

.step-content-wrapper {
	flex: 1;
	text-align: left;
	width: 100%;
}

@media (max-width: 499px) {
	.step-content-wrapper {
		padding: 0 1.5rem;
	}
}

@media (min-width: 650px) and (max-width: 850px) {
	.step-content-wrapper {
		position: relative;
		top: 0;
		left: 3%;
	}
}

.step-number {
	display: block;
	font-family: var(--font-headings);
	font-size: clamp(3rem, 8vw, 4rem);
	font-weight: 600;
	color: var(--color-primary);
	line-height: 1;
	margin-bottom: -1rem;
	padding: 0 1rem 1rem 0;
}

.step-title {
	font-size: clamp(1.8rem, 5vw, 2.2rem);
	color: var(--color-accent-2);
	padding: 0;
	margin: 0.6rem 0 1rem 0;
}

.additional {
	width: 100%;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 1rem;
	min-height: 0;
}

.additional p {
	text-align: left;
	font-size: 1.1rem;
	line-height: 1.6;
	padding: 0;
	width: 100%;
	color: var(--color-text);
}

/* ------------------ FAQ BLOCK ------------------ */
.block-5-3-content {
	margin: 5rem 0 1rem 0;
}

@media (min-width: 768px) {
	.block-5-3-content {
		margin-top: 7rem;
		margin-bottom: 3rem;
	}
}

@media (min-width: 900px) {
	.block-5-3-content {
		margin-top: 9.4rem;
	}
}

@media (min-width: 1200px) {
	.block-5-3-content {
		max-width: 1280px;
	}
}

.faq-list {
	width: 74%;
	text-align: left;
	max-width: 50rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 1rem;
}

.faq-question {
	background: transparent;
	border: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding: 1.5rem 2.5rem 1.5rem 0;
	font-size: 1.3rem;
	text-align: left;
	width: 100%;
	cursor: pointer;
	position: relative;
	border-radius: 0;
	transition: color 0.3s ease;
	font-family: var(--font-headings);
	font-weight: 500;
	color: var(--color-text);
	line-height: 1.3;
}

.faq-question:hover {
	background: transparent;
	color: var(--color-secondary);
	color: #5b3c29;
}

.faq-question::after {
	content: '+';
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	font-weight: 300;
	font-size: 1.8rem;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
	transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
	background: transparent;
	padding: 0;
}

.faq-answer p {
	opacity: 0;
	transform: translateY(-15px);
	transition:
		opacity 0.3s ease-out,
		transform 0.3s ease-out;
	color: var(--color-secondary);
	text-align: left;
	margin: 0 0 0 0.8rem;
	padding: 1.2rem 0 2rem 0;
	line-height: 1.6;
	font-size: 1.1rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	text-align: left;
}

.faq-answer br {
	margin: 0.6rem;
}

#faq-answer-2 .list-br-outer {
	margin: 1rem;
}

#faq-answer-2 .list-br-inner {
	margin: 0.2rem;
}

.faq-item.active .faq-answer {
	max-height: 50rem;
}

.faq-item.active .faq-answer p {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.15s;
	padding-top: 2rem;
}

/* ------------------ BLOCK-6 ------------------ */
.block-6 {
	width: 100%;
	background-color: var(--color-background);
	padding: 4rem 1rem 6rem 1rem;
	margin: 4rem 0 2rem 0;
	position: relative;
	overflow: hidden;
}

@media (min-width: 768px) {
	.block-6 {
		margin-top: 5.4rem;
	}
}

@media (min-width: 900px) {
	.block-6 {
		padding: 6rem 2rem 8rem 2rem;
		margin-top: 6rem;
	}
}

.contact-section-wrapper {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 4rem;
}

.contact-info-side {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

@media (min-width: 900px) {
	.contact-info-side {
		padding: 0;
		max-width: 10%;
	}
}

.contact-title {
	font-family: var(--font-headings);
	font-weight: 600;
	line-height: 1;
	color: var(--color-accent-2);
	letter-spacing: 0.5px;
	font-size: 2.8rem;
	text-align: left;
	margin: 0 0 2rem 2rem;
}

@media (min-width: 680px) and (max-width: 899px) {
	.contact-info-slide {
		align-items: center;
	}

	.contact-title {
		display: block;
		text-align: center;
		margin-left: 0;
		white-space: normal;
	}

	.contact-header .contact-desc {
		text-align: center;
		margin-left: auto;
		margin-right: auto;
		max-width: 80%;
	}

	.contact-links-list {
		width: 100%;
		max-width: 500px;
	}
}

@media (min-width: 900px) {
	.contact-title {
		margin-bottom: 0;
	}
}

.contact-desc {
	font-size: 1.1rem;
	line-height: 1.6;
	color: var(--color-text);
	opacity: 0.8;
	text-align: left;
	margin: 3.2rem 0 1rem 2rem;
	max-width: 80%;
}

@media (min-width: 680px) {
	.contact-desc {
		margin-top: 4rem;
	}
}

.contact-links-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
	padding: 0 2rem;
}

@media (min-width: 900px) {
	.contact-section-wrapper {
		flex-direction: row;
		align-items: flex-start;
		justify-content: center;
		gap: 3rem;
	}

	.contact-info-side {
		width: 42%;
		flex: initial;
		max-width: 400px;
		position: sticky;
		top: 8rem;
		margin-left: 2rem;
		margin: 0 0 5rem 2rem;
	}

	.contact-form-side {
		width: 48%;
		flex: initial;
		max-width: 500px;
		display: flex;
		justify-content: flex-start;
		margin: 0;
	}

	.contact-title {
		margin-left: 0;
		margin-bottom: 1.5rem;
		font-size: clamp(3rem, 5vw, 4rem);
		text-align: left;
	}

	.contact-desc {
		margin-left: 0;
		max-width: 95%;
		text-align: left;
	}

	.contact-links-list {
		padding: 0;
		width: 100%;
	}

	.contact-form {
		width: 100%;
		margin: 0;
	}
}

@media (min-width: 1200px) {
	.contact-section-wrapper {
		gap: 5rem;
	}
}

.contact-row-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.2rem 0;
	text-decoration: none;
	border-bottom: 1px solid rgba(45, 44, 43, 0.15);
	transition:
		border-color 0.3s ease,
		background-color 0.3s ease;
}

.contact-row-link:hover {
	border-bottom-color: var(--color-secondary);
	background-color: rgba(213, 201, 171, 0.1);
}

.c-icon-box {
	width: 2rem;
	height: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 1rem;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-row-link:hover .c-icon-box {
	transform: translateX(10px);
}

.c-icon-box img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-row-link:hover .c-icon-box img {
	transform: scale(1.1) rotate(5deg);
}

.c-text {
	flex: 1;
	font-family: var(--font-headings);
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--color-text);
	text-align: left;
	transition:
		padding-left 0.4s cubic-bezier(0.22, 1, 0.36, 1),
		color 0.3s ease;
}

.contact-row-link:hover .c-text {
	color: var(--color-secondary);
	padding-left: 10px;
}

.c-arrow {
	font-size: 1.5rem;
	color: var(--color-accent);
	opacity: 0;
	transform: translateX(-20px);
	transition:
		opacity 0.3s ease,
		transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-row-link:hover .c-arrow {
	opacity: 1;
	transform: translateX(0);
}

.contact-form-side {
	width: 100%;
	display: flex;
	justify-content: center;
}

.contact-form {
	width: 100%;
	max-width: 450px;
	background-color: #ffffff;
	padding: 3rem 2.5rem;
	border-radius: 24px;
	box-shadow: 0 20px 50px -10px rgba(45, 44, 43, 0.1);
	display: flex;
	flex-direction: column;
	gap: 2rem;
	position: relative;
	margin: 2rem auto 2rem auto;
}

.form-h3 {
	font-family: var(--font-headings);
	font-size: 2.2rem;
	color: var(--color-accent-2);
	text-align: center;
	line-height: 1.2;
	margin-bottom: 0.5rem;
}

.form-group {
	width: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 1rem 0;
	border: none;
	border-bottom: 1px solid rgba(45, 44, 43, 0.2);
	border-radius: 0;
	font-family: var(--font-text);
	font-size: 1.1rem;
	background-color: transparent;
	color: var(--color-text);
	resize: none;
	transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: var(--color-accent);
}

.contact-form label {
	position: absolute;
	top: 1rem;
	left: 0;
	font-family: var(--font-text);
	font-size: 1rem;
	color: rgba(45, 44, 43, 0.5);
	pointer-events: none;
	transition: 0.3s ease;
}

.contact-form input:focus + label,
.contact-form input:not(:placeholder-shown) + label,
.contact-form textarea:focus + label,
.contact-form textarea:not(:placeholder-shown) + label {
	top: -0.5rem;
	font-size: 0.85rem;
	color: var(--color-accent);
	font-weight: 600;
}

.btn-send {
	width: 100%;
	padding: 1.2rem;
	margin-top: 1rem;
	background-color: var(--color-text);
	color: #fff;
	border: none;
	border-radius: 50px;
	font-family: var(--font-headings);
	font-size: 1.3rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition:
		background-color 0.3s ease,
		transform 0.2s ease;
}

.btn-send:hover {
	background-color: var(--color-accent);
	transform: translateY(-2px);
	color: var(--color-text);
}

/* ---------------- FOOTER BLOCK ---------------- */
footer {
	width: 100%;
	background-color: var(--color-background-footer);
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	user-select: text;
}

.footer-center {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 1rem 0 1rem 0;
	margin: 2rem 0 4rem 0;
}

@media (min-width: 1200px) {
	.footer-center {
		max-width: 1280px;
	}
}

.footer-center a {
	font-size: 1.6rem;
}

.footer-center p {
	padding: 0.5rem 0 0 0;
}

.brand-footer {
	font-size: 1.1rem;
}

.contact-email {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 1rem 0 1rem 0;
	gap: 1rem;
	line-height: 1rem;
	cursor: pointer;
	text-decoration: none;
}

.mail-icon {
	width: 2.5rem;
	height: 2.5rem;
	display: block;
	margin: 0 auto;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.contact-email:hover .mail-icon {
	transform: scale(1.15);
}

.brand-gold,
.brand-gold:hover {
	text-decoration: none;
}

.brand-footer {
	font-size: 1rem;
}

p.contact-email-a {
	font-size: 1.2rem;
	text-decoration: none;
	color: var(--color-background);
	transition: color 0.4s ease-in-out;
	transition-delay: 0.05s;
	text-decoration: none;
	margin: 1rem 0 0 0;
	padding: 0;
}

.contact-email:hover .contact-email-a {
	color: var(--color-accent);
}

/* ---------------- DIMMED OVERLAY ---------------- */
#page-overlay {
	position: fixed;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 50;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease-in-out;
}

#page-overlay.active {
	opacity: 1;
	pointer-events: auto;
}

/* ---------------- OBJECT-POSITION ---------------- */
.block-1-image {
	object-position: center;
}

.feature-card-2 img {
	object-fit: cover;
	object-position: 50% 59%;
}

.service-entry:first-of-type img {
	object-fit: cover;
	object-position: 50% 76%;
}

.service-entry--reverse img {
	object-fit: cover;
	object-position: 50% 51%;
}

.process-step-1 img {
	object-fit: cover;
	object-position: 50% 56%;
}

.process-step-2 img {
	object-fit: cover;
	object-position: 50% 42%;
}

.process-step-3 img {
	object-fit: cover;
	object-position: 50% 50%;
}

.process-step-4 img {
	object-fit: cover;
	object-position: 50% 50%;
}

.process-step-5 img {
	object-fit: cover;
	object-position: 50% 30%;
}

@media (min-width: 500px) {
	.feature-card-2 img {
		object-fit: cover;
		object-position: 50% 69%;
	}

	.feature-card-3 img {
		object-fit: cover;
		object-position: 50% 65%;
	}
}

@media (max-width: 576px) {
	.block-1-image {
		object-position: center top;
		object-position: 45% 50%;
	}
}

@media (min-width: 1600px) {
	.block-1-image {
		object-position: center 35%;
	}

	.feature-card-2 img {
		object-fit: cover;
		object-position: 50% 59%;
	}

	.feature-card-3 img {
		object-fit: cover;
		object-position: 50% 65%;
	}
}

/* ---------------- SLIDER QUERIES + ---------------- */
@media (min-width: 900px) {
	.extra-wrapper {
		width: 100%;
		max-width: 1440px;
		margin: 2rem auto 0 auto;
		padding: 0 2rem;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
		align-items: center;
		justify-items: center;
	}

	.block-2-3 {
		grid-column: 1 / 2;
		grid-row: 1;
		width: 100%;
		margin: 0;
		display: flex;
		justify-content: center;
	}

	.block-2-4 {
		grid-column: 2 / 3;
		grid-row: 1;
		width: 100%;
		height: auto;
		position: static;
		margin: 0;
		padding: 0;
		left: auto;
		bottom: auto;
		background-color: transparent;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
	}

	.block-2-4 p {
		width: 100%;
		max-width: 500px;
		padding: 0;
		text-align: left;
		font-size: 1.1rem;
		line-height: 1.6;
	}

	.block-2-4 p:last-child {
		margin-bottom: 0;
	}
}

@media (min-width: 1200px) {
	.extra-wrapper {
		gap: 5rem;
	}

	.block-2-3 {
		max-width: 1280px;
	}

	.block-2-4 p {
		margin-bottom: 0.8rem;
	}
}

@media (min-width: 1300px) {
	.block-2-4 {
		margin-bottom: 2rem;
	}
}

/* ---------------- SCROLL-MARGIN-TOP ---------------- */
#why-us,
#services,
#how-it-works {
	scroll-margin-top: -0.8rem;
}

#contacts {
	scroll-margin-top: -3.5rem;
}

@media (min-width: 1000px) {
	#why-us,
	#services,
	#how-it-works {
		scroll-margin-top: 3.8rem;
	}

	#contacts {
		scroll-margin-top: -1rem;
	}
}

/* ---------------- ANTI-BLUR FIX ---------------- */
.btn-hero,
.feature-card,
.slider-card,
.slider-prev,
.slider-next,
.btn-send,
.contact-row-link,
.c-icon-box img,
.menu-item a.link {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transform: translateZ(0);
	backface-visibility: hidden;
	will-change: transform;
}

.c-arrow {
	transform: translate3d(-10px, 0, 0);
	backface-visibility: hidden;
	will-change: transform, opacity;
}

/* ---------------- HEADER-BTN-CTA ---------------- */
.btn-header-cta {
	transition:
		opacity 0.3s ease,
		transform 0.3s ease,
		background-color 0.3s ease,
		color 0.3s ease;
}

/* ------------------ SUCCESS MODAL ------------------ */
.modal-overlay {
	position: fixed;
	inset: 0;
	background-color: rgba(15, 17, 25, 0.6);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	z-index: 200;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1rem;

	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity 0.3s ease,
		visibility 0.3s ease;
}

.modal-overlay.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.modal-content {
	background-color: var(--color-background);
	width: 100%;
	max-width: 480px;
	padding: 3rem 2rem;
	border-radius: 24px;
	box-shadow: var(--shadow-soft);
	position: relative;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;

	transform: translateY(20px) scale(0.95);
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-overlay.is-open .modal-content {
	transform: translateY(0) scale(1);
}

.modal-close-btn {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--color-text);
	padding: 0.5rem;
	transition:
		color 0.3s ease,
		transform 0.3s ease;
}

.modal-close-btn:hover {
	color: var(--color-accent);
	transform: rotate(90deg);
}

/* Success Checkmark */
.modal-icon {
	width: 4rem;
	height: 4rem;
	margin-bottom: 1.5rem;
	color: var(--color-accent);
}

.modal-icon svg {
	width: 100%;
	height: 100%;
}

/* Typography */
.modal-title {
	font-family: var(--font-headings);
	font-size: 2.2rem;
	color: var(--color-accent-2);
	margin-bottom: 1rem;
	padding-bottom: 0;
	line-height: 1.2;
}

.modal-text {
	font-family: var(--font-text);
	font-size: 1.1rem;
	color: var(--color-text);
	margin-bottom: 2rem;
	line-height: 1.5;
}

.modal-btn-ok {
	font-size: 1.1rem;
	padding: 0.8rem 2.5rem;
	cursor: pointer;
	border: none;
	min-width: 150px;
}

/* ---------------- FORM-H ---------------- */
.form-h {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	height: 0;
	width: 0;
	z-index: -1;
	overflow: hidden;
}

/* ---------------- 1600+ ---------------- */
@media (min-width: 1601px) {
	.block,
	.blockquote-container,
	.block-1 {
		max-width: none;
		width: 100%;
	}

	.block-content,
	.features-grid,
	.service-container,
	.how-it-works-container,
	.extra-wrapper,
	.contact-section-wrapper,
	.footer-center {
		max-width: 1600px;
		margin-left: auto;
		margin-right: auto;
	}

	.block-2-2 {
		justify-content: center;
	}

	.block-2-4 {
		padding-left: 4rem;
		padding-right: 4rem;
	}

	.faq-list {
		max-width: 1000px;
		margin: 0 auto;
	}

	.contact-section-wrapper {
		justify-content: center;
		gap: 8rem;
	}
}

@media (orientation: landscape), (min-height: 900px) {
	.hamburger-menu {
		overflow-y: auto;
	}
}

@media (min-width: 1000px) and (max-height: 700px) {
	.block-1 {
		grid-template-rows: 1fr 4fr 2fr;
	}

	.block-1-logo {
		justify-content: center;
		margin-top: 0;
	}

	.block-1-logo .logo {
		justify-content: center;
		padding-top: 0.4rem;
		padding-bottom: 0.4rem;
	}

	.block-1-content {
		margin-top: 0.4rem;
	}
}

@media (min-width: 1000px) and (max-height: 700px) {
	.block-1 h1 {
		font-size: 2rem;
	}

	.h2-first,
	.h2-second {
		font-size: 1.6rem;
	}

	.block-1 {
		padding-top: 5rem;
	}
}

@media (max-height: 700px) {
	.block-1 {
		grid-template-rows: 1fr 2fr 1fr;
	}
	.h2-first,
	.h2-second {
		padding-top: 0.6rem;
		padding-bottom: 0.6rem;
	}
}
