
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1002;
	background: rgba(6, 6, 6, 0.78);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header__inner {
	display: flex;
	align-items: center;
	gap: clamp(12px, 2vw, 28px);
	max-width: 1320px;
	margin: 0 auto;
	padding: 10px clamp(16px, 3vw, 32px);
}

.site-header__brand {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	max-width: min(240px, 42vw);
}

.site-header__brand img {
	display: block;
	width: auto;
	height: auto;
	max-height: 52px;
	object-fit: contain;
}

@media (min-width: 992px) {
	.site-header__inner {
		padding-top: 12px;
		padding-bottom: 12px;
	}

	.site-header__brand {
		max-width: min(320px, 36vw);
	}

	.site-header__brand img {
		max-height: 110px;
	}
}

@media (min-width: 1400px) {
	.site-header__brand img {
		max-height: 72px;
	}
}

.site-header__nav {
	flex: 1 1 auto;
	min-width: 0;
}

.site-header__menu {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-end;
	gap: 4px 0;
	margin: 0;
	padding: 0;
	list-style: none;
	/* Ù„Ø§ ØªØ³ØªØ®Ø¯Ù… overflow-x: auto Ù‡Ù†Ø§ â€” ÙŠÙ‚ØµÙ‘ Ø§Ù„Ù‚ÙˆØ§Ø¦Ù… Ø§Ù„Ù…Ù†Ø³Ø¯Ù„Ø© (position:absolute) */
	overflow: visible;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.site-header__menu::-webkit-scrollbar {
	display: none;
}

.site-header__item {
	position: relative;
	flex: 0 0 auto;
	white-space: nowrap;
}

.site-header__link,
.site-header__drop-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 12px;
	font-family: var(--tt-alter-font, "Poppins", system-ui, sans-serif);
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.92);
	background: none;
	border: none;
	cursor: pointer;
	line-height: 1.2;
	transition: color 0.2s, background 0.2s;
}

.site-header__link:hover,
.site-header__link:focus-visible,
.site-header__drop-btn:hover,
.site-header__drop-btn:focus-visible {
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	outline: none;
}

