:root {
	--background: #ffffff;
	--foreground: #171717;
	--primary: #d3a63a;
	--primary-dark: #b2851e;
	--secondary: #262626;
	--muted: #f5f5f5;
	--muted-foreground: #575757;
	--border: rgba(23, 23, 23, 0.1);
	--white: #ffffff;
	--shadow-lg: 0 24px 55px rgba(0, 0, 0, 0.15);
	--shadow-md: 0 18px 35px rgba(0, 0, 0, 0.08);
	--radius: 18px;
	--container: 1180px;
	--header-height: 80px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--background);
	color: var(--foreground);
	font-family: 'Outfit', sans-serif;
	line-height: 1.5;
	overflow-x: clip;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	display: block;
}

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

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.container {
	width: min(calc(100% - 2rem), var(--container));
	margin: 0 auto;
}

.site-header .container {
	width: min(calc(100% - 1rem), 1320px);
}

.site-main {
	display: block;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.92);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(14px);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	min-height: var(--header-height);
}

.site-brand {
	font-size: clamp(1.15rem, 1rem + 0.65vw, 1.65rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #f7ddb0;
}

.site-brand .custom-logo {
	max-height: 52px;
	width: auto;
}

.site-brand--logo {
	line-height: 0;
}

.site-brand__logo {
	max-height: 52px;
	width: auto;
}

.site-brand:hover,
.site-brand:focus-visible {
	color: var(--white);
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.site-nav__link {
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
	transition: color 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
	color: var(--primary);
}

.menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 0.28rem;
	width: 48px;
	height: 48px;
	padding: 0;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.menu-toggle__bar {
	width: 22px;
	height: 2px;
	background: var(--white);
	border-radius: 999px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero,
.section,
.site-footer {
	scroll-margin-top: calc(var(--header-height) + 24px);
}

.hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: calc(100vh - var(--header-height));
	padding: 6rem 0;
	isolation: isolate;
}

.hero__background,
.hero__overlay {
	position: absolute;
	inset: 0;
}

.hero__background {
	background-size: cover;
	background-position: center;
	transform: scale(1.03);
}

.hero__overlay {
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.74)),
		radial-gradient(circle at top, rgba(211, 166, 58, 0.28), transparent 45%);
}

.hero__content {
	position: relative;
	z-index: 1;
}

.hero__inner {
	max-width: 52rem;
	margin: 0 auto;
	text-align: center;
	color: var(--white);
	animation: fade-up 0.8s ease both;
}

.hero__title,
.section-heading h2,
.service-card__body h3,
.trust-card h3,
.footer-card__title,
.content-card__title {
	letter-spacing: -0.02em;
	text-wrap: balance;
}

.hero__title {
	margin: 0 0 1rem;
	font-size: clamp(2.8rem, 6vw, 5rem);
	font-weight: 800;
	line-height: 1.02;
}

.hero__subtitle {
	max-width: 44rem;
	margin: 0 auto;
	font-size: clamp(1.15rem, 1rem + 0.65vw, 1.7rem);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.88);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin-top: 2.6rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 1.7rem;
	border-radius: 12px;
	border: 1px solid transparent;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.1;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-1px);
}

.button--primary {
	background: var(--primary);
	color: #121212;
	box-shadow: var(--shadow-lg);
}

.button--primary:hover,
.button--primary:focus-visible {
	background: var(--primary-dark);
}

.button--ghost {
	background: rgba(255, 255, 255, 0.08);
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.28);
	backdrop-filter: blur(10px);
}

.button--ghost:hover,
.button--ghost:focus-visible {
	background: rgba(255, 255, 255, 0.15);
}

.section {
	padding: 5.5rem 0;
}

.section--muted {
	background: var(--muted);
}

