:root {
	--navy-950: #040d1b;
	--navy-900: #061528;
	--navy-800: #0b1f3a;
	--navy-700: #13294d;
	--navy-600: #1f3a66;
	--navy-500: #2e4f84;

	--white: #ffffff;
	--paper: #f4f6fa;
	--paper-2: #eaeef5;
	--line: #dde3ed;
	--line-2: #c7cfdc;

	--ink: #0b1220;
	--gray-700: #3d4658;
	--gray-600: #5c6679;
	--gray-500: #8089a0;
	--gray-400: #a9b0c2;

	--gold: #c9a24b;
	--gold-light: #e0bc6f;

	--sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--serif: 'Instrument Serif', Georgia, serif;

	--maxw: 1320px;
	--gutter: clamp(20px, 4vw, 64px);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
body {
	margin: 0;
	font-family: var(--sans);
	color: var(--ink);
	background: var(--white);
	font-size: 16px;
	line-height: 1.55;
	overflow-x: hidden;
}
img,
svg {
	display: block;
	max-width: 100%;
}
a {
	color: inherit;
	text-decoration: none;
}
button {
	font-family: inherit;
	cursor: pointer;
	border: none;
	background: none;
}
::selection {
	background: var(--navy-800);
	color: var(--white);
}

.container {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 var(--gutter);
}

/* ============== Top utility ============== */
.utility {
	background: var(--navy-950);
	color: rgba(255, 255, 255, 0.62);
	font-size: 12px;
	letter-spacing: 0.04em;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.utility .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
}
.utility .left,
.utility .right {
	display: flex;
	gap: 24px;
	align-items: center;
}
.utility a {
	transition: color 0.2s;
}
.utility a:hover {
	color: var(--white);
}
.utility .sep {
	color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 780px) {
	.utility .left .reg {
		display: none;
	}
}
@media (max-width: 560px) {
	.utility {
		font-size: 11px;
	}
	.utility .left {
		display: none;
	}
	.utility .container {
		justify-content: center;
	}
	.utility .right {
		width: 100%;
		justify-content: center;
	}
}

/* ============== Navigation ============== */
.nav {
	position: sticky;
	top: 0;
	z-index: 80;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid var(--line);
}
.nav .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 84px;
}
.brand {
	display: flex;
	align-items: center;
	gap: 14px;
}
.brand-logo {
	width: 46px;
	height: 46px;
	object-fit: contain;
}
.brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1;
}
.brand-text .top {
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.14em;
	color: var(--navy-900);
}
.brand-text .sub {
	font-weight: 500;
	font-size: 10px;
	letter-spacing: 0.26em;
	color: var(--gray-500);
	text-transform: uppercase;
	margin-top: 6px;
}

.nav-links {
	display: flex;
	gap: 36px;
	align-items: center;
}
.nav-links a {
	font-size: 14px;
	font-weight: 500;
	color: var(--navy-800);
	position: relative;
	padding: 8px 0;
	transition: color 0.2s;
}
.nav-links a:hover {
	color: var(--gold);
}
.nav-links a::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	height: 2px;
	background: var(--gold);
	transform: translateX(-50%);
	transition: width 0.25s ease;
}
.nav-links a:hover::after {
	width: 100%;
}