.site-header__link.is-active {
	color: var(--tt-main-color, #c9a87c);
}

.site-header__chev {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.site-header__chev-svg {
	display: block;
	width: 12px;
	height: 12px;
	opacity: 0.85;
}

.site-header__item--dropdown.is-open .site-header__chev {
	transform: rotate(180deg);
}

/* Ù‚Ø§Ø¦Ù…Ø© Ù…Ù†Ø³Ø¯Ù„Ø© */
.site-header__dropdown {
	position: absolute;
	top: calc(100% - 2px);
	inset-inline-end: 0;
	min-width: 220px;
	max-width: min(320px, 90vw);
	margin: 0;
	padding: 8px 0;
	list-style: none;
	background: rgba(16, 16, 16, 0.97);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	pointer-events: none;
	transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
	z-index: 20;
}

.site-header__dropdown a {
	display: block;
	padding: 10px 18px;
	font-size: 14px;
	font-weight: 500;
	text-transform: none;
	letter-spacing: 0.02em;
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	white-space: normal;
}

.site-header__dropdown a:hover,
.site-header__dropdown a:focus-visible {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	outline: none;
}

.site-header__item--dropdown:hover .site-header__dropdown,
.site-header__item--dropdown:focus-within .site-header__dropdown,
.site-header__item--dropdown.is-open .site-header__dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.site-header__item--lang {
	margin-inline-start: 4px;
	padding-inline-start: 8px;
	border-inline-start: 1px solid rgba(255, 255, 255, 0.2);
}

.site-header__link--lang {
	font-weight: 700;
}

.site-header__mobile-meta {
	display: none;
}

/* Ø·Ø¨Ù‚Ø© ØªØ¹ØªÙŠÙ… Ø®Ù„Ù Ø§Ù„Ù‚Ø§Ø¦Ù…Ø© Ø§Ù„Ø¬Ø§Ù†Ø¨ÙŠØ© (Ø§Ù„Ù…ÙˆØ¨Ø§ÙŠÙ„) */
.site-header__backdrop {
	position: fixed;
	inset: 0;
	z-index: 1001;
	background: rgba(0, 0, 0, 0.5);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.28s ease, visibility 0.28s ease;
}

body.site-header-nav-open .site-header__backdrop {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

/* Ø²Ø± Ø§Ù„Ù‚Ø§Ø¦Ù…Ø© â€” ÙŠØ¸Ù‡Ø± ÙÙ‚Ø· Ø¹Ù„Ù‰ Ø§Ù„Ø´Ø§Ø´Ø§Øª Ø§Ù„Ø¶ÙŠÙ‚Ø© */
.site-header__toggle {
	display: none;
}

.site-header__toggle-x {
	display: none;
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-bars {
	display: none;
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-x {
	display: block;
}

.site-header__icon-svg {
	display: block;
}

@media (max-width: 991px) {
	/*
	 * theme.css ÙŠØ¶ÙŠÙ Ø¹Ù„Ù‰ #tt-header.tt-header-scroll Ù‚ÙŠÙ…Ø© transform Ø­ØªÙ‰ ÙˆÙ‡ÙŠ Ù‡ÙˆÙŠØ©ØŒ
	 * ÙˆÙ‡Ø°Ø§ ÙŠØ¬Ø¹Ù„ position:fixed Ù„Ù„Ù‚Ø§Ø¦Ù…Ø© Ù†Ø³Ø¨ÙŠÙ‹Ø§ Ù„ØµÙ†Ø¯ÙˆÙ‚ Ø§Ù„Ù‡ÙŠØ¯Ø± Ø§Ù„Ù‚ØµÙŠØ± ÙÙŠØ®ØªÙÙŠ Ø£ØºÙ„Ø¨ Ø§Ù„Ù…Ø­ØªÙˆÙ‰.
	 */
	#tt-header.tt-header-scroll {
		transform: none !important;
		transition: none;
	}

	body:not(.tt-m-menu-open) #tt-header.tt-header-scroll.tt-fly-up {
		transform: none !important;
	}

	.site-header {
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
	}

	body.site-header-nav-open {
		overflow: hidden;
	}

	/* theme: #body-inner overflow:hidden Ù‚Ø¯ ÙŠÙ‚ØµÙ‘ Ø§Ù„Ù‚Ø§Ø¦Ù…Ø© Ø§Ù„Ø«Ø§Ø¨ØªØ© */
	body.site-header-nav-open #body-inner {
		overflow: visible;
	}

	.site-header__inner {
		display: flex;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: space-between;
		column-gap: 12px;
	}

	.site-header__brand {
		max-width: min(200px, 72vw);
		min-width: 0;
		flex-shrink: 1;
	}

	.site-header__brand img {
		max-width: min(160px, 48vw);
	}

	.site-header__brand,
	.site-header__toggle {
		position: relative;
		z-index: 1005;
	}

	.site-header__toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		padding: 0;
		border: 1px solid rgba(255, 255, 255, 0.22);
		border-radius: 10px;
		background: rgba(255, 255, 255, 0.06);
		color: #fff;
		cursor: pointer;
		transition: background 0.2s ease, border-color 0.2s ease;
	}

	.site-header__toggle:hover,
	.site-header__toggle:focus-visible {
		background: rgba(255, 255, 255, 0.12);
		border-color: rgba(255, 255, 255, 0.38);
		outline: none;
	}

	/* Ù„ÙˆØ­Ø© Ø¬Ø§Ù†Ø¨ÙŠØ©: LTR Ù…Ù† Ø§Ù„ÙŠÙ…ÙŠÙ†ØŒ RTL Ù…Ù† Ø§Ù„ÙŠØ³Ø§Ø± */
	#site-header-nav {
		position: fixed;
		top: 0;
		left: auto;
		right: auto;
		bottom: 0;
		width: min(88vw, 380px);
		max-width: 100%;
		height: 100vh;
		height: 100dvh;
		max-height: 100vh;
		max-height: 100dvh;
		box-sizing: border-box;
		z-index: 1003;
		margin: 0;
		padding: calc(56px + env(safe-area-inset-top, 0px)) 0 calc(16px + env(safe-area-inset-bottom, 0px));
		padding-inline: 16px;
		background: #0a0a0a;
		border-inline-start: 1px solid rgba(255, 255, 255, 0.1);
		box-shadow: -12px 0 40px rgba(0, 0, 0, 0.45);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		display: flex;
		flex-direction: column;
		gap: 0;
		transition: transform 0.32s ease, visibility 0.32s ease;
		visibility: hidden;
		pointer-events: none;
	}

	[dir="ltr"] #site-header-nav {
		right: 0;
		left: auto;
		transform: translateX(100%);
	}

	[dir="rtl"] #site-header-nav {
		left: 0;
		right: auto;
		transform: translateX(-100%);
		box-shadow: 12px 0 40px rgba(0, 0, 0, 0.45);
		border-inline-start: none;
		border-inline-end: 1px solid rgba(255, 255, 255, 0.1);
	}

	#site-header-nav.is-open {
		transform: translateX(0);
		visibility: visible;
		pointer-events: auto;
	}

	.site-header__menu {
		flex: 1 1 auto;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		flex-wrap: nowrap;
		gap: 2px 0;
		min-height: 0;
		max-height: none;
		overflow: visible;
		padding-bottom: 8px;
	}

	.site-header__item {
		width: 100%;
		flex: 0 0 auto;
		white-space: normal;
	}

	.site-header__link,
	.site-header__drop-btn {
		width: 100%;
		box-sizing: border-box;
		justify-content: space-between;
		padding: 12px 10px;
		font-size: 13px;
		border-radius: 8px;
	}

	.site-header__item--dropdown:hover .site-header__dropdown,
	.site-header__item--dropdown:focus-within .site-header__dropdown {
		opacity: 0;
		visibility: hidden;
		transform: translateY(6px);
		pointer-events: none;
	}

	.site-header__item--dropdown.is-open .site-header__dropdown {
		opacity: 1;
		visibility: visible;
		transform: none;
		pointer-events: auto;
		position: static;
		inset: auto;
		min-width: 0;
		max-width: none;
		margin: 4px 0 8px;
		margin-inline-start: 8px;
		padding: 6px 0;
		border-radius: 8px;
		box-shadow: none;
		border: 1px solid rgba(255, 255, 255, 0.1);
		background: rgba(0, 0, 0, 0.35);
	}

	.site-header__dropdown {
		inset-inline-start: 0;
		inset-inline-end: auto;
	}

	.site-header__item--lang {
		border-inline-start: none;
		padding-inline-start: 0;
		margin-inline-start: 0;
		margin-top: 8px;
		padding-top: 12px;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
	}

	.site-header__mobile-meta {
		display: block;
		flex: 0 0 auto;
		margin-top: auto;
		padding-top: 20px;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
	}

	.site-header__mobile-meta-title {
		margin: 0 0 12px;
		font-size: 11px;
		font-weight: 700;
		letter-spacing: 0.12em;
		text-transform: uppercase;
		color: rgba(201, 168, 124, 0.95);
	}

	.site-header__mobile-meta-list {
		list-style: none;
		margin: 0 0 16px;
		padding: 0;
	}

	.site-header__mobile-meta-list > li + li {
		margin-top: 8px;
	}

	.site-header__mobile-meta-link {
		display: flex;
		align-items: flex-start;
		gap: 10px;
		font-size: 13px;
		line-height: 1.45;
		font-weight: 500;
		text-transform: none;
		letter-spacing: 0.02em;
		color: rgba(255, 255, 255, 0.88);
		text-decoration: none;
	}

	.site-header__mobile-meta-link:hover,
	.site-header__mobile-meta-link:focus-visible {
		color: #fff;
		outline: none;
	}

	.site-header__mobile-meta-ic {
		flex-shrink: 0;
		display: flex;
		color: rgba(201, 168, 124, 0.95);
		margin-top: 2px;
	}

	.site-header__mobile-meta-ic svg {
		display: block;
	}

	.site-header__mobile-social-list {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 10px;
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.site-header__mobile-social {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		border-radius: 50%;
		border: 1px solid rgba(255, 255, 255, 0.2);
		color: rgba(255, 255, 255, 0.92);
		text-decoration: none;
		transition: background 0.2s ease, border-color 0.2s ease;
	}

	.site-header__mobile-social:hover,
	.site-header__mobile-social:focus-visible {
		background: rgba(255, 255, 255, 0.08);
		border-color: rgba(255, 255, 255, 0.35);
		outline: none;
	}

	.site-header__mobile-social svg {
		display: block;
	}
}

