:root {
	--bg: #f7f4ee;
	--surface: #ffffff;
	--surface-soft: #fbfaf7;
	--text: #1f2933;
	--muted: #5f6b76;
	--line: #e2ddd3;
	--primary: #0f5d5e;
	--primary-dark: #0a4344;
	--accent: #d99535;
	--shadow: 0 18px 45px rgba(31, 41, 51, 0.10);
	--radius: 24px;
	--max: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.6;
}

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

a:hover {
	color: var(--primary);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(247, 244, 238, 0.94);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	max-width: var(--max);
	margin: 0 auto;
	padding: 18px 22px;
}

.brand {
	display: flex;
	flex-direction: column;
	gap: 0;
	line-height: 1.2;
}

.brand-name {
	font-weight: 850;
	letter-spacing: -0.035em;
	font-size: 1.05rem;
	line-height: 1.15;
}

.brand-subtitle {
	font-size: 0.78rem;
	color: var(--muted);
}

.nav {
	display: flex;
	align-items: center;
	gap: 18px;
	font-size: 0.94rem;
	color: var(--muted);
}

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

.lang-switch {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 4px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--surface);
}

.lang-switch a {
	padding: 6px 9px;
	border-radius: 999px;
	font-weight: 800;
	font-size: 0.75rem;
	color: var(--muted);
}

.lang-switch a.active {
	background: var(--primary);
	color: #fff;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	padding: 12px 18px;
	font-weight: 850;
	border: 1px solid transparent;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

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

.btn-primary {
	background: var(--primary);
	color: #fff;
	box-shadow: 0 12px 30px rgba(15, 93, 94, 0.25);
}

.btn-primary:hover {
	background: var(--primary-dark);
	color: #fff;
}

.btn-secondary {
	background: var(--surface);
	border-color: var(--line);
	color: var(--primary);
}

.language-notice {
	display: none;
	background: var(--primary-dark);
	color: #fff;
}

.language-notice.visible {
	display: block;
}

.language-notice-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	max-width: var(--max);
	margin: 0 auto;
	padding: 10px 22px;
	font-size: 0.92rem;
}

.language-notice a {
	font-weight: 850;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.hero {
	position: relative;
	overflow: hidden;
	padding: 82px 22px 68px;
}

.hero:before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 78% 22%, rgba(217, 149, 53, 0.20), transparent 32%),
		radial-gradient(circle at 10% 10%, rgba(15, 93, 94, 0.14), transparent 34%);
	pointer-events: none;
}

.hero-inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
	gap: 48px;
	align-items: center;
	max-width: var(--max);
	margin: 0 auto;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(15, 93, 94, 0.10);
	color: var(--primary);
	font-weight: 850;
	font-size: 0.82rem;
}

h1 {
	max-width: 820px;
	margin: 0;
	font-size: clamp(2rem, 3.7vw, 3.45rem);
	line-height: 1.04;
	letter-spacing: -0.055em;
}

.hero-lead {
	max-width: 710px;
	margin: 22px 0 0;
	font-size: clamp(1.02rem, 1.4vw, 1.2rem);
	color: var(--muted);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 34px;
}

.trust-pill {
	padding: 9px 13px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.75);
	color: var(--muted);
	font-size: 0.92rem;
	font-weight: 750;
}

.hero-card {
	padding: 26px;
	border-radius: var(--radius);
	background: var(--surface);
	box-shadow: var(--shadow);
	border: 1px solid rgba(226, 221, 211, 0.80);
}

.hero-card-label {
	color: var(--accent);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.75rem;
}

.hero-card h2 {
	margin: 9px 0 12px;
	font-size: 1.45rem;
	line-height: 1.16;
	letter-spacing: -0.035em;
}

.hero-card p {
	margin: 0;
	color: var(--muted);
}

.language-grid,
.card-list {
	display: grid;
	gap: 12px;
	margin-top: 22px;
}

.language-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.secondary-language-grid {
	max-width: 820px;
	margin: 0 auto;
}

.language-card,
.card-list-item {
	border: 1px solid var(--line);
	border-radius: 18px;
	background: var(--surface-soft);
}

.language-card {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding: 14px;
	transition: border-color 0.15s ease, transform 0.15s ease;
}

.language-card:hover {
	border-color: rgba(15, 93, 94, 0.45);
	transform: translateY(-1px);
}

.language-card strong {
	font-size: 1rem;
}

.language-card span {
	font-size: 0.88rem;
	color: var(--muted);
}

.card-list-item {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	padding: 13px;
}

.check {
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	background: rgba(15, 93, 94, 0.12);
	color: var(--primary);
	display: grid;
	place-items: center;
	font-weight: 900;
	font-size: 0.8rem;
}

.section {
	padding: 78px 22px;
}

