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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	overflow-x: hidden;
	background: #111111;
	color: #FFFFFF;
	font-family: "Poppins", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.7;
	letter-spacing: 0;
}

body.menu-open {
	overflow: hidden;
}

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

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

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

button {
	cursor: pointer;
}

strong {
	color: #FFFFFF;
	font-weight: 600;
}

h1,
h2,
h3,
h4 {
	margin: 0;
	color: #FFFFFF;
	font-family: "Montserrat", Arial, sans-serif;
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: 0;
	text-wrap: balance;
}

h1 {
	font-size: 4.6rem;
}

h2 {
	font-size: 3rem;
}

h3 {
	font-size: 1.35rem;
}

p {
	margin: 0;
	color: #6B7280;
}

ul {
	margin: 0;
	padding: 0;
}

li {
	list-style: none;
}

:focus-visible {
	outline: 2px solid #C8A75D;
	outline-offset: 4px;
}

.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;
}

.skip-link:focus {
	position: fixed;
	z-index: 9999;
	top: 16px;
	left: 16px;
	width: auto;
	height: auto;
	padding: 10px 16px;
	clip: auto;
	background: #C8A75D;
	color: #050505;
	border-radius: 8px;
}

.container {
	width: min(1180px, calc(100% - 40px));
	margin-inline: auto;
}

.section {
	position: relative;
	padding: 108px 0;
	background: #111111;
}

.section-dark {
	background:
		radial-gradient(circle at 15% 15%, rgba(200, 167, 93, 0.08), transparent 30%),
		linear-gradient(145deg, #050505, #111111 52%, #0A0A0A);
}

.section-heading {
	max-width: 780px;
	margin-bottom: 46px;
}

.section-heading h2 {
	margin-bottom: 16px;
}

.section-heading p:not(.eyebrow) {
	max-width: 720px;
	font-size: 1.05rem;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	color: #C8A75D;
	font-size: 0.78rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0;
}

.eyebrow::before {
	content: "";
	width: 32px;
	height: 1px;
	background: #C8A75D;
	box-shadow: 0 0 18px rgba(200, 167, 93, 0.55);
}

.glass-panel,
.glass-card {
	position: relative;
	overflow: hidden;
	background: rgba(21, 21, 21, 0.76);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.07),
		inset 0 -20px 45px rgba(5, 5, 5, 0.32),
		0 28px 70px rgba(5, 5, 5, 0.58);
	backdrop-filter: blur(22px);
	-webkit-backdrop-filter: blur(22px);
}

.glass-panel::before,
.glass-card::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	border-radius: inherit;
	background:
		linear-gradient(130deg, rgba(255, 255, 255, 0.12), transparent 36%),
		linear-gradient(315deg, rgba(200, 167, 93, 0.14), transparent 32%);
	opacity: 0.72;
}

.glass-card > *,
.glass-panel > * {
	position: relative;
	z-index: 1;
}

.glass-card {
	padding: 30px;
	transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.glass-card:hover {
	transform: translateY(-6px);
	border-color: rgba(200, 167, 93, 0.44);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.09),
		inset 0 -20px 45px rgba(5, 5, 5, 0.38),
		0 34px 86px rgba(5, 5, 5, 0.68),
		0 0 0 1px rgba(200, 167, 93, 0.12);
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 13px 22px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn-gold {
	background: #C8A75D;
	color: #050505;
	border-color: #C8A75D;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.38),
		inset 0 -12px 20px rgba(5, 5, 5, 0.18),
		0 18px 40px rgba(200, 167, 93, 0.24);
}

.btn-gold:hover {
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.44),
		inset 0 -12px 20px rgba(5, 5, 5, 0.22),
		0 22px 54px rgba(200, 167, 93, 0.32);
}

.btn-ghost {
	background: rgba(21, 21, 21, 0.74);
	color: #FFFFFF;
	border-color: rgba(200, 167, 93, 0.34);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 16px 34px rgba(5, 5, 5, 0.34);
}

.btn-ghost:hover {
	border-color: #C8A75D;
}