.nav-links a.nav-cta {
	background: var(--navy-900);
	color: var(--white);
	padding: 14px 26px;
	font-weight: 600;
	font-size: 13.5px;
	letter-spacing: 0.02em;
	border-radius: 999px;
	transition:
		background 0.25s,
		gap 0.25s;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.nav-links a.nav-cta::after {
	display: none;
}
.nav-links a.nav-cta:hover {
	background: var(--gold);
	color: var(--navy-900);
	gap: 14px;
}
.nav-links a.nav-cta svg {
	width: 14px;
	height: 14px;
}

.nav-toggle {
	display: none;
}

@media (max-width: 1000px) {
	.nav-links {
		position: fixed;
		inset: 84px 0 auto 0;
		background: var(--navy-900);
		flex-direction: column;
		align-items: stretch;
		padding: 24px var(--gutter) 32px;
		gap: 0;
		transform: translateY(-100%) translateY(-84px);
		opacity: 0;
		pointer-events: none;
		transition:
			transform 0.35s ease,
			opacity 0.25s ease;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
		max-height: calc(100vh - 84px);
		overflow-y: auto;
	}
	.nav-links.open {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}
	.nav-links a {
		color: rgba(255, 255, 255, 0.85);
		padding: 18px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
		font-size: 15.5px;
	}
	.nav-links a::after {
		display: none;
	}
	.nav-links a:hover {
		color: var(--gold-light);
	}
	.nav-links a.nav-cta {
		margin-top: 18px;
		justify-content: center;
		background: var(--gold);
		color: var(--navy-900);
	}
	.nav-toggle {
		display: flex;
		flex-direction: column;
		gap: 5px;
		padding: 10px;
		cursor: pointer;
	}
	.nav-toggle span {
		width: 24px;
		height: 1.5px;
		background: var(--navy-900);
		transition:
			transform 0.3s ease,
			opacity 0.2s;
	}
	.nav-toggle.open span:nth-child(1) {
		transform: translateY(6.5px) rotate(45deg);
	}
	.nav-toggle.open span:nth-child(2) {
		opacity: 0;
	}
	.nav-toggle.open span:nth-child(3) {
		transform: translateY(-6.5px) rotate(-45deg);
	}
}

/* ====================== Hero ====================== */
.hero {
	position: relative;
	background: var(--navy-900);
	color: var(--white);
	padding: clamp(72px, 12vh, 130px) 0 clamp(80px, 14vh, 150px);
	overflow: hidden;
	isolation: isolate;
}
.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(
			ellipse at 80% 20%,
			rgba(201, 162, 75, 0.1),
			transparent 55%
		),
		radial-gradient(
			ellipse at 10% 90%,
			rgba(31, 58, 102, 0.45),
			transparent 60%
		);
	pointer-events: none;
	z-index: 0;
}
.hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(
			circle at 10% 20%,
			rgba(255, 255, 255, 0.45) 0.5px,
			transparent 1px
		),
		radial-gradient(
			circle at 30% 70%,
			rgba(255, 255, 255, 0.3) 0.5px,
			transparent 1px
		),
		radial-gradient(
			circle at 70% 30%,
			rgba(255, 255, 255, 0.45) 0.5px,
			transparent 1px
		),
		radial-gradient(
			circle at 85% 75%,
			rgba(255, 255, 255, 0.3) 0.5px,
			transparent 1px
		),
		radial-gradient(
			circle at 50% 10%,
			rgba(255, 255, 255, 0.45) 0.5px,
			transparent 1px
		),
		radial-gradient(
			circle at 25% 40%,
			rgba(255, 255, 255, 0.25) 0.5px,
			transparent 1px
		),
		radial-gradient(
			circle at 60% 85%,
			rgba(255, 255, 255, 0.3) 0.5px,
			transparent 1px
		);
	background-size: 600px 600px;
	pointer-events: none;
	z-index: 0;
	opacity: 0.7;
}
.hero > .container {
	position: relative;
	z-index: 2;
}

.hero-inner {
	max-width: 980px;
	margin: 0 auto;
	text-align: center;
}
.hero-inner .hero-actions {
	justify-content: center;
}
.hero-inner p.lead {
	margin-left: auto;
	margin-right: auto;
}
.hero-inner .eyebrow::after {
	content: '';
	width: 32px;
	height: 1px;
	background: var(--gold);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-size: 12px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--gold-light);
	font-weight: 600;
	margin-bottom: 36px;
}
.eyebrow::before {
	content: '';
	width: 32px;
	height: 1px;
	background: var(--gold);
}