.section-tight {
	padding: 52px 22px;
}

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

.section-heading {
	max-width: 760px;
	margin-bottom: 34px;
}

.section-heading.centered {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.kicker {
	margin: 0 0 10px;
	color: var(--accent);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.10em;
	font-size: 0.76rem;
}

h2 {
	margin: 0;
	font-size: clamp(1.8rem, 3vw, 2.65rem);
	line-height: 1.08;
	letter-spacing: -0.05em;
}

.section-lead {
	margin: 16px 0 0;
	color: var(--muted);
	font-size: 1.04rem;
}

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

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

.advisor-layout {
	align-items: stretch;
}

.advisor-card {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	height: 100%;
}

.advisor-photo {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	object-position: center 28%;
	border-radius: calc(var(--radius) - 6px);
	border: 1px solid var(--line);
}

.grid-2.advisor-layout {
	grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
	align-items: stretch;
}	

.advisor-stack {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: 22px;
	height: 100%;
	align-self: stretch;
}

.advisor-stack .panel {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.cta-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: stretch;
}

.panel {
	padding: 26px;
	border-radius: var(--radius);
	background: var(--surface);
	border: 1px solid var(--line);
	box-shadow: 0 12px 32px rgba(31, 41, 51, 0.06);
}

.panel.soft {
	background: var(--surface-soft);
	box-shadow: none;
}

.panel h3 {
	margin: 0 0 12px;
	font-size: 1.24rem;
	line-height: 1.15;
	letter-spacing: -0.03em;
}

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

.service-cta {
	margin-top: 22px;
}

.number {
	width: 38px;
	height: 38px;
	border-radius: 14px;
	background: var(--primary);
	color: #fff;
	display: grid;
	place-items: center;
	font-weight: 900;
	margin-bottom: 18px;
}

.band {
	background: var(--primary);
	color: #fff;
}

.band .kicker,
.band .section-lead,
.band p {
	color: rgba(255, 255, 255, 0.78);
}

.band .panel {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.16);
	box-shadow: none;
}

.band .panel h3 {
	color: #fff;
}

.cta-box {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 24px;
	align-items: center;
	padding: 32px;
	border-radius: 28px;
	background: var(--surface);
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
}

.cta-box h2 {
	font-size: clamp(1.7rem, 2.5vw, 2.35rem);
}

.legal-main,
.seo-main {
	padding: 58px 22px 84px;
}

.legal-document,
.seo-article {
	max-width: 920px;
	margin: 0 auto;
	padding: 34px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
	box-shadow: 0 12px 32px rgba(31, 41, 51, 0.055);
}

.legal-document h1,
.seo-article h1 {
	font-size: clamp(2rem, 3.7vw, 3.45rem);
	margin-bottom: 16px;
}

.legal-note,
.article-note {
	padding: 16px;
	border: 1px solid rgba(217, 149, 53, 0.38);
	border-radius: 16px;
	background: rgba(217, 149, 53, 0.10);
	color: #6e4a16;
}

.legal-section,
.seo-section {
	margin-top: 34px;
}

.legal-section h2,
.seo-section h2 {
	font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}

.legal-section h3,
.seo-section h3 {
	margin: 24px 0 8px;
	font-size: 1.12rem;
}

.legal-section p,
.legal-section li,
.seo-section p,
.seo-section li {
	color: var(--muted);
}

.seo-section ul,
.legal-section ul {
	padding-left: 1.2rem;
}

.site-footer {
	padding: 32px 22px;
	border-top: 1px solid var(--line);
	color: var(--muted);
	background: var(--surface-soft);
}

.footer-inner {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	max-width: var(--max);
	margin: 0 auto;
	font-size: 0.92rem;
}

.footer-links {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

@media (max-width: 1020px) {
	.nav {
		display: none;
	}
}

@media (max-width: 940px) {
	.hero-inner,
	.grid-2,
	.grid-3,
	.cta-box,
	.advisor-card {
		grid-template-columns: 1fr;
	}

	.cta-box {
		align-items: start;
	}

	.advisor-photo {
		height: auto;
		min-height: 0;
		aspect-ratio: 4 / 3;
	}
	
	.grid-2.advisor-layout {
		grid-template-columns: 1fr;
	}	
	
	.advisor-stack {
		grid-template-rows: auto;
	}
}

@media (max-width: 640px) {
	.header-inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.header-actions {
		width: 100%;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.language-notice-inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.hero {
		padding-top: 52px;
	}

	.section {
		padding: 62px 18px;
	}

	.section-tight {
		padding: 42px 18px;
	}

	.legal-main,
	.seo-main {
		padding: 38px 18px 64px;
	}

	.legal-document,
	.seo-article {
		padding: 24px;
	}

	.footer-inner {
		flex-direction: column;
	}
}
