:root
{
	--bg: #06080e;
	--surface: rgba(12, 16, 28, 0.78);
	--surface-strong: rgba(13, 17, 30, 0.92);
	--stroke: rgba(255, 255, 255, 0.16);
	--text: #ece7de;
	--muted: rgba(236, 231, 222, 0.72);
	--gold-1: #b88a43;
	--gold-2: #8f6732;
	--radius-lg: 14px;
	--shadow: 0 22px 50px rgba(0, 0, 0, 0.46);
}

*
{
	box-sizing: border-box;
}

html,
body
{
	margin: 0;
	padding: 0;
	font-family: Inter, Arial, sans-serif;
	color: var(--text);
	background: var(--bg);
}

body
{
	min-height: 100vh;
	background-image:
		radial-gradient(circle at 50% 24%, rgba(169, 152, 122, 0.14), transparent 56%),
		radial-gradient(circle at 12% 65%, rgba(35, 51, 87, 0.2), transparent 52%),
		linear-gradient(160deg, #05070c 0%, #0a101d 52%, #070b13 100%);
	position: relative;
}

body::before
{
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	opacity: 0.06;
	background-image:
		repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.32) 1px, transparent 1px, transparent 3px),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.22) 1px, transparent 1px, transparent 4px);
	mix-blend-mode: soft-light;
	z-index: 0;
}

.page-shell
{
	position: relative;
	z-index: 1;
	width: min(1220px, calc(100% - 48px));
	margin: 0 auto;
	padding-bottom: 56px;
}

.topbar
{
	border-bottom: 1px solid var(--stroke);
	padding: 18px 0;
}

.topbar-inner
{
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 20px;
}

.brand
{
	font-family: "Cormorant Garamond", serif;
	font-weight: 600;
	font-size: clamp(2rem, 2vw, 2.15rem);
	letter-spacing: 0.06em;
	color: var(--text);
	text-decoration: none;
}

.topnav
{
	display: flex;
	justify-content: center;
	gap: 38px;
}

.topnav a
{
	position: relative;
	color: var(--muted);
	text-decoration: none;
	font-weight: 500;
	padding-bottom: 8px;
}

.topnav a.active
{
	color: var(--text);
}

.topnav a.active::after
{
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: rgba(236, 231, 222, 0.9);
	border-radius: 999px;
}

.topnav a:focus-visible
{
	outline: 2px solid rgba(184, 138, 67, 0.95);
	outline-offset: 4px;
	border-radius: 4px;
}

.topbar-cta
{
	justify-self: end;
}

.page
{
	padding-top: 40px;
}

.hero
{
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.92fr);
	align-items: start;
	gap: clamp(28px, 4vw, 80px);
	padding: 26px 2px 20px;
}

.hero-left h1
{
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(3rem, 5.2vw, 5.4rem);
	font-weight: 500;
	line-height: 1.05;
	letter-spacing: 0.004em;
	margin: 0;
}

.hero-left h1 em
{
	font-style: italic;
	font-weight: 500;
}

.hero-left p
{
	max-width: 720px;
	color: var(--muted);
	font-size: 1.42rem;
	line-height: 1.6;
	margin: 26px 0 30px;
}

.hero-actions
{
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 26px;
}

.hero-links
{
	display: inline-flex;
	gap: 16px;
	align-items: center;
}

.hero-links a
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.24);
	text-decoration: none;
	color: var(--text);
}

.hero-links a:hover,
.hero-links a:focus-visible
{
	background: rgba(184, 138, 67, 0.24);
	border-color: rgba(184, 138, 67, 0.65);
}

.hero-links img,
.hero-links svg
{
	width: 34px;
	height: 34px;
	flex: 0 0 auto;
}

.hero-links img
{
	object-fit: contain;
}

.hero-right
{
	position: relative;
}

.form-card,
.panel-card,
.content-card,
.list-row
{
	background: linear-gradient(160deg, rgba(17, 21, 34, 0.89), rgba(12, 17, 29, 0.82));
	border: 1px solid var(--stroke);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}

.form-card,
.content-card,
.panel-card
{
	padding: 30px;
}

.form-card h2,
.panel-card h2
{
	margin: 0;
	font-family: "Cormorant Garamond", serif;
	font-size: 3rem;
	font-weight: 600;
}