.hero h1 {
	font-family: var(--sans);
	font-weight: 300;
	font-size: clamp(40px, 6.4vw, 92px);
	line-height: 1.04;
	letter-spacing: -0.028em;
	color: var(--white);
	margin: 0 0 32px;
}
.hero h1 strong {
	font-weight: 700;
}
.hero h1 em {
	font-family: var(--serif);
	font-style: italic;
	font-weight: 400;
	color: var(--gold-light);
	letter-spacing: -0.01em;
}
.hero h1 .br-d {
	display: inline;
}
@media (max-width: 780px) {
	.hero h1 .br-d {
		display: none;
	}
}

.hero p.lead {
	font-size: clamp(16px, 1.4vw, 19px);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.74);
	max-width: 56ch;
	margin: 0 0 44px;
	font-weight: 400;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 17px 30px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.02em;
	border-radius: 999px;
	transition:
		background 0.25s,
		color 0.25s,
		gap 0.25s,
		border-color 0.25s;
}
.btn svg {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
}
.btn-primary {
	background: var(--white);
	color: var(--navy-900);
}
.btn-primary:hover {
	background: var(--gold);
	color: var(--navy-900);
	gap: 18px;
}
.btn-ghost {
	color: var(--white);
	border: 1px solid rgba(255, 255, 255, 0.32);
}
.btn-ghost:hover {
	border-color: var(--white);
	gap: 18px;
}

/* ============== Capability strip ============== */
.strip {
	background: var(--navy-950);
	color: var(--white);
	padding: 56px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.strip-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}
@media (max-width: 820px) {
	.strip-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px 0;
	}
}
.stat {
	padding: 0 clamp(16px, 2.5vw, 36px);
	border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.stat:first-child {
	border-left: none;
	padding-left: 0;
}
@media (max-width: 820px) {
	.stat {
		border-left: none;
		padding-left: 0;
	}
	.stat:nth-child(odd) {
		border-right: 1px solid rgba(255, 255, 255, 0.08);
		padding-right: 24px;
	}
	.stat:nth-child(even) {
		padding-left: 24px;
	}
}
.stat .num {
	font-weight: 200;
	font-size: clamp(40px, 4vw, 60px);
	line-height: 1;
	color: var(--white);
	letter-spacing: -0.03em;
	display: flex;
	align-items: flex-start;
	gap: 4px;
}
.stat .num small {
	font-size: 0.45em;
	color: var(--gold);
	margin-top: 0.2em;
	font-weight: 500;
}
.stat .label {
	margin-top: 14px;
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
	font-weight: 500;
}

/* =============== Section foundation =============== */
section.section {
	padding: clamp(80px, 12vh, 140px) 0;
	position: relative;
}
.section.bg-light {
	background: var(--paper);
}
.section.bg-white {
	background: var(--white);
}
.section.bg-dark {
	background: var(--navy-900);
	color: var(--white);
}

.section-head {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: clamp(24px, 5vw, 80px);
	align-items: end;
	margin-bottom: clamp(48px, 7vh, 88px);
}
@media (max-width: 880px) {
	.section-head {
		grid-template-columns: 1fr;
	}
}
.section-num {
	font-family: var(--sans);
	font-size: 12px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--gold);
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 14px;
}
.section-num::before {
	content: '';
	width: 32px;
	height: 1px;
	background: var(--gold);
}
.section.bg-dark .section-num {
	color: var(--gold-light);
}
.section.bg-dark .section-num::before {
	background: var(--gold-light);
}

.section-title {
	font-family: var(--sans);
	font-weight: 300;
	font-size: clamp(32px, 4vw, 56px);
	letter-spacing: -0.025em;
	line-height: 1.08;
	color: var(--navy-900);
	margin: 18px 0 0;
}
.section-title strong {
	font-weight: 700;
}
.section-title em {
	font-family: var(--serif);
	font-style: italic;
	font-weight: 400;
	color: var(--gold);
	letter-spacing: -0.01em;
}
.section.bg-dark .section-title {
	color: var(--white);
}
.section.bg-dark .section-title em {
	color: var(--gold-light);
}