@media (min-width: 992px) {
	body.site-header-nav-open {
		overflow: visible;
	}

	.site-header__backdrop {
		opacity: 0 !important;
		visibility: hidden !important;
		pointer-events: none !important;
	}

	#site-header-nav {
		position: static !important;
		inset: auto !important;
		right: auto !important;
		left: auto !important;
		width: auto !important;
		max-width: none !important;
		height: auto !important;
		min-height: 0 !important;
		transform: none !important;
		visibility: visible !important;
		pointer-events: auto !important;
		box-shadow: none !important;
		background: transparent !important;
		border: none !important;
		padding: 0 !important;
		margin: 0 !important;
		overflow: visible !important;
		display: block !important;
		flex-direction: unset !important;
		gap: unset !important;
	}

	.site-header__mobile-meta {
		display: none !important;
	}
}

/* -------------------------------------------------------------
 * Ø§Ù„ØµÙØ­Ø© Ø§Ù„Ø±Ø¦ÙŠØ³ÙŠØ© â€” Ù‚Ø³Ù… Ù…Ù† Ù†Ø­Ù† (.home-about)
 * ------------------------------------------------------------- */

.home-about {
	position: relative;
	padding: clamp(72px, 12vw, 140px) 0 clamp(64px, 10vw, 120px);
	overflow: hidden;
}

.home-about__bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 80% 60% at 20% 40%, rgba(201, 168, 124, 0.08), transparent 55%),
		radial-gradient(ellipse 60% 50% at 90% 80%, rgba(255, 255, 255, 0.04), transparent 50%),
		linear-gradient(180deg, #0a0a0a 0%, #080808 100%);
	pointer-events: none;
	z-index: 0;
}

.home-about__container {
	position: relative;
	z-index: 1;
}

.home-about__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
}

.home-about__figure {
	margin: 0;
}

.home-about__frame {
	position: relative;
	border-radius: clamp(16px, 2vw, 24px);
	overflow: hidden;
	aspect-ratio: 4 / 5;
	max-height: min(560px, 70vh);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.home-about__frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.home-about__badge {
	position: absolute;
	top: clamp(16px, 2.5vw, 28px);
	inset-inline-start: clamp(16px, 2.5vw, 28px);
	z-index: 2;
	padding: 8px 14px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.95);
	background: rgba(0, 0, 0, 0.55);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.home-about__content {
	min-width: 0;
}

.home-about__heading {
	margin: 0 0 clamp(20px, 3vw, 32px);
	font-family: var(--tt-alter-font, "Big Shoulders Display", "Poppins", sans-serif);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: #f5f5f5;
}

.home-about__heading-block {
	display: block;
	margin-bottom: 0.35em;
}

.home-about__heading-block:last-child {
	margin-bottom: 0;
}

.home-about__heading-primary {
	display: block;
	font-size: clamp(28px, 4.2vw, 52px);
}

.home-about__heading-secondary {
	display: block;
	margin-top: 0.15em;
	font-size: clamp(18px, 2.4vw, 28px);
	font-weight: 600;
	color: rgba(245, 245, 245, 0.72);
}

.home-about__heading-break {
	display: block;
	height: clamp(16px, 2vw, 28px);
}

.home-about__text {
	margin: 0 0 clamp(28px, 4vw, 40px);
	max-width: 52ch;
	font-size: clamp(15px, 1.25vw, 17px);
	line-height: 1.75;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.72);
}

