:root {
	--navy-deep: #050D24;
	--navy: #0A1A40;
	--sapphire: #132B63;
	--sapphire-lt: #1E3D85;
	--gold: #D8B45C;
	--gold-lt: #F6DE9C;
	--gold-dk: #9C7420;
	--ivory: #F3EFE4;
	--mist: #A6B4D6;
	--grad-gold: linear-gradient(115deg, #8F6A1E 0%, #D8B45C 25%, #F9E8B0 50%, #D8B45C 75%, #8F6A1E 100%);
	--serif: 'Marcellus', serif;
	--sans: 'Jost', sans-serif;
	--script: 'Great Vibes', cursive;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	background: var(--navy-deep);
	color: var(--ivory);
	font-family: var(--sans);
	font-weight: 300;
	line-height: 1.65;
	/* overflow-x: hidden; */
}
img {
	max-width: 100%;
	display: block;
}
a {
	color: inherit;
	text-decoration: none;
}
:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 3px;
	border-radius: 2px;
}
.wrap {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0;
}
/* ---------- gold text utility ---------- */
.gold-text {
	background: var(--grad-gold);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
/* ---------- nav ---------- */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	transition: background .4s, box-shadow .4s;
	padding: 14px 1rem;
}
nav.scrolled {
	background: rgba(5, 13, 36, .92);
	backdrop-filter: blur(14px);
	box-shadow: 0 1px 0 rgba(216, 180, 92, .25);
}
.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.nav-logo img {
	height: 54px;
	width: auto;
}
.nav-links {
	display: flex;
	gap: 34px;
	align-items: center;
	list-style: none;
}
.nav-links a {
	font-size: .82rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--mist);
	transition: color .25s;
}
.nav-links a:hover {
	color: var(--gold-lt);
}
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: var(--sans);
	font-weight: 500;
	font-size: .85rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	padding: 15px 32px;
	border: none;
	cursor: pointer;
	transition: transform .25s, box-shadow .25s, background .25s;
	border-radius: 2px;
}
.btn-gold {
	background: var(--grad-gold);
	background-size: 200% auto;
	color: #20180A;
	box-shadow: 0 6px 24px rgba(216, 180, 92, .28);
}
.btn-gold:hover {
	background-position: right center;
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(216, 180, 92, .4);
}
.btn-line {
	background: transparent;
	color: var(--gold-lt);
	border: 1px solid rgba(216, 180, 92, .55);
}
.btn-line:hover {
	border-color: var(--gold-lt);
	background: rgba(216, 180, 92, .08);
	transform: translateY(-2px);
}
.nav-cta {
	padding: 11px 24px;
	font-size: .76rem;
}
.menu-btn {
	display: none;
	background: none;
	border: 1px solid rgba(216, 180, 92, .5);
	color: var(--gold-lt);
	padding: 8px 14px;
	font-size: .8rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	cursor: pointer;
	border-radius: 2px;
}
/* ---------- language toggle ---------- */
.lang-toggle {
	display: flex;
	border: 1px solid rgba(216, 180, 92, .5);
	border-radius: 2px;
	overflow: hidden;
}
.lang-toggle button {
	background: transparent;
	border: none;
	color: var(--mist);
	font-family: var(--sans);
	font-weight: 500;
	font-size: .74rem;
	letter-spacing: .12em;
	padding: 9px 13px;
	cursor: pointer;
	transition: background .25s, color .25s;
}
.lang-toggle button.active {
	background: var(--grad-gold);
	color: #20180A;
}
.lang-toggle button:not(.active):hover {
	color: var(--gold-lt);
}
/* ---------- hero ---------- */
header {
	position: relative;
	display: flex;
	align-items: center;
	padding: 130px 0 84px;
	background: radial-gradient(1100px 620px at 82% -10%, rgba(30, 61, 133, .55), transparent 62%), radial-gradient(900px 700px at -12% 108%, rgba(19, 43, 99, .6), transparent 60%), linear-gradient(168deg, #081431 0%, #050D24 55%, #04091B 100%);
}
header::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(166, 180, 214, .14) 1px, transparent 1.6px);
	background-size: 26px 26px;
	mask-image: radial-gradient(760px 480px at 78% 22%, rgba(0, 0, 0, .9), transparent 70%);
	-webkit-mask-image: radial-gradient(760px 480px at 78% 22%, rgba(0, 0, 0, .9), transparent 70%);
	pointer-events: none;
}
.hero-swoosh {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	overflow: visible;
}
.hero-grid {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 56px;
	align-items: center;
	position: relative;
	align-items: start;
}
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: .75rem;
	letter-spacing: .3em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 26px;
}
.eyebrow::before, .eyebrow::after {
	content: "";
	height: 1px;
	width: 34px;
	background: linear-gradient(90deg, transparent, var(--gold));
	display: inline-block;
}
.eyebrow::after {
	background: linear-gradient(90deg, var(--gold), transparent);
}
h1 {
	font-family: var(--serif);
	font-weight: 400;
	font-size: clamp(2.5rem, 5.2vw, 4.3rem);
	line-height: 1.12;
	letter-spacing: .01em;
}
h1 .script {
	font-family: var(--script);
	font-size: 1.18em;
	font-weight: 400;
	display: inline-block;
	transform: rotate(-2deg) translateY(4px);
	padding-right: .15em;
}
.hero-sub {
	margin: 24px 0 32px;
	max-width: 540px;
	color: var(--mist);
	font-size: 1.08rem;
	font-weight: 300;
}
.hero-ctas {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
}
.hero-emblem {
	width: 200px;
	margin: 0 auto 26px;
	filter: drop-shadow(0 10px 26px rgba(0, 0, 0, .5));
}
.hero-form form {
	padding: 36px 34px;
}
.form-title {
	font-family: var(--serif);
	font-size: 1.5rem;
	line-height: 1.25;
	margin-bottom: 6px;
	color: var(--ivory);
}
.form-sub {
	font-size: .88rem;
	color: var(--mist);
	margin-bottom: 24px;
}
.trust-strip {
	margin-top: 66px;
	border-top: 1px solid rgba(216, 180, 92, .22);
	padding-top: 34px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;
}
.trust {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}
.trust svg {
	flex: 0 0 34px;
	height: 34px;
	stroke: var(--gold);
	fill: none;
	stroke-width: 1.4;
}
.trust h3 {
	font-family: var(--serif);
	font-weight: 400;
	font-size: .98rem;
	letter-spacing: .06em;
	color: var(--gold-lt);
	margin-bottom: 4px;
	text-transform: uppercase;
}
.trust p {
	font-size: .85rem;
	color: var(--mist);
}
/* ---------- section scaffolding ---------- */
section {
	padding: 110px 0;
	position: relative;
}
.sec-head {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 66px;
}
.sec-head .eyebrow {
	margin-bottom: 18px;
}
h2 {
	font-family: var(--serif);
	font-weight: 400;
	font-size: clamp(1.9rem, 3.4vw, 2.7rem);
	line-height: 1.2;
}
.sec-head p {
	margin-top: 18px;
	color: var(--mist);
}
/* ---------- procedures ---------- */
#procedures {
	background: linear-gradient(180deg, #04091B 0%, #081431 100%);
}
.proc-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}
.proc {
	position: relative;
	border: 1px solid rgba(216, 180, 92, .2);
	background: linear-gradient(165deg, rgba(19, 43, 99, .35), rgba(10, 26, 64, .55));
	padding: 38px 28px 32px;
	border-radius: 3px;
	transition: transform .3s, border-color .3s, box-shadow .3s;
	overflow: hidden;
}
.proc::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--grad-gold);
	opacity: 0;
	transition: opacity .3s;
}
.proc:hover {
	transform: translateY(-6px);
	border-color: rgba(216, 180, 92, .55);
	box-shadow: 0 18px 44px rgba(0, 0, 0, .45);
}
.proc:hover::before {
	opacity: 1;
}
.proc svg {
	width: 38px;
	height: 38px;
	stroke: var(--gold);
	fill: none;
	stroke-width: 1.3;
	margin-bottom: 20px;
}
.proc h3 {
	font-family: var(--serif);
	font-weight: 400;
	font-size: 1.12rem;
	letter-spacing: .04em;
	margin-bottom: 10px;
	color: var(--ivory);
}
.proc p {
	font-size: .88rem;
	color: var(--mist);
}
/* ---------- why / pillars ---------- */
#why {
	background: #081431;
}
.why-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 26px;
}
.pillar {
	display: flex;
	gap: 22px;
	padding: 34px;
	border: 1px solid rgba(216, 180, 92, .18);
	background: rgba(5, 13, 36, .5);
	border-radius: 3px;
}
.pillar .num {
	font-family: var(--serif);
	font-size: 2rem;
	line-height: 1;
	flex: 0 0 auto;
}
.pillar h3 {
	font-family: var(--serif);
	font-weight: 400;
	font-size: 1.15rem;
	letter-spacing: .05em;
	margin-bottom: 8px;
	color: var(--gold-lt);
}
.pillar p {
	font-size: .92rem;
	color: var(--mist);
}
.savings {
	margin-top: 56px;
	text-align: center;
	border: 1px solid rgba(216, 180, 92, .35);
	background: linear-gradient(120deg, rgba(19, 43, 99, .4), rgba(10, 26, 64, .7));
	padding: 46px 30px;
	border-radius: 3px;
	position: relative;
	overflow: hidden;
}
.savings::before {
	content: "";
	position: absolute;
	top: -60%;
	left: -20%;
	width: 60%;
	height: 220%;
	background: linear-gradient(100deg, transparent, rgba(246, 222, 156, .07), transparent);
	transform: rotate(8deg);
}
.savings .big {
	font-family: var(--serif);
	font-size: clamp(2.4rem, 4.4vw, 3.6rem);
	line-height: 1;
}
.savings p {
	margin-top: 12px;
	color: var(--mist);
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}
/* ---------- journey (signature) ---------- */
#journey {
	background: linear-gradient(180deg, #081431, #050D24);
}
.journey-wrap {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
}
.j-path {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	height: 100%;
	width: 120px;
	pointer-events: none;
}
.j-path path {
	stroke: url(#goldPath);
	stroke-width: 2.6;
	fill: none;
	stroke-linecap: round;
}
.step {
	display: grid;
	grid-template-columns: 1fr 130px 1fr;
	align-items: center;
	margin-bottom: 58px;
}
.step:last-child {
	margin-bottom: 0;
}
.step .dot {
	grid-column: 2;
	justify-self: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	border: 1px solid rgba(216, 180, 92, .6);
	background: radial-gradient(circle at 34% 30%, #1E3D85, #0A1A40);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--serif);
	font-size: 1.15rem;
	color: var(--gold-lt);
	box-shadow: 0 0 0 6px rgba(216, 180, 92, .08), 0 10px 26px rgba(0, 0, 0, .5);
	position: relative;
	z-index: 2;
}
.step .card {
	grid-column: 1;
	text-align: right;
	padding-right: 8px;
	opacity: 0;
	transform: translateY(26px);
	transition: opacity .7s ease, transform .7s ease;
}
.step:nth-child(even) .card {
	grid-column: 3;
	text-align: left;
	padding-right: 0;
	padding-left: 8px;
}
.step.in .card {
	opacity: 1;
	transform: none;
}
.step h3 {
	font-family: var(--serif);
	font-weight: 400;
	font-size: 1.2rem;
	letter-spacing: .04em;
	color: var(--gold-lt);
	margin-bottom: 8px;
}
.step p {
	font-size: .92rem;
	color: var(--mist);
	max-width: 340px;
	display: inline-block;
}
/* ---------- testimonials ---------- */
#stories {
	background: #050D24;
}
.quote-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.quote {
	border: 1px solid rgba(216, 180, 92, .2);
	background: linear-gradient(170deg, rgba(19, 43, 99, .3), rgba(5, 13, 36, .6));
	padding: 40px 32px;
	border-radius: 3px;
	position: relative;
}
.quote::before {
	content: "“";
	font-family: var(--serif);
	font-size: 4.4rem;
	line-height: .6;
	color: var(--gold);
	opacity: .7;
	display: block;
	margin-bottom: 18px;
}
.quote p {
	font-size: .96rem;
	color: var(--ivory);
	font-style: italic;
}
.quote footer {
	margin-top: 22px;
	font-size: .8rem;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--gold);
}
.quote footer span {
	display: block;
	color: var(--mist);
	letter-spacing: .08em;
	text-transform: none;
	margin-top: 3px;
	font-size: .82rem;
}
/* ---------- form ---------- */
form {
	background: rgba(5, 13, 36, .72);
	border: 1px solid rgba(216, 180, 92, .3);
	padding: 44px;
	border-radius: 4px;
	box-shadow: 0 30px 70px rgba(0, 0, 0, .5);
	position: relative;
}
form::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--grad-gold);
	border-radius: 4px 4px 0 0;
}
.f-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}
.f-group {
	margin-bottom: 16px;
}
label {
	display: block;
	font-size: .74rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 8px;
}
input, select, textarea {
	width: 100%;
	background: rgba(19, 43, 99, .28);
	border: 1px solid rgba(166, 180, 214, .28);
	color: var(--ivory);
	font-family: var(--sans);
	font-weight: 300;
	font-size: .96rem;
	padding: 13px 15px;
	border-radius: 2px;
	transition: border-color .25s;
	appearance: none;
}
select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D8B45C' fill='none' stroke-width='1.6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 15px center;
}
select option {
	background: #0A1A40;
	color: var(--ivory);
}
input:focus, select:focus, textarea:focus {
	outline: none;
	border-color: var(--gold);
}
textarea {
	min-height: 72px;
	resize: vertical;
}
.form-note {
	font-size: .78rem;
	color: var(--mist);
	margin-top: 16px;
	text-align: center;
}
/* ---------- faq ---------- */
#faq {
	background: #050D24;
}
.faq-wrap {
	max-width: 760px;
	margin: 0 auto;
}
details {
	border-bottom: 1px solid rgba(216, 180, 92, .2);
}
summary {
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding: 24px 4px;
	font-family: var(--serif);
	font-size: 1.06rem;
	letter-spacing: .03em;
	color: var(--ivory);
	transition: color .25s;
}
summary::-webkit-details-marker {
	display: none;
}
summary::after {
	content: "+";
	font-family: var(--sans);
	font-weight: 300;
	font-size: 1.5rem;
	color: var(--gold);
	transition: transform .3s;
	flex: 0 0 auto;
}
details[open] summary::after {
	transform: rotate(45deg);
}
summary:hover {
	color: var(--gold-lt);
}
details p {
	padding: 0 4px 26px;
	color: var(--mist);
	font-size: .95rem;
	max-width: 640px;
}
/* ---------- final cta / footer ---------- */
.final {
	background: linear-gradient(180deg, #050D24, #04091B);
	text-align: center;
	padding: 100px 0;
}
.final .script-line {
	font-family: var(--script);
	font-size: clamp(2.6rem, 5vw, 4rem);
	display: block;
	margin-bottom: 10px;
}
.final p {
	color: var(--mist);
	max-width: 520px;
	margin: 18px auto 36px;
}
footer.site {
	border-top: 1px solid rgba(216, 180, 92, .18);
	padding: 44px 1rem;
	background: #04091B;
	width: 100%;
    display: block;
}
.foot-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.foot-inner img {
	height: 48px;
	width: auto;
}
.foot-inner small {
	color: var(--mist);
	font-size: .8rem;
	letter-spacing: .05em;
}
.foot-links {
	display: flex;
	gap: 1rem;
	font-size: .78rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--mist);
}
.foot-links a:hover {
	color: var(--gold-lt);
}
/* ---------- floating WA ---------- */
.wa-float {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 90;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: var(--grad-gold);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 30px rgba(216, 180, 92, .45);
	transition: transform .25s;
}
.wa-float:hover {
	transform: scale(1.08);
}
.wa-float svg {
	width: 28px;
	height: 28px;
	fill: #20180A;
}
/* ---------- reveal ---------- */
.rv {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity .8s ease, transform .8s ease;
}
.rv.in {
	opacity: 1;
	transform: none;
}
@media (prefers-reduced-motion:reduce) {
	* {
		transition: none !important;
		animation: none !important;
		scroll-behavior: auto !important;
	}
	.rv, .step .card {
		opacity: 1 !important;
		transform: none !important;
	}
	.foot-links {
		display: inline;
	}
	.foot-links a {
		display: block;
	}
}
/* ---------- responsive ---------- */
@media(max-width:980px) {
	.hero-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.hero-sub {
		margin-left: auto;
		margin-right: auto;
	}
	.hero-ctas {
		justify-content: center;
	}
	.hero-emblem {
		margin-left: auto;
		margin-right: auto;
		width: 170px;
	}
	.hero-form form {
		text-align: left;
	}
	.trust-strip {
		grid-template-columns: repeat(2, 1fr);
	}
	.proc-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.why-grid {
		grid-template-columns: 1fr;
	}
	.quote-grid {
		grid-template-columns: 1fr;
	}
	.nav-links {
		display: none;
	}
	.menu-btn {
		display: block;
	}
	nav.open .nav-links {
		display: flex;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		background: rgba(5, 13, 36, .97);
		padding: 26px 0;
		gap: 22px;
		border-bottom: 1px solid rgba(216, 180, 92, .25);
	}
}
@media(max-width:600px) {
	section {
		padding: 80px 1rem;
	}
	.proc-grid {
		grid-template-columns: 1fr
	}
	.trust-strip {
		grid-template-columns: 1fr
	}
	.step {
		grid-template-columns: 64px 1fr;
		margin-bottom: 44px
	}
	.step .dot {
		grid-column: 1;
		width: 48px;
		height: 48px;
	}
	.step .card, .step:nth-child(even) .card {
		grid-column: 2;
		text-align: left;
		padding: 0 0 0 14px;
	}
	.j-path {
		left: 31px;
		transform: none;
		width: 4px;
	}
	form {
		padding: 30px 22px;
	}
	.f-row {
		grid-template-columns: 1fr;
	}
	.nav-cta {
		display: none;
	}
	.nav-logo img {
		height: 44px;
	}
}