.section-intro {
	font-size: clamp(15px, 1.2vw, 17px);
	color: var(--gray-600);
	line-height: 1.7;
	max-width: 56ch;
	font-weight: 400;
}
.section.bg-dark .section-intro {
	color: rgba(255, 255, 255, 0.66);
}

/* ===================== About ===================== */
.about-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: clamp(40px, 6vw, 96px);
	align-items: flex-start;
}
@media (max-width: 880px) {
	.about-grid {
		grid-template-columns: 1fr;
	}
}

.lead-statement {
	font-family: var(--sans);
	font-weight: 300;
	font-size: clamp(22px, 2.4vw, 32px);
	line-height: 1.36;
	color: var(--navy-900);
	letter-spacing: -0.015em;
	margin: 0 0 36px;
}
.lead-statement em {
	font-family: var(--serif);
	font-style: italic;
	font-weight: 400;
	color: var(--gold);
}

.about-body p {
	margin: 0 0 18px;
	color: var(--gray-700);
	font-size: 16px;
	line-height: 1.75;
}
.about-body p:last-child {
	margin-bottom: 0;
}

.principles {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
}
.principle {
	background: var(--white);
	padding: 30px 28px;
}
.principle .label {
	font-size: 11px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--gold);
	font-weight: 700;
	margin-bottom: 12px;
}
.principle .body {
	color: var(--navy-800);
	font-size: 14.5px;
	line-height: 1.65;
}

/* =================== Services =================== */
.service-stack {
	display: flex;
	flex-direction: column;
	border-top: 1px solid var(--line);
}
.service {
	display: grid;
	grid-template-columns: 80px 1.25fr 2fr 60px;
	gap: clamp(20px, 3vw, 48px);
	padding: clamp(36px, 5vw, 56px) 0;
	border-bottom: 1px solid var(--line);
	align-items: flex-start;
	position: relative;
	transition: background 0.35s ease;
}
.service:hover {
	background: rgba(255, 255, 255, 0.6);
}
@media (max-width: 880px) {
	.service {
		grid-template-columns: 1fr;
		gap: 18px;
	}
	.service .arrow {
		display: none;
	}
}
.service .num {
	font-weight: 300;
	font-size: 36px;
	color: var(--gold);
	line-height: 1;
	letter-spacing: -0.02em;
	font-family: var(--serif);
	font-style: italic;
}
.service .head h3 {
	font-weight: 600;
	font-size: clamp(22px, 2vw, 28px);
	color: var(--navy-900);
	margin: 0 0 12px;
	line-height: 1.2;
	letter-spacing: -0.015em;
}
.service .head .tag {
	font-size: 11.5px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold);
	font-weight: 700;
	margin-bottom: 10px;
	display: block;
}
.service .body p {
	margin: 0 0 20px;
	color: var(--gray-700);
	font-size: 15.5px;
	line-height: 1.7;
}
.service .capabilities {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 6px 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}
@media (max-width: 600px) {
	.service .capabilities {
		grid-template-columns: 1fr;
	}
}
.service .capabilities li {
	font-size: 13.5px;
	color: var(--navy-800);
	padding-left: 18px;
	position: relative;
	line-height: 1.55;
}
.service .capabilities li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 9px;
	width: 8px;
	height: 1px;
	background: var(--gold);
}
.service .arrow {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid var(--line);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--navy-800);
	background: var(--white);
	transition:
		background 0.3s,
		border-color 0.3s,
		transform 0.3s,
		color 0.3s;
	margin-top: 8px;
	align-self: center;
}
.service:hover .arrow {
	background: var(--navy-900);
	border-color: var(--navy-900);
	color: var(--white);
	transform: translateX(4px);
}
.service .arrow svg {
	width: 16px;
	height: 16px;
}