.home-about__cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 14px 28px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	color: #0a0a0a;
	background: linear-gradient(135deg, #e8d5b7 0%, #c9a87c 50%, #b8956a 100%);
	border-radius: 999px;
	border: none;
	box-shadow: 0 12px 40px rgba(201, 168, 124, 0.25);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-about__cta:hover,
.home-about__cta:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 16px 48px rgba(201, 168, 124, 0.35);
	color: #0a0a0a;
	outline: none;
}

.home-about__cta i {
	font-size: 0.95em;
	opacity: 0.85;
}

@media (max-width: 991px) {
	.home-about__layout {
		grid-template-columns: 1fr;
		gap: clamp(28px, 6vw, 40px);
	}

	.home-about__figure {
		max-width: min(420px, 100%);
		margin-inline: auto;
	}

	.home-about__frame {
		max-height: none;
		aspect-ratio: 16 / 11;
	}

	.home-about__text {
		max-width: none;
	}
}

/* -------------------------------------------------------------
 * Ø§Ù„ØµÙØ­Ø© Ø§Ù„Ø±Ø¦ÙŠØ³ÙŠØ© â€” Ø§Ù„Ø®Ø¯Ù…Ø§Øª (.home-services)
 * ------------------------------------------------------------- */

.home-services {
	position: relative;
	padding: clamp(64px, 10vw, 120px) 0 clamp(72px, 11vw, 130px);
	overflow: hidden;
}

.home-services__bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 70% 55% at 85% 25%, rgba(201, 168, 124, 0.1), transparent 55%),
		radial-gradient(ellipse 55% 45% at 10% 75%, rgba(255, 255, 255, 0.035), transparent 50%),
		linear-gradient(180deg, #080808 0%, #0a0a0a 45%, #080808 100%);
	pointer-events: none;
	z-index: 0;
}

.home-services__container {
	position: relative;
	z-index: 1;
}

.home-services__header {
	text-align: center;
	max-width: 56rem;
	margin: 0 auto clamp(40px, 6vw, 64px);
}

.home-services__eyebrow {
	margin: 0 0 1rem;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(201, 168, 124, 0.95);
}

.home-services__heading {
	margin: 0;
	font-family: var(--tt-alter-font, "Big Shoulders Display", "Poppins", sans-serif);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: #f5f5f5;
}

.home-services__heading-break {
	display: block;
	height: clamp(12px, 2vw, 20px);
}

.home-services__heading-block {
	display: block;
}

.home-services__heading-primary {
	display: block;
	font-size: clamp(28px, 4vw, 52px);
}

.home-services__heading-secondary {
	display: block;
	margin-top: 0.2em;
	font-size: clamp(18px, 2.4vw, 30px);
	font-weight: 600;
	color: rgba(245, 245, 245, 0.72);
}

.home-services__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(20px, 3vw, 32px);
	align-items: stretch;
}

.home-services__card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	border-radius: clamp(16px, 2vw, 22px);
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
	overflow: hidden;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.home-services__card:hover {
	border-color: rgba(201, 168, 124, 0.35);
	box-shadow: 0 28px 72px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(201, 168, 124, 0.12);
	transform: translateY(-4px);
}

.home-services__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.home-services__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.45s ease;
}

.home-services__card:hover .home-services__media img {
	transform: scale(1.05);
}

.home-services__media-shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
	pointer-events: none;
}

.home-services__body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: clamp(20px, 3vw, 26px);
	gap: 12px;
}

.home-services__title {
	margin: 0;
	font-family: var(--tt-alter-font, "Big Shoulders Display", "Poppins", sans-serif);
	font-size: clamp(20px, 2.2vw, 26px);
	font-weight: 700;
	line-height: 1.2;
}

.home-services__title a {
	color: #f5f5f5;
	text-decoration: none;
	transition: color 0.2s ease;
}

.home-services__title a:hover,
.home-services__title a:focus-visible {
	color: var(--tt-main-color, #c9a87c);
	outline: none;
}

.home-services__excerpt {
	margin: 0;
	flex: 1 1 auto;
	font-size: clamp(14px, 1.2vw, 16px);
	line-height: 1.65;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.68);
}

.home-services__link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: auto;
	padding-top: 4px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	color: rgba(201, 168, 124, 0.95);
	transition: color 0.2s ease, gap 0.2s ease;
}

.home-services__link:hover,
.home-services__link:focus-visible {
	color: #e8d5b7;
	gap: 14px;
	outline: none;
}

.home-services__actions {
	display: flex;
	justify-content: center;
	margin-top: clamp(40px, 6vw, 56px);
}