.microcopy
{
	margin: 8px 0 18px;
	color: var(--muted);
	font-size: 1rem;
}

#v2MiniForm,
.v2-mini-form
{
	display: grid;
	gap: 10px;
}

.form-card input,
.form-card textarea,
.v2-mini-form input,
.v2-mini-form textarea
{
	width: 100%;
	background: rgba(5, 8, 15, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	padding: 14px;
	color: var(--text);
	font: inherit;
}

.form-card textarea,
.v2-mini-form textarea
{
	resize: vertical;
	min-height: 92px;
}

.form-card input::placeholder,
.form-card textarea::placeholder,
.v2-mini-form input::placeholder,
.v2-mini-form textarea::placeholder
{
	color: rgba(236, 231, 222, 0.76);
}

.form-card input:focus,
.form-card textarea:focus,
.v2-mini-form input:focus,
.v2-mini-form textarea:focus
{
	outline: none;
	border-color: rgba(184, 138, 67, 0.9);
	box-shadow: 0 0 0 3px rgba(184, 138, 67, 0.2);
}

.btn
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	font-family: inherit;
	font-weight: 600;
	font-size: 1.1rem;
	line-height: 1;
	padding: 16px 30px;
	text-decoration: none;
	border: 1px solid transparent;
	cursor: pointer;
	transition: filter 0.2s ease, border-color 0.2s ease;
}

.btn-primary
{
	color: #f5e8cf;
	background: linear-gradient(180deg, var(--gold-1), var(--gold-2));
	box-shadow: 0 10px 22px rgba(31, 19, 9, 0.42);
}

.btn-primary:hover,
.btn-primary:focus-visible
{
	filter: brightness(1.08);
}

.btn-secondary
{
	color: var(--text);
	background: rgba(9, 12, 21, 0.24);
	border-color: rgba(255, 255, 255, 0.32);
}

.btn-secondary:hover,
.btn-secondary:focus-visible
{
	border-color: rgba(255, 255, 255, 0.6);
}

.btn:focus-visible
{
	outline: 2px solid rgba(236, 231, 222, 0.95);
	outline-offset: 3px;
	box-shadow: 0 0 0 4px rgba(184, 138, 67, 0.32);
}

.form-submit
{
	width: 100%;
	margin-top: 10px;
}

.form-submit[disabled]
{
	opacity: 0.72;
	cursor: not-allowed;
}

.form-status
{
	margin: 8px 0 0;
	color: var(--muted);
	font-size: 0.98rem;
	text-align: center;
	min-height: 1.35em;
}

.form-status.success
{
	color: #d2c5a9;
}

.form-status.error
{
	color: #f2c4b9;
}

.divider
{
	border: 0;
	height: 1px;
	background: var(--stroke);
	margin: 28px 0 30px;
}

.pillars h2,
.page-headline,
.page-title
{
	margin: 0;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2.3rem, 3.2vw, 3.4rem);
	font-weight: 500;
}

.page-lead
{
	color: var(--muted);
	font-size: 1.2rem;
	line-height: 1.55;
	max-width: 780px;
	margin: 16px 0 0;
}

.pillars h2
{
	text-align: center;
}

.pillars-grid,
.two-column-grid,
.three-column-grid
{
	display: grid;
	gap: 16px;
	margin-top: 26px;
}

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

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

.pillar-card,
.feature-card,
.step-card
{
	padding: 24px;
	border-radius: 10px;
	background: linear-gradient(165deg, rgba(13, 18, 31, 0.84), rgba(10, 15, 26, 0.66));
	border: 1px solid var(--stroke);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.pillar-card h3,
.feature-card h3,
.step-card h3
{
	font-family: "Cormorant Garamond", serif;
	font-size: 2.2rem;
	font-weight: 600;
	margin: 0 0 8px;
}

.pillar-card p,
.feature-card p,
.step-card p,
.panel-card p
{
	margin: 0;
	color: var(--muted);
	font-size: 1.08rem;
	line-height: 1.55;
}

.feature-card ul
{
	margin: 14px 0 0;
	padding-left: 20px;
	color: var(--muted);
}

.feature-card li
{
	margin: 6px 0;
}

.side-form-wrap
{
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.8fr);
	gap: 26px;
	align-items: start;
}