.site-header {
	position: sticky;
	z-index: 1000;
	top: 0;
	width: 100%;
	background: rgba(17, 17, 17, 0.76);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 18px 48px rgba(5, 5, 5, 0.34);
	backdrop-filter: blur(22px);
	-webkit-backdrop-filter: blur(22px);
	transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
	background: rgba(10, 10, 10, 0.9);
	box-shadow: 0 18px 60px rgba(5, 5, 5, 0.56);
}

.header-shell {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(1260px, calc(100% - 36px));
	min-height: 86px;
	margin-inline: auto;
	gap: 22px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	max-width: 220px;
}

.site-brand img,
.custom-logo-link img {
	width: min(210px, 44vw);
	height: auto;
	object-fit: contain;
}

.primary-navigation {
	display: flex;
	justify-content: center;
	flex: 1 1 auto;
}

.primary-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.primary-menu a {
	position: relative;
	display: inline-flex;
	padding: 12px 13px;
	color: #FFFFFF;
	font-size: 0.94rem;
	font-weight: 500;
}

.primary-menu a::after {
	content: "";
	position: absolute;
	right: 13px;
	bottom: 7px;
	left: 13px;
	height: 1px;
	background: #C8A75D;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 180ms ease;
}

.primary-menu a:hover::after,
.primary-menu .current-menu-item > a::after {
	transform: scaleX(1);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.header-cta {
	min-height: 42px;
	padding: 11px 17px;
	font-size: 0.92rem;
}

.menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 0;
	background: rgba(21, 21, 21, 0.84);
	border: 1px solid rgba(200, 167, 93, 0.34);
	border-radius: 8px;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 14px 30px rgba(5, 5, 5, 0.38);
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: #C8A75D;
	border-radius: 2px;
	transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-active span:nth-child(2) {
	transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(3) {
	opacity: 0;
}

.menu-toggle.is-active span:nth-child(4) {
	transform: translateY(-6px) rotate(-45deg);
}

.hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 100svh;
	padding: 92px 0 72px;
	overflow: hidden;
}

.hero-backdrop {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	opacity: 0.22;
	filter: saturate(0.9) contrast(1.08);
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(17, 17, 17, 0.78) 48%, rgba(5, 5, 5, 0.66)),
		radial-gradient(circle at 78% 28%, rgba(200, 167, 93, 0.14), transparent 32%);
}

.hero-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(390px, 0.92fr);
	align-items: center;
	gap: 56px;
}

.hero-copy {
	max-width: 720px;
	padding: 42px;
}

.hero-copy h1 {
	margin-bottom: 20px;
}

.hero-copy p:not(.eyebrow) {
	max-width: 620px;
	margin-bottom: 28px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.08rem;
}

.hero-highlights {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 28px;
}