.home-services__cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 14px 28px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	color: #0a0a0a;
	background: linear-gradient(135deg, #e8d5b7 0%, #c9a87c 50%, #b8956a 100%);
	border-radius: 999px;
	border: none;
	box-shadow: 0 12px 40px rgba(201, 168, 124, 0.25);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-services__cta:hover,
.home-services__cta:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 16px 48px rgba(201, 168, 124, 0.35);
	color: #0a0a0a;
	outline: none;
}

.home-services__cta i {
	font-size: 0.95em;
	opacity: 0.85;
}

@media (max-width: 991px) {
	.home-services__grid {
		grid-template-columns: 1fr;
		max-width: min(480px, 100%);
		margin-inline: auto;
	}
}

/* -------------------------------------------------------------
 * Ø§Ù„ØµÙØ­Ø© Ø§Ù„Ø±Ø¦ÙŠØ³ÙŠØ© â€” ØªØµÙ†ÙŠÙØ§Øª Ø§Ù„Ù…Ø´Ø§Ø±ÙŠØ¹ (.home-categories) â€” Swiper
 * ------------------------------------------------------------- */

.home-categories {
	position: relative;
	padding: clamp(64px, 10vw, 120px) 0 clamp(72px, 11vw, 130px);
	overflow: hidden;
}

.home-categories__bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 65% 50% at 15% 30%, rgba(201, 168, 124, 0.09), transparent 52%),
		radial-gradient(ellipse 60% 48% at 92% 70%, rgba(255, 255, 255, 0.04), transparent 48%),
		linear-gradient(180deg, #0a0a0a 0%, #080808 50%, #0a0a0a 100%);
	pointer-events: none;
	z-index: 0;
}

.home-categories__container {
	position: relative;
	z-index: 1;
}

.home-categories__header {
	text-align: center;
	max-width: 56rem;
	margin: 0 auto clamp(40px, 6vw, 56px);
}

.home-categories__eyebrow {
	margin: 0 0 1rem;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(201, 168, 124, 0.95);
}

.home-categories__heading {
	margin: 0;
	font-family: var(--tt-alter-font, "Big Shoulders Display", "Poppins", sans-serif);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: #f5f5f5;
}

.home-categories__heading-break {
	display: block;
	height: clamp(12px, 2vw, 20px);
}

.home-categories__heading-block {
	display: block;
}

.home-categories__heading-primary {
	display: block;
	font-size: clamp(28px, 4vw, 52px);
}

.home-categories__heading-secondary {
	display: block;
	margin-top: 0.2em;
	font-size: clamp(18px, 2.4vw, 30px);
	font-weight: 600;
	color: rgba(245, 245, 245, 0.72);
}

.home-categories__slider-wrap {
	position: relative;
	padding-inline: clamp(48px, 6vw, 56px);
	margin-inline: 0;
}

.home-categories__swiper {
	overflow: hidden;
	padding-bottom: 48px;
	width: 100%;
}

/* Ù‚Ø¨Ù„ ØªÙ‡ÙŠØ¦Ø© Swiper: Ø´Ø±ÙŠØ­Ø© ÙˆØ§Ø­Ø¯Ø© ÙÙ‚Ø· */
.home-categories__swiper:not(.swiper-initialized) .swiper-wrapper {
	display: flex;
}

.home-categories__swiper:not(.swiper-initialized) .swiper-slide {
	flex: 0 0 100%;
	max-width: 100%;
}

.home-categories__swiper:not(.swiper-initialized) .swiper-slide ~ .swiper-slide {
	display: none;
}

.home-categories__swiper .swiper-slide {
	height: auto;
	box-sizing: border-box;
}

.home-categories__nav {
	position: absolute;
	top: 42%;
	z-index: 6;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	margin: 0;
	border: 1px solid rgba(201, 168, 124, 0.45);
	border-radius: 50%;
	background: rgba(10, 10, 10, 0.85);
	color: rgba(255, 255, 255, 0.92);
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.home-categories__nav:hover,
.home-categories__nav:focus-visible {
	background: rgba(201, 168, 124, 0.18);
	border-color: rgba(201, 168, 124, 0.75);
	outline: none;
}

.home-categories__nav i {
	font-size: 14px;
	opacity: 0.95;
}

.home-categories__nav--prev {
	inset-inline-start: 0;
	transform: translateY(-50%);
}

.home-categories__nav--next {
	inset-inline-end: 0;
	transform: translateY(-50%);
}

.home-categories__pagination.swiper-pagination-bullets {
	bottom: 8px !important;
}

.home-categories__pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: rgba(255, 255, 255, 0.35);
	opacity: 1;
	transition: background 0.2s ease, transform 0.2s ease;
}

.home-categories__pagination .swiper-pagination-bullet-active {
	background: rgba(201, 168, 124, 0.95);
	transform: scale(1.15);
}

.home-categories__card {
	height: 100%;
	min-height: 100%;
	border-radius: clamp(16px, 2vw, 22px);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 20px 56px rgba(0, 0, 0, 0.4);
	background: #111;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.home-categories__card:hover {
	border-color: rgba(201, 168, 124, 0.35);
	box-shadow: 0 28px 72px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 168, 124, 0.12);
	transform: translateY(-4px);
}