/* =================== Why Luna =================== */
.why-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 880px) {
	.why-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 600px) {
	.why-grid {
		grid-template-columns: 1fr;
	}
}
.why-card {
	background: var(--navy-900);
	padding: 38px 32px 36px;
	transition: background 0.35s ease;
}
.why-card:hover {
	background: var(--navy-700);
}
.why-card .ico {
	width: 34px;
	height: 34px;
	margin-bottom: 24px;
	color: var(--gold);
	stroke-width: 1.4;
}
.why-card h4 {
	font-weight: 600;
	font-size: 19px;
	color: var(--white);
	margin: 0 0 12px;
	letter-spacing: -0.01em;
}
.why-card p {
	color: rgba(255, 255, 255, 0.62);
	font-size: 14.5px;
	line-height: 1.65;
	margin: 0;
}

/* =================== Process =================== */
.process-track {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: clamp(16px, 2vw, 32px);
	margin-top: 40px;
}
.process-track::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 18px;
	height: 1px;
	background: var(--line-2);
	z-index: 0;
}
@media (max-width: 880px) {
	.process-track {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.process-track::before {
		left: 18px;
		right: auto;
		top: 0;
		bottom: 0;
		width: 1px;
		height: auto;
	}
	.process-step {
		padding-left: 50px;
		padding-bottom: 36px;
		padding-top: 0;
	}
	.process-step .dot {
		left: 10px !important;
		top: 0 !important;
	}
}
.process-step {
	position: relative;
	padding-top: 42px;
}
.process-step .dot {
	position: absolute;
	top: 11px;
	left: 0;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--white);
	border: 2px solid var(--gold);
	z-index: 1;
}
.process-step .dot::after {
	content: '';
	position: absolute;
	inset: 3px;
	background: var(--gold);
	border-radius: 50%;
}
.process-step .num {
	font-size: 11px;
	color: var(--gold);
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.process-step h5 {
	font-weight: 600;
	font-size: 20px;
	color: var(--navy-900);
	margin: 0 0 10px;
	letter-spacing: -0.01em;
}
.process-step p {
	font-size: 14px;
	color: var(--gray-600);
	line-height: 1.6;
	margin: 0;
}

/* =================== Industries =================== */
.industries-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
}
@media (max-width: 880px) {
	.industries-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 520px) {
	.industries-grid {
		grid-template-columns: 1fr;
	}
}
.industry {
	background: var(--white);
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-height: 168px;
	transition:
		background 0.3s,
		transform 0.3s;
}
.industry:hover {
	background: var(--paper);
}
.industry .ico {
	width: 30px;
	height: 30px;
	color: var(--gold);
	stroke-width: 1.4;
}
.industry .name {
	font-weight: 600;
	font-size: 17px;
	color: var(--navy-900);
	letter-spacing: -0.01em;
}
.industry .desc {
	font-size: 13px;
	color: var(--gray-600);
	line-height: 1.55;
	margin-top: auto;
}

/* =================== Presence =================== */
.presence-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: clamp(40px, 6vw, 80px);
	align-items: center;
}
@media (max-width: 880px) {
	.presence-grid {
		grid-template-columns: 1fr;
	}
}
.map-card {
	background: var(--paper);
	border: 1px solid var(--line);
	padding: 36px;
	border-radius: 4px;
}
.map-card svg {
	width: 100%;
	height: auto;
}

.pin-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.pin {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	padding: 22px 24px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 4px;
	transition:
		transform 0.3s ease,
		border-color 0.3s ease,
		background 0.3s;
}
.pin:hover {
	border-color: var(--gold);
	background: var(--paper);
	transform: translateY(-2px);
}
.pin .marker {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--navy-900);
	color: var(--gold-light);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.06em;
	flex-shrink: 0;
}
.pin h6 {
	font-weight: 600;
	font-size: 17px;
	margin: 0 0 4px;
	color: var(--navy-900);
	letter-spacing: -0.01em;
}
.pin p {
	font-size: 13.5px;
	color: var(--gray-600);
	margin: 0;
	line-height: 1.55;
}