.hero-highlights span {
	display: flex;
	align-items: center;
	min-height: 48px;
	padding: 12px 14px;
	background: rgba(10, 10, 10, 0.66);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 8px;
	color: #FFFFFF;
	font-size: 0.9rem;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-highlights span::before {
	content: "";
	width: 7px;
	height: 7px;
	margin-right: 10px;
	flex: 0 0 auto;
	border-radius: 50%;
	background: #C8A75D;
	box-shadow: 0 0 16px rgba(200, 167, 93, 0.7);
}

.hero-visual {
	position: relative;
	min-height: 650px;
	perspective: 1200px;
}

.hero-frame {
	position: absolute;
	margin: 0;
	overflow: hidden;
	background: #151515;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.12),
		inset 0 -24px 48px rgba(5, 5, 5, 0.42),
		0 34px 82px rgba(5, 5, 5, 0.7),
		0 0 0 1px rgba(200, 167, 93, 0.12);
	transform-style: preserve-3d;
}

.hero-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-frame--main {
	inset: 22px 46px 42px 32px;
	padding: 12px;
	transform: rotateY(-7deg) rotateX(4deg);
}

.hero-frame--main img {
	border-radius: 6px;
}

.hero-frame--float {
	width: 34%;
	height: 28%;
	padding: 8px;
	background: rgba(21, 21, 21, 0.78);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.hero-frame--one {
	top: 0;
	right: 2px;
	transform: rotate(5deg) translateZ(70px);
}

.hero-frame--two {
	left: 0;
	bottom: 24px;
	transform: rotate(-6deg) translateZ(86px);
}

.hero--cinematic {
	isolation: isolate;
	min-height: 100svh;
	padding: 128px 0 92px;
	background: #050505;
}

.hero--cinematic::after {
	z-index: 1;
	background:
		linear-gradient(90deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.3) 44%, rgba(5, 5, 5, 0.48)),
		linear-gradient(180deg, rgba(5, 5, 5, 0.42), rgba(5, 5, 5, 0.26) 46%, rgba(5, 5, 5, 0.68));
}

.hero-scroll-bg {
	position: absolute;
	z-index: 0;
	inset: 0;
	overflow: hidden;
	opacity: 1;
	pointer-events: none;
	transform: none;
}

.hero-scroll-row {
	position: absolute;
	left: -50%;
	width: 200%;
	height: clamp(190px, 28vh, 330px);
}

.hero-scroll-row--one {
	top: 1%;
}

.hero-scroll-row--two {
	top: 35%;
}

.hero-scroll-row--three {
	top: 69%;
}

.hero-scroll-track {
	display: flex;
	width: max-content;
	height: 100%;
	gap: 20px;
	animation: hero-scroll-right 46s linear infinite;
	will-change: transform;
}

.hero-scroll-row--two .hero-scroll-track {
	animation-duration: 54s;
	animation-delay: -14s;
}

.hero-scroll-row--three .hero-scroll-track {
	animation-duration: 50s;
	animation-delay: -28s;
}

.hero-scroll-track figure {
	width: clamp(260px, 25vw, 460px);
	height: 100%;
	margin: 0;
	overflow: hidden;
	background: #151515;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 8px;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 18px 48px rgba(5, 5, 5, 0.42);
}

.hero-scroll-track img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(1.04) contrast(1.05) brightness(0.94);
}

.hero--cinematic .hero-grid {
	display: block;
	position: relative;
	z-index: 2;
}

.hero--cinematic .hero-copy {
	max-width: 430px;
	padding: 28px 30px;
	background: rgba(17, 17, 17, 0.68);
}

.hero--cinematic .hero-copy h1 {
	max-width: 380px;
	margin-bottom: 16px;
	font-size: clamp(1.9rem, 3vw, 2.65rem);
	font-weight: 600;
	line-height: 1.12;
}

.hero--cinematic .hero-copy p:not(.eyebrow) {
	max-width: 350px;
	margin-bottom: 24px;
	font-size: 0.92rem;
	line-height: 1.75;
}

@keyframes hero-scroll-right {
	from {
		transform: translateX(-50%);
	}

	to {
		transform: translateX(0);
	}
}

.section-split {
	background:
		linear-gradient(180deg, #111111, #0A0A0A),
		radial-gradient(circle at 80% 12%, rgba(200, 167, 93, 0.1), transparent 30%);
}

.split-grid {
	display: grid;
	grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
	gap: 54px;
	align-items: start;
}

.rich-copy {
	display: grid;
	gap: 18px;
}

.rich-copy p {
	font-size: 1.02rem;
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.service-grid {
	counter-reset: service;
}

.service-card {
	counter-increment: service;
	min-height: 304px;
}

.service-card h3,
.service-detail-card h3,
.glass-card h3 {
	margin-bottom: 14px;
}

.card-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	margin-bottom: 24px;
	background: #0A0A0A;
	border: 1px solid rgba(200, 167, 93, 0.38);
	border-radius: 8px;
	color: #C8A75D;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 16px 32px rgba(5, 5, 5, 0.42);
}

.card-number::before {
	content: counter(service, decimal-leading-zero);
	font-family: "Montserrat", Arial, sans-serif;
	font-weight: 700;
}

.collage-section {
	background:
		radial-gradient(circle at 18% 6%, rgba(200, 167, 93, 0.1), transparent 24%),
		linear-gradient(180deg, #111111, #050505);
}

.collage-grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	grid-auto-rows: 78px;
	grid-auto-flow: dense;
	gap: 20px;
	align-items: stretch;
}

.collage-grid--preview {
	grid-auto-rows: 88px;
}

.collage-item {
	position: relative;
	display: block;
	width: 100%;
	min-width: 0;
	min-height: 180px;
	padding: 0;
	overflow: hidden;
	background: #151515;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 26px 62px rgba(5, 5, 5, 0.58);
	transform: rotate(var(--tilt, 0deg)) translateY(var(--lift, 0));
	transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
	grid-column: span 3;
	grid-row: span 3;
}

.collage-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.01);
	transition: transform 260ms ease, filter 260ms ease;
}