.home-categories__card-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 100%;
	text-decoration: none;
	color: inherit;
	outline: none;
}

.home-categories__card-visual {
	position: relative;
	flex: 0 0 auto;
	aspect-ratio: 16 / 11;
	background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
	overflow: hidden;
}

.home-categories__card-visual--noimg {
	background: linear-gradient(160deg, #222 0%, #121212 100%);
}

.home-categories__card-visual img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.5s ease;
}

.home-categories__card-visual img.is-hidden {
	display: none;
}

.home-categories__card:hover .home-categories__card-visual img:not(.is-hidden) {
	transform: scale(1.05);
}

.home-categories__card-shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.55) 100%);
	pointer-events: none;
}

.home-categories__card-body {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: center;
	gap: 12px;
	padding: clamp(20px, 3.5vw, 28px) clamp(18px, 3vw, 24px) clamp(22px, 3.5vw, 30px);
	background: linear-gradient(180deg, #141414 0%, #0e0e0e 100%);
}

.home-categories__card-title {
	margin: 0;
	font-family: var(--tt-alter-font, "Big Shoulders Display", "Poppins", sans-serif);
	font-size: clamp(20px, 2.4vw, 28px);
	font-weight: 700;
	line-height: 1.2;
	color: #f5f5f5;
}

.home-categories__card-excerpt {
	margin: 0;
	max-width: 36ch;
	font-size: clamp(13px, 1.15vw, 15px);
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.62);
}

.home-categories__card-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 4px;
	padding: 11px 22px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #0a0a0a;
	background: linear-gradient(135deg, #e8d5b7 0%, #c9a87c 50%, #b8956a 100%);
	border-radius: 999px;
	box-shadow: 0 8px 28px rgba(201, 168, 124, 0.2);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-categories__card-link:hover .home-categories__card-more,
.home-categories__card-link:focus-visible .home-categories__card-more {
	transform: translateY(-1px);
	box-shadow: 0 12px 36px rgba(201, 168, 124, 0.28);
}

.home-categories__card-more i {
	font-size: 0.95em;
	opacity: 0.88;
}

.home-categories__actions {
	display: flex;
	justify-content: center;
	margin-top: clamp(28px, 5vw, 44px);
}

.home-categories__cta-all {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 14px 28px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.92);
	background: transparent;
	border: 1px solid rgba(201, 168, 124, 0.45);
	border-radius: 999px;
	transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.home-categories__cta-all:hover,
.home-categories__cta-all:focus-visible {
	background: rgba(201, 168, 124, 0.12);
	border-color: rgba(201, 168, 124, 0.75);
	color: #fff;
	outline: none;
}

.home-categories__cta-all i {
	font-size: 0.95em;
	opacity: 0.85;
}

@media (max-width: 767px) {
	.home-categories__slider-wrap {
		padding-inline: 0;
		margin-inline: 0;
	}

	.home-categories__nav {
		display: none;
	}

	.home-categories__swiper {
		padding-bottom: 44px;
	}

	.home-categories__swiper:not(.swiper-initialized) .swiper-slide ~ .swiper-slide {
		display: none;
	}
}

/* -------------------------------------------------------------
 * Ø§Ù„ØµÙØ­Ø© Ø§Ù„Ø±Ø¦ÙŠØ³ÙŠØ© â€” Ø§Ù„ØªÙˆØ§ØµÙ„ (.home-contact)
 * ------------------------------------------------------------- */

.home-contact {
	position: relative;
	padding: clamp(72px, 11vw, 130px) 0 clamp(80px, 12vw, 140px);
	overflow: hidden;
}

.home-contact__bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 75% 55% at 50% 0%, rgba(201, 168, 124, 0.12), transparent 55%),
		radial-gradient(ellipse 50% 40% at 0% 100%, rgba(255, 255, 255, 0.04), transparent 50%),
		linear-gradient(180deg, #070707 0%, #0a0a0a 40%, #080808 100%);
	pointer-events: none;
	z-index: 0;
}

.home-contact__container {
	position: relative;
	z-index: 1;
}

.home-contact__header {
	text-align: center;
	max-width: 52rem;
	margin: 0 auto clamp(40px, 6vw, 56px);
}

.home-contact__eyebrow {
	margin: 0 0 1rem;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(201, 168, 124, 0.95);
}

.home-contact__heading {
	margin: 0;
	font-family: var(--tt-alter-font, "Big Shoulders Display", "Poppins", sans-serif);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: #f5f5f5;
}

.home-contact__heading-break {
	display: block;
	height: clamp(12px, 2vw, 20px);
}

.home-contact__heading-block {
	display: block;
}

.home-contact__heading-primary {
	display: block;
	font-size: clamp(28px, 4vw, 48px);
}

.home-contact__heading-secondary {
	display: block;
	margin-top: 0.2em;
	font-size: clamp(18px, 2.4vw, 28px);
	font-weight: 600;
	color: rgba(245, 245, 245, 0.72);
}

.home-contact__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
	gap: clamp(18px, 3vw, 28px);
	align-items: stretch;
	max-width: 1100px;
	margin-inline: auto;
}