.section--feature-photo {
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.section-photo-bg,
.section-photo-overlay {
	position: absolute;
	inset: 0;
}

.section-photo-bg {
	background-size: cover;
	background-position: center;
	transform: scale(1.02);
}

.section-photo-overlay {
	background:
		linear-gradient(180deg, rgba(15, 23, 42, 0.38), rgba(15, 23, 42, 0.75)),
		radial-gradient(circle at center, rgba(211, 166, 58, 0.18), transparent 50%);
}

.section-photo-content {
	position: relative;
	z-index: 1;
}

.section-heading {
	max-width: 44rem;
	margin: 0 auto 3.75rem;
	text-align: center;
}

.section-heading h2 {
	margin: 0 0 0.8rem;
	font-size: clamp(2.2rem, 4.6vw, 3.4rem);
	font-weight: 700;
}

.section-heading p {
	margin: 0;
	font-size: 1.1rem;
	color: var(--muted-foreground);
}

.section-heading--light h2 {
	color: var(--white);
}

.section-heading--light p {
	color: rgba(255, 255, 255, 0.82);
}

.feature-list {
	display: grid;
	gap: 2.3rem;
	max-width: 64rem;
	margin: 0 auto;
}

.feature-card {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1.5rem;
	align-items: start;
	padding: 1.75rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(10px);
}

.feature-card__number {
	font-size: clamp(3.8rem, 6vw, 5.5rem);
	font-weight: 800;
	line-height: 0.9;
	color: rgba(211, 166, 58, 0.24);
}

.feature-card__content {
	padding-top: 0.35rem;
}

.feature-card__heading {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	margin-bottom: 0.9rem;
}

.feature-card__heading h3 {
	margin: 0;
	font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.feature-card__icon,
.trust-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	background: rgba(211, 166, 58, 0.12);
	color: var(--primary);
}

.feature-card__icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
}

.feature-card p,
.service-card__body p,
.trust-card p,
.footer-card__text,
.content-card__body {
	margin: 0;
	color: var(--muted-foreground);
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.8rem;
}

.service-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
}

.service-card--wide {
	grid-column: 1 / -1;
	max-width: 42rem;
	justify-self: center;
}

.service-card__media {
	position: relative;
	min-height: 280px;
	background-size: cover;
	background-position: center;
}

.service-card__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72));
}

.service-card__icon {
	position: absolute;
	top: 1.2rem;
	right: 1.2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 16px;
	background: var(--primary);
	color: #121212;
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.icon {
	width: 1.5rem;
	height: 1.5rem;
}

.service-card__body {
	padding: 1.65rem;
}

.service-card__body h3 {
	margin: 0 0 0.8rem;
	font-size: clamp(1.45rem, 2vw, 1.85rem);
	font-weight: 700;
}

.service-card__accent {
	display: block;
	width: 72px;
	height: 4px;
	margin-top: 1.2rem;
	border-radius: 999px;
	background: var(--primary);
	transition: width 0.25s ease;
}

.service-card:hover .service-card__accent {
	width: 108px;
}

.trust-grid,
.footer-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.8rem;
}

.trust-card,
.footer-card,
.content-card {
	padding: 1.8rem;
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow-md);
}

.trust-card {
	text-align: center;
}

.trust-card__icon {
	width: 74px;
	height: 74px;
	margin: 0 auto 1rem;
	border-radius: 22px;
}

.trust-card h3 {
	margin: 0 0 0.65rem;
	font-size: 1.35rem;
	font-weight: 700;
}

.site-footer {
	padding: 4.8rem 0 2rem;
	background: var(--secondary);
	color: rgba(255, 255, 255, 0.92);
}

.footer-card {
	background: rgba(255, 255, 255, 0.02);
	box-shadow: none;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-card__title {
	margin: 0 0 1rem;
	font-size: 1.45rem;
	font-weight: 700;
}

.footer-card__text,
.footer-contact-link,
.footer-legal-link {
	color: rgba(255, 255, 255, 0.78);
}

.footer-contact-list,
.footer-legal-list {
	display: grid;
	gap: 0.9rem;
}

.footer-contact-link {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
}

.footer-contact-link__icon {
	width: 1rem;
	height: 1rem;
	flex: 0 0 auto;
}

.footer-contact-link:hover,
.footer-legal-link:hover,
.footer-contact-link:focus-visible,
.footer-legal-link:focus-visible {
	color: var(--primary);
}

.site-footer__bottom {
	margin-top: 2.1rem;
	padding-top: 1.6rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	text-align: center;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.62);
}