.collage-item:hover,
.collage-item:focus-visible {
	z-index: 8;
	border-color: #C8A75D;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.14),
		0 34px 88px rgba(5, 5, 5, 0.72),
		0 0 0 1px rgba(200, 167, 93, 0.18);
	transform: rotate(0deg) translateY(-7px) scale(1.02);
}

.collage-item:hover img,
.collage-item:focus-visible img {
	transform: scale(1.08);
	filter: contrast(1.06);
}

.collage-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	padding: 16px;
	background: linear-gradient(180deg, transparent 42%, rgba(5, 5, 5, 0.78));
	opacity: 0;
	transition: opacity 180ms ease;
}

.collage-overlay span {
	display: inline-flex;
	padding: 8px 12px;
	background: rgba(21, 21, 21, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	color: #C8A75D;
	font-size: 0.85rem;
	font-weight: 600;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.collage-item:hover .collage-overlay,
.collage-item:focus-visible .collage-overlay {
	opacity: 1;
}

.collage-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background:
		linear-gradient(145deg, #0A0A0A, #1A1A1A),
		radial-gradient(circle at 25% 15%, rgba(200, 167, 93, 0.16), transparent 34%);
	color: #C8A75D;
	text-align: center;
}

.collage-item:nth-child(12n+1) {
	grid-column: span 5;
	grid-row: span 4;
	--tilt: -1.3deg;
}

.collage-item:nth-child(12n+2) {
	grid-column: span 3;
	grid-row: span 5;
	--tilt: 1.5deg;
}

.collage-item:nth-child(12n+3) {
	grid-column: span 4;
	grid-row: span 3;
	--tilt: -0.7deg;
}

.collage-item:nth-child(12n+4) {
	grid-column: span 4;
	grid-row: span 4;
	--tilt: 1deg;
}

.collage-item:nth-child(12n+5) {
	grid-column: span 3;
	grid-row: span 3;
	--tilt: -1.8deg;
	--lift: -6px;
}

.collage-item:nth-child(12n+6) {
	grid-column: span 5;
	grid-row: span 3;
	--tilt: 0.8deg;
}

.collage-item:nth-child(12n+7) {
	grid-column: span 3;
	grid-row: span 4;
	--tilt: -0.9deg;
}

.collage-item:nth-child(12n+8) {
	grid-column: span 4;
	grid-row: span 3;
	--tilt: 1.7deg;
}

.collage-item:nth-child(12n+9) {
	grid-column: span 5;
	grid-row: span 5;
	--tilt: -1.1deg;
}

.collage-item:nth-child(12n+10) {
	grid-column: span 3;
	grid-row: span 3;
	--tilt: 1.2deg;
}

.collage-item:nth-child(12n+11) {
	grid-column: span 4;
	grid-row: span 4;
	--tilt: -1.6deg;
}

.collage-item:nth-child(12n) {
	grid-column: span 4;
	grid-row: span 3;
	--tilt: 0.9deg;
}

.section-actions {
	display: flex;
	justify-content: center;
	margin-top: 42px;
}

.page-editor-content {
	background: #111111;
}

.page-editor-content .container {
	padding: 34px;
	background: rgba(21, 21, 21, 0.56);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.05),
		0 24px 58px rgba(5, 5, 5, 0.44);
}

.page-editor-content .container > * + * {
	margin-top: 18px;
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.trust-card {
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 118px;
	padding: 22px;
}

.trust-card span {
	width: 12px;
	height: 12px;
	flex: 0 0 auto;
	border: 1px solid rgba(200, 167, 93, 0.8);
	border-radius: 50%;
	box-shadow: 0 0 16px rgba(200, 167, 93, 0.55);
}

.trust-card p {
	color: #FFFFFF;
	font-weight: 500;
	line-height: 1.45;
}

.testimonial-card {
	min-height: 300px;
}

.testimonial-card p {
	margin: 18px 0 18px;
	color: rgba(255, 255, 255, 0.78);
}

.stars {
	display: inline-flex;
	color: #C8A75D;
	font-size: 1rem;
	line-height: 1;
}

.final-cta {
	background:
		linear-gradient(145deg, #050505, #111111),
		radial-gradient(circle at 72% 24%, rgba(200, 167, 93, 0.14), transparent 30%);
}

.cta-panel {
	padding: 52px;
	text-align: center;
}

.cta-panel h2 {
	margin-bottom: 16px;
}

.cta-panel p:not(.eyebrow) {
	max-width: 760px;
	margin: 0 auto 28px;
	color: rgba(255, 255, 255, 0.76);
}

.cta-panel .button-row {
	justify-content: center;
}

.page-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 560px;
	padding: 140px 0 82px;
	overflow: hidden;
}

.page-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 78% 22%, rgba(200, 167, 93, 0.16), transparent 28%),
		linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(17, 17, 17, 0.7));
}