.home-contact__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	min-height: 100%;
	padding: clamp(24px, 4vw, 32px) clamp(18px, 3vw, 24px);
	border-radius: clamp(16px, 2vw, 22px);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 20px 56px rgba(0, 0, 0, 0.35);
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.home-contact__card:hover {
	border-color: rgba(201, 168, 124, 0.35);
	box-shadow: 0 28px 72px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(201, 168, 124, 0.1);
	transform: translateY(-4px);
}

.home-contact__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin-bottom: 1.1rem;
	border-radius: 50%;
	font-size: 1.15rem;
	color: rgba(201, 168, 124, 0.95);
	background: rgba(201, 168, 124, 0.12);
	border: 1px solid rgba(201, 168, 124, 0.25);
}

.home-contact__label {
	margin: 0 0 0.85rem;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
}

.home-contact__values {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	width: 100%;
}

.home-contact__value {
	font-size: clamp(15px, 1.25vw, 17px);
	font-weight: 500;
	line-height: 1.45;
	color: #f0f0f0;
	text-decoration: none;
	word-break: break-word;
	transition: color 0.2s ease;
}

.home-contact__value:hover,
.home-contact__value:focus-visible {
	color: var(--tt-main-color, #c9a87c);
	outline: none;
}

.home-contact__value--multiline {
	max-width: 100%;
	text-align: center;
}

.home-contact__actions {
	display: flex;
	justify-content: center;
	margin-top: clamp(40px, 6vw, 56px);
}

.home-contact__cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 32px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	color: #0a0a0a;
	background: linear-gradient(135deg, #e8d5b7 0%, #c9a87c 50%, #b8956a 100%);
	border-radius: 999px;
	border: none;
	box-shadow: 0 14px 44px rgba(201, 168, 124, 0.28);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-contact__cta:hover,
.home-contact__cta:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 18px 52px rgba(201, 168, 124, 0.38);
	color: #0a0a0a;
	outline: none;
}

.home-contact__cta i {
	font-size: 0.95em;
	opacity: 0.85;
}

@media (max-width: 991px) {
	.home-contact__grid {
		max-width: 420px;
		margin-inline: auto;
	}
}

/* -------------------------------------------------------------
 * Ø³Ù„Ø§ÙŠØ¯Ø± Ø§Ù„ØµÙØ­Ø© Ø§Ù„Ø±Ø¦ÙŠØ³ÙŠØ© â€” Ø³Ù‡Ù… Ø§Ù„ØªÙ…Ø±ÙŠØ± (.tt-scroll-down Ø¯Ø§Ø®Ù„ .slide-home)
 * Ø§Ø³ØªØ¨Ø¯Ø§Ù„ Ø¯ÙˆØ±Ø§Ù† SVG Ø§Ù„Ù†Øµ Ø¨Ø­ÙŠÙˆÙƒØ© Ø®ÙÙŠÙØ© Ù„Ù„Ø£ÙŠÙ‚ÙˆÙ†Ø©
 * ------------------------------------------------------------- */

#page-header.slide-home .tt-scroll-down svg {
	animation: none !important;
}

#page-header.slide-home .tt-scroll-down .tt-scrd-icon::before {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	transition: color 0.25s ease, filter 0.25s ease;
}

#page-header.slide-home .tt-scroll-down .tt-scrd-icon {
	animation: home-slider-arrow-float 2.1s ease-in-out infinite;
	will-change: transform;
}

#page-header.slide-home .tt-scroll-down:hover .tt-scrd-icon {
	animation-play-state: paused;
	filter: drop-shadow(0 0 12px rgba(201, 168, 124, 0.45));
}

#page-header.slide-home .tt-scroll-down:hover .tt-scrd-icon::before {
	color: rgba(201, 168, 124, 0.98);
	transform: translateY(6px) scale(1.12);
}

@keyframes home-slider-arrow-float {
	0%,
	100% {
		transform: translate(-50%, -50%) translateY(0);
	}
	50% {
		transform: translate(-50%, -50%) translateY(12px);
	}
}

[dir="rtl"] #page-header.slide-home .tt-scroll-down .tt-scrd-icon {
	animation-name: home-slider-arrow-float-rtl;
}

@keyframes home-slider-arrow-float-rtl {
	0%,
	100% {
		transform: translate(50%, -50%) translateY(0);
	}
	50% {
		transform: translate(50%, -50%) translateY(12px);
	}
}

@media (prefers-reduced-motion: reduce) {
	#page-header.slide-home .tt-scroll-down .tt-scrd-icon {
		animation: none;
	}
}

/* Ø³Ù„Ø§ÙŠØ¯Ø± Ø§Ù„ØµÙØ­Ø© Ø§Ù„Ø±Ø¦ÙŠØ³ÙŠØ©: Ø¥Ù„ØºØ§Ø¡ Ø·Ø¨Ù‚Ø© Ø§Ù„Ù‚Ù†Ø§Ø¹ Ø§Ù„Ù…ÙƒØ±Ø±Ø© ÙˆØ§Ù„Ø®Ù„ÙÙŠØ© Ø§Ù„Ø³ÙˆØ¯Ø§Ø¡ (ØªÙØ¨Ù‚ÙŠ Ø¹Ù„Ù‰ Ø§Ù„Ø¹Ù†ÙˆØ§Ù† ÙÙŠ .page-header-inner Ø§Ù„Ø£ÙˆÙ„Ù‰ ÙÙ‚Ø·) */
#page-header.slide-home .ph-mask {
	display: none !important;
}