.content-page {
	min-height: 48vh;
}

.content-page__inner {
	max-width: 60rem;
}

.content-card__title {
	margin: 0 0 1rem;
	font-size: clamp(2rem, 3vw, 2.8rem);
}

.content-card__title a:hover,
.content-card__title a:focus-visible {
	color: var(--primary-dark);
}

.content-card__body > *:first-child {
	margin-top: 0;
}

.content-card__body > *:last-child {
	margin-bottom: 0;
}

body.menu-open {
	overflow: hidden;
}

body.contact-modal-open {
	overflow: hidden;
}

.contact-modal {
	position: fixed;
	inset: 0;
	z-index: 1200;
	display: grid;
	place-items: center;
	padding: 1rem;
}

.contact-modal[hidden] {
	display: none;
}

.contact-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(4px);
}

.contact-modal__panel {
	position: relative;
	z-index: 1;
	width: min(100%, 460px);
	padding: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	background: #111827;
	color: var(--white);
	box-shadow: 0 24px 55px rgba(0, 0, 0, 0.32);
}

.contact-modal__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--white);
	font-size: 1.4rem;
	line-height: 1;
	cursor: pointer;
}

.contact-modal__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.6rem, 2vw, 2rem);
	letter-spacing: -0.02em;
}

.contact-modal__description {
	margin: 0 0 1.4rem;
	color: rgba(255, 255, 255, 0.72);
}

.contact-modal__actions {
	display: grid;
	gap: 0.9rem;
}

.contact-modal__link {
	display: flex;
	align-items: center;
	gap: 0.95rem;
	padding: 1rem 1.05rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.05);
	color: var(--white);
}

.contact-modal__link:hover,
.contact-modal__link:focus-visible {
	background: rgba(255, 255, 255, 0.1);
}

.contact-modal__link-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 999px;
	background: rgba(211, 166, 58, 0.14);
	color: var(--primary);
	flex: 0 0 auto;
}

.contact-modal__eyebrow {
	display: block;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.62);
}

.contact-modal__value {
	display: block;
	font-size: 1rem;
	font-weight: 600;
}

@keyframes fade-up {
	from {
		opacity: 0;
		transform: translateY(24px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 960px) {
	.site-nav {
		position: absolute;
		top: calc(100% + 0.8rem);
		right: 1rem;
		left: 1rem;
		display: grid;
		gap: 0.75rem;
		padding: 1.15rem;
		background: rgba(0, 0, 0, 0.96);
		border: 1px solid rgba(255, 255, 255, 0.08);
		border-radius: 18px;
		box-shadow: var(--shadow-lg);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-10px);
		transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
	}

	.site-header.is-open .site-nav {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.menu-toggle {
		display: inline-flex;
	}

	.site-header.is-open .menu-toggle__bar:nth-child(2) {
		transform: translateY(6px) rotate(45deg);
	}

	.site-header.is-open .menu-toggle__bar:nth-child(3) {
		opacity: 0;
	}

	.site-header.is-open .menu-toggle__bar:nth-child(4) {
		transform: translateY(-6px) rotate(-45deg);
	}

	.service-grid,
	.trust-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.service-card--wide {
		max-width: none;
	}
}

@media (max-width: 720px) {
	:root {
		--header-height: 72px;
	}

	.hero {
		padding: 4.75rem 0;
	}

	.hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.button {
		width: 100%;
	}

	.feature-card {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.feature-card__number {
		font-size: 3.6rem;
	}

	.section {
		padding: 4.5rem 0;
	}
}