.page-hero__panel {
	position: relative;
	z-index: 1;
	max-width: 820px;
	padding: 48px;
}

.page-hero__panel h1 {
	margin-bottom: 16px;
}

.page-hero__panel p:not(.eyebrow) {
	max-width: 660px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.1rem;
}

.essence-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.9fr;
	gap: 22px;
}

.essence-grid .glass-panel {
	grid-row: span 2;
	padding: 44px;
}

.essence-grid .glass-panel h2 {
	margin-bottom: 18px;
}

.clean-list {
	display: grid;
	gap: 12px;
	color: #6B7280;
}

.clean-list li {
	position: relative;
	padding-left: 18px;
}

.clean-list li::before {
	content: "";
	position: absolute;
	top: 12px;
	left: 0;
	width: 6px;
	height: 6px;
	background: #C8A75D;
	border-radius: 50%;
}

.leadership-grid {
	display: grid;
	gap: 24px;
}

.leader-card {
	display: grid;
	grid-template-columns: 104px minmax(0, 1fr);
	gap: 28px;
	padding: 34px;
}

.profile-mark,
.team-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		linear-gradient(145deg, #0A0A0A, #1A1A1A),
		radial-gradient(circle at 30% 18%, rgba(200, 167, 93, 0.2), transparent 40%);
	border: 1px solid rgba(200, 167, 93, 0.34);
	color: #C8A75D;
	font-family: "Montserrat", Arial, sans-serif;
	font-weight: 700;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 22px 48px rgba(5, 5, 5, 0.44);
}

.profile-mark {
	width: 104px;
	height: 104px;
	border-radius: 8px;
	font-size: 1.6rem;
}

.leader-card h3 {
	font-size: 1.8rem;
	margin-bottom: 8px;
}

.role,
.meta {
	color: #C8A75D;
	font-weight: 600;
}

.leader-card p {
	margin-top: 14px;
}

blockquote {
	margin: 22px 0 0;
	padding: 20px 22px;
	background: rgba(10, 10, 10, 0.7);
	border-left: 3px solid #C8A75D;
	border-radius: 8px;
	color: rgba(255, 255, 255, 0.82);
	font-style: normal;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
	max-width: 780px;
}

.team-placeholder {
	width: 100%;
	aspect-ratio: 1 / 0.72;
	margin-bottom: 24px;
	border-radius: 8px;
	font-size: 2.2rem;
}