/* =================== CTA =================== */
.cta {
	background: var(--navy-900);
	color: var(--white);
	position: relative;
	overflow: hidden;
	padding: clamp(80px, 12vh, 130px) 0;
}
.cta::before {
	content: '';
	position: absolute;
	right: -10%;
	bottom: -20%;
	width: 520px;
	height: 520px;
	border-radius: 50%;
	border: 1px solid rgba(201, 162, 75, 0.16);
	pointer-events: none;
}
.cta::after {
	content: '';
	position: absolute;
	right: 5%;
	bottom: -8%;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	border: 1px dashed rgba(255, 255, 255, 0.08);
	pointer-events: none;
}
.cta-inner {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 64px;
	align-items: center;
	position: relative;
	z-index: 2;
}
@media (max-width: 880px) {
	.cta-inner {
		grid-template-columns: 1fr;
	}
}
.cta h2 {
	font-family: var(--sans);
	font-weight: 300;
	font-size: clamp(34px, 4.6vw, 56px);
	line-height: 1.08;
	letter-spacing: -0.025em;
	margin: 0 0 24px;
}
.cta h2 strong {
	font-weight: 700;
}
.cta h2 em {
	font-family: var(--serif);
	font-style: italic;
	font-weight: 400;
	color: var(--gold-light);
}
.cta p {
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.74);
	max-width: 56ch;
	margin: 0 0 32px;
}
.cta .btn-primary {
	background: var(--gold);
	color: var(--navy-900);
}
.cta .btn-primary:hover {
	background: var(--white);
	color: var(--navy-900);
}

.contact-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 36px;
	border-radius: 4px;
	backdrop-filter: blur(12px);
}
.contact-card h6 {
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold-light);
	font-weight: 700;
	margin: 0 0 24px;
}
.contact-row {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-row:last-child {
	border-bottom: none;
}
.contact-row .ico {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	border-radius: 50%;
	background: rgba(201, 162, 75, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold-light);
}
.contact-row .ico svg {
	width: 14px;
	height: 14px;
}
.contact-row .txt small {
	display: block;
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	margin-bottom: 2px;
	font-weight: 600;
}
.contact-row .txt span {
	color: var(--white);
	font-size: 14.5px;
}

/* =================== Footer =================== */
footer.foot {
	background: var(--navy-950);
	color: rgba(255, 255, 255, 0.62);
	padding: 64px 0 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.foot-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: clamp(28px, 4vw, 56px);
	margin-bottom: 48px;
}
@media (max-width: 780px) {
	.foot-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 480px) {
	.foot-grid {
		grid-template-columns: 1fr;
	}
}
.foot-brand .brand-text .top {
	color: var(--white);
}
.foot-brand .brand-text .sub {
	color: rgba(255, 255, 255, 0.5);
}
.foot-brand p {
	font-size: 14px;
	line-height: 1.65;
	max-width: 42ch;
	margin: 22px 0 0;
	color: rgba(255, 255, 255, 0.55);
}
.foot h6 {
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold-light);
	margin: 8px 0 18px;
	font-weight: 700;
}
.foot ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.foot ul li {
	margin-bottom: 10px;
}
.foot ul a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	transition: color 0.25s;
}
.foot ul a:hover {
	color: var(--gold-light);
}
.foot-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 12px;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.42);
}

/* Reveal animations */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
		transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
	opacity: 1;
	transform: translateY(0);
}
.reveal.d1 {
	transition-delay: 0.08s;
}
.reveal.d2 {
	transition-delay: 0.16s;
}
.reveal.d3 {
	transition-delay: 0.24s;
}
.reveal.d4 {
	transition-delay: 0.32s;
}
.reveal.d5 {
	transition-delay: 0.4s;
}

.hide {
	display: none;
}

@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
	html {
		scroll-behavior: auto;
	}
}