.step-list
{
	margin-top: 20px;
	display: grid;
	gap: 14px;
}

.step-item
{
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 14px;
	align-items: start;
	padding: 14px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.step-item:last-child
{
	border-bottom: 0;
}

.step-number
{
	font-family: "Cormorant Garamond", serif;
	font-size: 2rem;
	line-height: 1;
	color: rgba(236, 231, 222, 0.88);
}

.step-item h3
{
	margin: 0 0 4px;
	font-family: "Cormorant Garamond", serif;
	font-size: 2rem;
	font-weight: 500;
}

.step-item p
{
	margin: 0;
	color: var(--muted);
}

.list-stack
{
	display: grid;
	gap: 12px;
	margin-top: 20px;
}

.list-row
{
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 14px;
	align-items: center;
	padding: 18px 22px;
}

.list-row h3
{
	margin: 0;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.9rem;
	font-weight: 500;
}

.list-row p
{
	margin: 6px 0 0;
	color: var(--muted);
}

.list-row .meta
{
	color: var(--muted);
	font-size: 0.95rem;
}

.list-row .meta-link
{
	color: var(--text);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.92rem;
	padding: 10px 14px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.08);
	white-space: nowrap;
}

.list-row .meta-link:hover,
.list-row .meta-link:focus-visible
{
	border-color: rgba(184, 138, 67, 0.85);
	background: rgba(184, 138, 67, 0.2);
}

.inline-cta
{
	margin-top: 26px;
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.inline-cta .label
{
	font-family: "Cormorant Garamond", serif;
	font-size: 2.2rem;
}

.inline-links
{
	display: inline-flex;
	gap: 14px;
	align-items: center;
}

.inline-links a
{
	color: var(--muted);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.24);
}

.inline-links a:hover,
.inline-links a:focus-visible
{
	color: var(--text);
	border-color: rgba(184, 138, 67, 0.85);
	background: rgba(184, 138, 67, 0.2);
}

.inline-links a img
{
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.insight-meta
{
	margin: 14px 0 0;
	font-size: 0.95rem;
	color: rgba(236, 231, 222, 0.74);
}

.insight-article
{
	margin-top: 24px;
	display: grid;
	gap: 18px;
	max-width: 920px;
}

.insight-article h2
{
	margin: 8px 0 0;
	font-family: "Cormorant Garamond", serif;
	font-size: 2rem;
	font-weight: 600;
	color: var(--text);
}

.insight-article p
{
	margin: 0;
	color: var(--muted);
	font-size: 1.05rem;
	line-height: 1.72;
}

.insight-nav
{
	margin-top: 28px;
	display: flex;
	gap: 12px;
	align-items: center;
	flex-wrap: wrap;
}

.sr-only
{
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 1180px)
{
	.page-shell
	{
		width: min(1220px, calc(100% - 32px));
	}

	.topbar-inner
	{
		grid-template-columns: 1fr;
		justify-items: start;
		gap: 14px;
	}

	.topnav
	{
		gap: 22px;
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	.topbar-cta
	{
		justify-self: start;
	}

	.hero,
	.side-form-wrap
	{
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

@media (max-width: 980px)
{
	.hero-left p
	{
		font-size: 1.06rem;
		max-width: none;
	}

	.pillars-grid,
	.two-column-grid,
	.three-column-grid
	{
		grid-template-columns: 1fr;
	}

	.pillar-card h3,
	.feature-card h3,
	.step-card h3,
	.step-item h3
	{
		font-size: 2rem;
	}

	.pillar-card p,
	.feature-card p,
	.step-card p,
	.page-lead
	{
		font-size: 1.06rem;
	}

	.list-row
	{
		grid-template-columns: 1fr;
	}
}

.footer
{
	text-align: center;
	padding: 30px 0 8px;
	color: var(--muted);
	font-size: 0.88rem;
	display: grid;
	gap: 6px;
	justify-items: center;
}

.footer-company
{
	font-weight: 600;
	color: var(--text);
}

.footer-address,
.footer-meta
{
	color: var(--muted);
}

.footer-meta a
{
	color: var(--text);
	text-decoration: none;
}

.footer-meta a:hover,
.footer-meta a:focus-visible
{
	text-decoration: underline;
}