/* ØµÙˆØ±Ø© Ø§Ù„Ø³Ù„Ø§ÙŠØ¯Ø± (.ph-video + img) â€” Ù…Ù„Ø¡ ÙƒØ§Ù…Ù„ Ø§Ù„Ø´Ø§Ø´Ø© Ø¹Ù„Ù‰ Ø§Ù„Ù„Ø§Ø¨ ÙˆØ§Ù„ØªØ§Ø¨Ù„Øª */
#page-header.slide-home {
	overflow: hidden;
}

#page-header.slide-home .ph-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

#page-header.slide-home .ph-video-inner {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	text-align: left;
}

#page-header.slide-home .ph-video-inner img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	object-fit: cover;
	object-position: center 18%;
}

@media (min-width: 769px) {
	#page-header.slide-home.ph-full,
	#page-header.slide-home.ph-full-m {
		display: flex;
		align-items: center;
		width: 100%;
		min-height: 100vh;
		min-height: 100dvh;
		min-height: 100svh;
	}

	#page-header.slide-home .ph-video,
	#page-header.slide-home .ph-video-inner,
	#page-header.slide-home .ph-video-inner img {
		min-height: 100%;
	}

	#page-header.slide-home .ph-video-inner img {
		object-position: center 14%;
	}
}

@media (min-width: 1025px) {
	#page-header.slide-home.ph-full.slide-home {
		min-height: 100vh;
		min-height: 100dvh;
		min-height: 100svh;
	}

	#page-header.slide-home .ph-video-inner img {
		object-position: center 12%;
	}
}

/* ===================== Site footer â€” Ø´Ø¹Ø§Ø± ÙÙŠ Ø§Ù„ÙˆØ³Ø·ØŒ Ø±ÙˆØ§Ø¨Ø· ÙˆØ®Ø¯Ù…Ø§Øª Ø¹Ù„Ù‰ Ø§Ù„Ø¬Ø§Ù†Ø¨ÙŠÙ† ===================== */
.site-footer__inner {
	padding-bottom: clamp(24px, 4vw, 40px);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(140px, 220px) minmax(0, 1fr);
	align-items: start;
	gap: clamp(24px, 4vw, 56px);
	max-width: 1320px;
	margin-inline: auto;
}

.site-footer__col--brand {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding-top: 0.25rem;
}

.site-footer__logo-link {
	display: block;
	text-align: center;
	max-width: 220px;
	margin-inline: auto;
}

.site-footer__logo-link .site-footer__logo {
	display: block;
	width: 100%;
	max-width: 250px;
	height: auto;
	max-height: 250px;
	margin-inline: auto;
	object-fit: contain;
}

.site-footer__logo-link .tt-logo-dark {
	display: none;
}

body.tt-lightmode-on .site-footer__logo-link .tt-logo-light {
	display: none;
}

body.tt-lightmode-on .site-footer__logo-link .tt-logo-dark {
	display: block;
}

.site-footer__heading {
	margin: 0 0 1.25rem;
	text-transform: uppercase;
	font-family: var(--tt-alter-font, inherit);
	font-size: clamp(22px, 2.2vw, 36px);
	font-weight: 600;
	color: var(--tt-text-color);
	letter-spacing: 0.02em;
}

.site-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__list li {
	margin-bottom: 0.55rem;
}

.site-footer__link {
	display: inline-flex;
	align-items: flex-start;
	gap: 0.5rem;
	text-transform: uppercase;
	font-size: clamp(13px, 1.1vw, 16px);
	text-decoration: none;
	color: inherit;
	transition: opacity 0.2s ease;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
	opacity: 0.75;
}

.site-footer__list--contact .site-footer__link {
	text-transform: none;
	font-size: clamp(14px, 1.15vw, 17px);
	line-height: 1.45;
}

.site-footer__list--contact i {
	flex-shrink: 0;
	margin-top: 0.2em;
	opacity: 0.85;
}

.site-footer__widget--spaced {
	margin-top: clamp(28px, 4vw, 40px);
}

.site-footer__social-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 14px;
	list-style: none;
	margin: 1rem 0 0;
	padding: 0;
}

.site-footer__social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: 18px;
	color: inherit;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.site-footer__social:hover,
.site-footer__social:focus-visible {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.35);
}

.site-footer__copyright {
	margin-top: clamp(36px, 5vw, 56px);
	padding-top: clamp(20px, 3vw, 28px);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	text-align: center;
	font-size: 13px;
	font-weight: 300;
	opacity: 0.65;
}

.site-footer__copyright p {
	margin: 0;
}

.site-footer__copyright a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}

@media (max-width: 991px) {
	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: clamp(32px, 6vw, 48px);
		text-align: center;
	}

	.site-footer__col--brand {
		order: -1;
		padding-top: 0;
	}

	.site-footer__widget {
		width: 100%;
		max-width: 420px;
		margin-inline: auto;
	}

	.site-footer__list--contact .site-footer__link {
		justify-content: center;
	}

	.site-footer__social-list {
		justify-content: center;
	}
}