.team-card p {
	margin-top: 8px;
	color: #C8A75D;
	font-weight: 500;
}

.satisfaction {
	margin-top: 16px;
}

.rating-list {
	display: grid;
	gap: 12px;
	margin: 18px 0 20px;
}

.rating-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rating-list span:first-child {
	color: #FFFFFF;
}

.service-detail-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-detail-card {
	min-height: 260px;
}

.service-detail-card p + p {
	margin-top: 14px;
	color: rgba(255, 255, 255, 0.72);
}

.pill-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
}

.special-pill {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 96px;
	padding: 18px;
	background: rgba(21, 21, 21, 0.76);
	border: 1px solid rgba(200, 167, 93, 0.26);
	border-radius: 8px;
	color: #FFFFFF;
	font-weight: 600;
	text-align: center;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 22px 48px rgba(5, 5, 5, 0.42);
}

.gallery-page-section .section-heading {
	margin-inline: auto;
	text-align: center;
}

.gallery-page-section .eyebrow {
	justify-content: center;
}

.gallery-page-section .eyebrow::before {
	display: none;
}

.contact-layout {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 28px;
	align-items: stretch;
}

.contact-info-panel {
	padding: 40px;
}

.contact-info-panel h2 {
	margin-bottom: 24px;
}

.contact-list {
	display: grid;
	gap: 16px;
}

.contact-list li {
	display: grid;
	gap: 5px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-list strong {
	color: #C8A75D;
	font-size: 0.9rem;
}

.contact-list span,
.contact-list a {
	color: rgba(255, 255, 255, 0.8);
}

.contact-list a:hover {
	color: #C8A75D;
}

.contact-buttons {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.contact-button {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 114px;
	padding: 20px;
	color: #FFFFFF;
	font-weight: 600;
	text-align: center;
}

.contact-button:hover {
	color: #C8A75D;
}

.contact-form-grid {
	display: grid;
	grid-template-columns: 0.76fr 1.24fr;
	gap: 36px;
	align-items: start;
}

.contact-form-grid > div p:not(.eyebrow) {
	margin-top: 16px;
}

.contact-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	padding: 32px;
}

.contact-form label {
	display: grid;
	gap: 8px;
}

.contact-form label:nth-child(5),
.contact-form button {
	grid-column: 1 / -1;
}

.contact-form span {
	color: #FFFFFF;
	font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	min-width: 0;
	padding: 14px 15px;
	background: rgba(10, 10, 10, 0.82);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	color: #FFFFFF;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.05),
		inset 0 12px 24px rgba(5, 5, 5, 0.22);
}

.contact-form textarea {
	resize: vertical;
}

.contact-form option {
	background: #111111;
	color: #FFFFFF;
}

.map-panel {
	min-height: 360px;
	padding: 48px;
	background:
		linear-gradient(145deg, rgba(21, 21, 21, 0.78), rgba(10, 10, 10, 0.82)),
		radial-gradient(circle at 78% 24%, rgba(200, 167, 93, 0.16), transparent 34%);
}

.map-panel h2 {
	margin-bottom: 14px;
}

.map-panel p {
	max-width: 620px;
	margin-bottom: 24px;
}

.site-footer {
	padding: 76px 0 24px;
	background: #050505;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.45fr 0.72fr 0.88fr 0.95fr;
	gap: 34px;
}

.footer-brand p {
	max-width: 420px;
	margin: 22px 0;
}

.footer-logo {
	max-width: 230px;
}

.site-footer h2 {
	margin-bottom: 18px;
	color: #C8A75D;
	font-size: 1rem;
}

.footer-links {
	display: grid;
	gap: 10px;
	color: #6B7280;
}

.footer-links a:hover,
.footer-socials a:hover {
	color: #C8A75D;
}

.powered-by {
	display: inline-block;
	margin-left: 10px;
}

.powered-by a {
	color: #C8A75D;
	font-weight: 600;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 56px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	color: #6B7280;
	font-size: 0.92rem;
}

.floating-whatsapp,
.back-to-top {
	position: fixed;
	z-index: 998;
	right: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	font-weight: 700;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.12),
		0 18px 44px rgba(5, 5, 5, 0.58);
}

.floating-whatsapp {
	bottom: 24px;
	width: 58px;
	height: 58px;
	background: #25D366;
	color: #050505;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.28),
		0 18px 44px rgba(5, 5, 5, 0.58),
		0 0 0 1px rgba(255, 255, 255, 0.18);
}

.floating-whatsapp svg {
	width: 31px;
	height: 31px;
	fill: currentColor;
}

.back-to-top {
	bottom: 92px;
	width: 58px;
	height: 42px;
	background: rgba(21, 21, 21, 0.86);
	border: 1px solid rgba(200, 167, 93, 0.36);
	color: #C8A75D;
	opacity: 0;
	pointer-events: none;
	transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
	opacity: 1;
	pointer-events: auto;
}

.lightbox {
	position: fixed;
	z-index: 2000;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 28px;
	background: rgba(5, 5, 5, 0.9);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

.lightbox[hidden] {
	display: none;
}

.lightbox img {
	max-width: min(1120px, 94vw);
	max-height: 86vh;
	border-radius: 8px;
	border: 1px solid rgba(200, 167, 93, 0.32);
	box-shadow: 0 36px 90px rgba(5, 5, 5, 0.72);
	object-fit: contain;
}

.lightbox__close {
	position: fixed;
	top: 20px;
	right: 20px;
	width: 48px;
	height: 48px;
	background: rgba(21, 21, 21, 0.84);
	border: 1px solid rgba(200, 167, 93, 0.38);
	border-radius: 8px;
	color: #FFFFFF;
	font-size: 1.8rem;
	line-height: 1;
}

@media (max-width: 1120px) {
	h1 {
		font-size: 3.6rem;
	}

	h2 {
		font-size: 2.45rem;
	}

	.hero-grid,
	.split-grid,
	.contact-layout,
	.contact-form-grid {
		grid-template-columns: 1fr;
	}

	.hero-visual {
		min-height: 520px;
		max-width: 680px;
		width: 100%;
		margin-inline: auto;
	}

	.card-grid,
	.trust-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pill-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 920px) {
	.header-shell {
		min-height: 76px;
	}

	.primary-navigation {
		position: absolute;
		top: calc(100% + 10px);
		right: 18px;
		left: 18px;
		display: none;
		padding: 16px;
		background: rgba(21, 21, 21, 0.94);
		border: 1px solid rgba(255, 255, 255, 0.12);
		border-radius: 8px;
		box-shadow: 0 24px 70px rgba(5, 5, 5, 0.76);
		backdrop-filter: blur(22px);
		-webkit-backdrop-filter: blur(22px);
	}

	.primary-navigation.is-open {
		display: block;
	}

	.primary-menu {
		display: grid;
		gap: 4px;
		justify-content: stretch;
	}

	.primary-menu a {
		display: flex;
		min-height: 46px;
		align-items: center;
		padding: 12px 14px;
		background: rgba(10, 10, 10, 0.5);
		border-radius: 8px;
	}

	.primary-menu a::after {
		right: 14px;
		left: 14px;
	}

	.menu-toggle {
		display: block;
	}

	.header-cta {
		display: none;
	}

	.hero {
		min-height: auto;
		padding: 112px 0 76px;
	}

	.hero--cinematic {
		min-height: 100svh;
		padding: 112px 0 78px;
	}

	.hero--cinematic .hero-copy {
		max-width: 430px;
	}

	.hero-scroll-bg {
		inset: 0;
		opacity: 1;
		transform: none;
	}

	.hero-scroll-row {
		left: -60%;
		width: 220%;
		height: clamp(170px, 27vh, 260px);
	}

	.hero-scroll-track figure {
		width: clamp(220px, 38vw, 360px);
	}

	.hero-copy {
		padding: 30px;
	}

	.hero-highlights {
		grid-template-columns: 1fr;
	}

	.essence-grid {
		grid-template-columns: 1fr;
	}

	.essence-grid .glass-panel {
		grid-row: auto;
	}

	.collage-grid {
		grid-template-columns: repeat(6, minmax(0, 1fr));
		grid-auto-rows: 86px;
	}

	.collage-item,
	.collage-item:nth-child(n) {
		grid-column: span 3;
		grid-row: span 3;
		transform: none;
	}

	.collage-item:nth-child(5n+1) {
		grid-column: span 6;
		grid-row: span 3;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 680px) {
	body {
		font-size: 15px;
	}

	h1 {
		font-size: 2.55rem;
	}

	h2 {
		font-size: 2rem;
	}

	h3 {
		font-size: 1.18rem;
	}

	.container {
		width: min(100% - 28px, 1180px);
	}

	.section {
		padding: 76px 0;
	}

	.section-heading {
		margin-bottom: 32px;
	}

	.button-row,
	.cta-panel .button-row {
		display: grid;
		grid-template-columns: 1fr;
	}

	.btn {
		width: 100%;
	}

	.hero-copy,
	.page-hero__panel,
	.cta-panel,
	.contact-info-panel,
	.map-panel {
		padding: 26px;
	}

	.hero--cinematic .hero-copy {
		max-width: 390px;
		padding: 22px;
	}

	.hero--cinematic .hero-copy h1 {
		font-size: clamp(1.75rem, 8vw, 2.25rem);
	}

	.hero--cinematic .hero-copy p:not(.eyebrow) {
		font-size: 0.9rem;
	}

	.hero-visual {
		min-height: 420px;
	}

	.hero-frame--main {
		inset: 22px 18px 42px 18px;
		transform: none;
	}

	.hero-frame--float {
		width: 42%;
		height: 25%;
	}

	.hero-frame--one {
		right: 0;
	}

	.hero-frame--two {
		left: 0;
	}

	.card-grid,
	.service-detail-grid,
	.trust-grid,
	.team-grid,
	.contact-buttons,
	.contact-form,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.contact-form label:nth-child(5),
	.contact-form button {
		grid-column: auto;
	}

	.leader-card {
		grid-template-columns: 1fr;
	}

	.profile-mark {
		width: 86px;
		height: 86px;
	}

	.pill-grid {
		grid-template-columns: 1fr;
	}

	.collage-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-rows: 140px;
		gap: 14px;
	}

	.collage-item,
	.collage-item:nth-child(n) {
		grid-column: span 1;
		grid-row: span 2;
		min-height: 220px;
	}

	.collage-item:nth-child(5n+1) {
		grid-column: span 2;
		grid-row: span 2;
	}

	.footer-socials {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: 100%;
	}
}

@media (max-width: 440px) {
	h1 {
		font-size: 2.2rem;
	}

	h2 {
		font-size: 1.75rem;
	}

	.site-brand img,
	.custom-logo-link img {
		width: min(172px, 52vw);
	}

	.hero-visual {
		min-height: 360px;
	}

	.hero--cinematic {
		padding: 104px 0 64px;
	}

	.hero--cinematic .hero-copy h1 {
		font-size: 1.75rem;
	}

	.hero-scroll-bg {
		inset: 0;
	}

	.hero-scroll-row {
		left: -74%;
		width: 248%;
		height: 154px;
	}

	.hero-scroll-track {
		gap: 12px;
	}

	.hero-scroll-track figure {
		width: 210px;
	}

	.hero-frame--float {
		display: none;
	}

	.collage-grid {
		grid-template-columns: 1fr;
		grid-auto-rows: auto;
	}

	.collage-item,
	.collage-item:nth-child(n),
	.collage-item:nth-child(5n+1) {
		grid-column: auto;
		grid-row: auto;
		aspect-ratio: 4 / 5;
		min-height: 0;
	}

	.floating-whatsapp {
		width: 54px;
		height: 54px;
	}

	.back-to-top {
		width: 54px;
	}
}

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

	.hero-scroll-track {
		animation: none !important;
		transform: translateX(-18%);
	}
}
