@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400..700&display=swap');

:root {
	--primary: #c2a25a;
	--secondary: #0f1a2b;
	--secondary-soft: #162543;
	--bg-light: #f5f3ef;
	--text-light: rgba(255, 255, 255, 0.88);
	--text-dark: #0f1c3d;
	--line-light: rgba(255, 255, 255, 0.18);
	--line-dark: rgba(15, 28, 61, 0.2);
	--font-display: 'Cinzel', serif;
	--font-content: 'Cormorant Garamond', serif;
	--font-buttons: 'Montserrat', sans-serif;
}

* {
	box-sizing: border-box;
}

html,
body {
	max-width: 100%;
	overflow-x: hidden;
}

body {
	margin: 0;
	font-family: var(--font-content);
	background: var(--secondary);
	color: #fff;
	line-height: 1.65;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
.font-display {
	font-family: var(--font-display) !important;
}

a,
p,
li,
span,
.font-subtitle {
	font-family: var(--font-content);
}

button,
input[type='button'],
input[type='submit'],
input[type='reset'],
.font-button {
	font-family: var(--font-buttons) !important;
}

main {
	padding-top: 98px;
}

.container-wide {
	width: min(1200px, calc(100% - 3rem));
	margin-inline: auto;
}

.container {
	width: min(1100px, calc(100% - 3rem));
	margin-inline: auto;
}

.container-narrow {
	width: min(900px, calc(100% - 3rem));
	margin-inline: auto;
}

.section-spacing {
	padding-top: 140px;
	padding-bottom: 140px;
}

.section-dark {
	background: var(--secondary);
	color: #fff;
}

.section-dark p {
	color: var(--text-light);
}

.section-light {
	background: var(--bg-light);
	color: var(--text-dark);
}

.section-light p {
	color: rgba(15, 28, 61, 0.84);
}

.section-label {
	margin: 0;
	font-size: 0.82rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	font-family: var(--font-buttons);
	color: var(--primary);
}

.section-title {
	margin: 34px 0 0;
	font-size: clamp(2rem, 4vw, 3.6rem);
	line-height: 1.2;
	letter-spacing: 0.05em;
}

.section-subtitle {
	margin: 24px 0 0;
	font-size: clamp(1.05rem, 2vw, 1.35rem);
	line-height: 1.75;
	letter-spacing: 0.03em;
}

.btn-luxe {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.98rem 1.6rem;
	font-size: 0.74rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	transition: all 220ms ease;
}

.btn-luxe-solid {
	background: var(--primary);
	border: 1px solid var(--primary);
	color: #101010;
}

.btn-luxe-solid:hover {
	filter: brightness(1.08);
}

.btn-luxe-outline {
	border: 1px solid rgba(194, 162, 90, 0.7);
	color: #fff;
	background: transparent;
}

.btn-luxe-outline:hover {
	background: rgba(194, 162, 90, 0.14);
	border-color: var(--primary);
}

.btn-luxe-text {
	color: rgba(255, 255, 255, 0.92);
}

.btn-luxe-text:hover {
	color: var(--primary);
}

.site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 60;
	background: linear-gradient(
		to bottom,
		rgba(15, 26, 43, 0.95),
		rgba(15, 26, 43, 0.8),
		rgba(15, 26, 43, 0.45),
		transparent
	);
	backdrop-filter: blur(6px);
}

.site-header-inner {
	width: min(1240px, calc(100% - 3rem));
	margin-inline: auto;
	display: flex;
	align-items: center;
	gap: 1.6rem;
	padding: 1.25rem 0;
}

.site-logo {
	flex: 0 0 auto;
}

.site-logo img {
	height: 52px;
	width: auto;
}

.site-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.45rem;
}

.site-nav a {
	position: relative;
	font-family: var(--font-buttons);
	font-size: 0.72rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.92);
}

.site-nav a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -0.38rem;
	width: 0;
	height: 1px;
	background: var(--primary);
	transition: width 220ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current='page']::after {
	width: 100%;
}

.site-nav a:hover,
.site-nav a[aria-current='page'] {
	color: #fff;
}

.site-lang {
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-buttons);
	font-size: 0.68rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.site-lang a {
	color: rgba(255, 255, 255, 0.8);
}

.site-lang a.is-active,
.site-lang a:hover {
	color: var(--primary);
}

.mobile-nav {
	display: none;
}

.hero {
	position: relative;
	min-height: calc(100svh - 98px);
	display: flex;
	align-items: flex-end;
}

.hero-image {
	position: absolute;
	inset: 0;
	z-index: -20;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: -10;
	background: linear-gradient(
		120deg,
		rgba(7, 12, 25, 0.95) 18%,
		rgba(7, 12, 25, 0.52) 50%,
		rgba(7, 12, 25, 0.9) 100%
	);
}

.hero-bottom-fade {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 220px;
	z-index: -9;
	background: linear-gradient(to bottom, transparent, var(--secondary));
}

.hero-content {
	padding-bottom: 8.5rem;
	max-width: 840px;
}

.hero-title {
	margin: 0;
	font-size: clamp(2.1rem, 5.5vw, 4.6rem);
	line-height: 1.16;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero-subtitle {
	margin: 1.5rem 0 0;
	font-size: clamp(1.05rem, 2vw, 1.45rem);
	letter-spacing: 0.08em;
	color: var(--primary);
}

.hero-actions {
	margin-top: 2.6rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.95rem;
}

.statement {
	text-align: center;
}

.statement p {
	margin: 28px auto 0;
	max-width: 760px;
	font-size: clamp(1.08rem, 2vw, 1.35rem);
	line-height: 1.7;
}

.services-overview {
	text-align: center;
}

.services-grid {
	margin-top: 4.8rem;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.6rem;
}

.service-teaser {
	padding: 0.8rem 0.2rem;
	border-top: 1px solid var(--line-light);
}

.service-teaser h3 {
	margin: 1.2rem 0 0;
	font-size: 1.42rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--primary);
}

.service-teaser p {
	margin: 1.2rem auto 0;
	max-width: 26ch;
	font-size: 1.2rem;
	line-height: 1.55;
}

.services-overview-link {
	margin-top: 3rem;
	display: inline-flex;
	font-family: var(--font-buttons);
	font-size: 0.72rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--primary);
	border-bottom: 1px solid rgba(194, 162, 90, 0.4);
	padding-bottom: 0.35rem;
}

.approach {
	text-align: center;
}

.approach p {
	margin: 24px auto 0;
	max-width: 820px;
	font-size: 1.26rem;
	line-height: 1.72;
}

.consultation {
	text-align: center;
}

.consultation p {
	margin: 24px auto 0;
	max-width: 760px;
	font-size: 1.22rem;
	line-height: 1.68;
}

.consultation .btn-luxe-outline {
	margin-top: 2.8rem;
	padding-inline: 2.2rem;
}

.service-hero {
	text-align: center;
}

.service-hero .section-title {
	margin-top: 30px;
}

.service-level {
	padding-top: 120px;
}

.service-level-head {
	display: grid;
	grid-template-columns: minmax(180px, 280px) 1fr;
	gap: 2rem;
	align-items: start;
}

.service-level h2 {
	margin: 0;
	font-size: clamp(2rem, 3.5vw, 3rem);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--primary);
}

.service-level p {
	margin: 0;
	font-size: clamp(1.1rem, 1.8vw, 1.35rem);
	line-height: 1.7;
}

.service-level-media {
	margin-top: 2.2rem;
	overflow: hidden;
}

.service-level-media img {
	width: 100%;
	height: clamp(240px, 40vw, 420px);
	object-fit: cover;
	transition: transform 320ms ease;
}

.service-level-media:hover img {
	transform: scale(1.03);
}

.service-level ul {
	margin: 2.1rem 0 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid var(--line-light);
}

.service-level li {
	padding: 0.82rem 0;
	border-bottom: 1px solid var(--line-light);
	font-size: 1.12rem;
	line-height: 1.62;
}

.service-level-outcome {
	margin-top: 1.7rem;
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.95);
}

.service-level-link {
	margin-top: 1.6rem;
	display: inline-flex;
	font-family: var(--font-buttons);
	font-size: 0.7rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--primary);
}

.service-level-premium {
	margin-top: 120px;
	padding: 70px 48px;
	background: linear-gradient(
		to bottom,
		rgba(255, 255, 255, 0.035),
		rgba(255, 255, 255, 0.01)
	);
	border-top: 1px solid rgba(194, 162, 90, 0.45);
}

.service-level-premium h2 {
	position: relative;
}

.service-level-premium h2::after {
	content: '';
	display: block;
	margin-top: 0.6rem;
	width: 80px;
	height: 1px;
	background: var(--primary);
}

.service-level-elite {
	margin-top: 140px;
}

.final-cta {
	text-align: center;
	margin-top: 140px;
	padding-top: 80px;
	border-top: 1px solid var(--line-light);
}

.final-cta .btn-luxe-outline {
	margin-top: 2rem;
}

.about-hero {
	text-align: center;
}

.about-copy {
	text-align: center;
}

.about-copy p {
	margin: 22px auto 0;
	max-width: 820px;
	font-size: 1.22rem;
	line-height: 1.72;
}

.founder-grid {
	display: grid;
	grid-template-columns: 55% 45%;
	gap: 3rem;
	align-items: center;
}

.founder-text p {
	margin: 0;
	font-size: 1.18rem;
	line-height: 1.7;
}

.founder-text p + p {
	margin-top: 1.2rem;
}

.founder-signature {
	margin-top: 1.5rem;
	font-family: var(--font-display);
	font-size: 1.5rem;
	line-height: 1.3;
	color: var(--primary);
}

.founder-photo {
	height: 600px;
	background: #e7e1d6;
	overflow: hidden;
}

.founder-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.principles {
	text-align: center;
}

.principles-list {
	margin: 44px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 1.05rem;
	font-size: clamp(1.25rem, 2.2vw, 1.75rem);
	letter-spacing: 0.05em;
}

.owners-panel {
	text-align: center;
}

.owners-panel p {
	margin: 24px auto 0;
	max-width: 860px;
	font-size: 1.2rem;
	line-height: 1.72;
}

.owners-points {
	margin: 2.6rem auto 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	max-width: 900px;
}

.owners-points li {
	padding: 0.8rem 0.4rem;
	border-top: 1px solid var(--line-light);
	font-size: 1.1rem;
}

.locations-intro {
	text-align: center;
}

.locations-intro p {
	margin: 22px auto 0;
	max-width: 820px;
	font-size: 1.2rem;
	line-height: 1.7;
}

.location-block {
	margin-top: 120px;
}

.location-media {
	overflow: hidden;
	background: #d7d1c7;
}

.location-media img {
	width: 100%;
	height: clamp(240px, 32vw, 440px);
	object-fit: cover;
	transition: transform 320ms ease;
}

.location-block:hover .location-media img {
	transform: scale(1.03);
}

.location-copy h3 {
	margin: 22px 0 0;
	font-size: clamp(1.65rem, 2.8vw, 2.35rem);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--text-dark);
}

.location-copy p {
	margin: 14px 0 0;
	max-width: 760px;
	font-size: 1.18rem;
	line-height: 1.68;
}

.location-foot {
	margin-top: 110px;
	text-align: center;
	font-family: var(--font-display);
	font-size: clamp(1.3rem, 2.4vw, 1.85rem);
	letter-spacing: 0.05em;
	color: var(--text-dark);
}

.contact-layout {
	text-align: center;
}

.contact-layout p {
	margin: 22px auto 0;
	max-width: 800px;
	font-size: 1.2rem;
	line-height: 1.7;
}

.contact-details {
	margin: 2.4rem auto 0;
	display: grid;
	gap: 0.65rem;
	max-width: 560px;
	font-size: 1.18rem;
}

.contact-form {
	margin: 3rem auto 0;
	max-width: 560px;
	padding: 2rem;
	border: 1px solid rgba(15, 28, 61, 0.2);
	background: transparent;
}

.form-row {
	text-align: left;
}

.form-row + .form-row {
	margin-top: 1rem;
}

.form-row label {
	display: block;
	margin-bottom: 0.35rem;
	font-family: var(--font-buttons);
	font-size: 0.68rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(15, 28, 61, 0.75);
}

.form-row input,
.form-row textarea {
	width: 100%;
	padding: 0.85rem 0.95rem;
	border: 1px solid rgba(15, 28, 61, 0.25);
	background: rgba(255, 255, 255, 0.72);
	font-family: var(--font-content);
	font-size: 1rem;
	color: var(--text-dark);
}

.form-row textarea {
	resize: vertical;
	min-height: 140px;
}

.form-row input:focus,
.form-row textarea:focus {
	outline: none;
	border-color: rgba(194, 162, 90, 0.8);
}

.form-submit {
	margin-top: 1.5rem;
}

.form-submit .btn-luxe-outline {
	color: var(--text-dark);
	border-color: rgba(194, 162, 90, 0.78);
}

.form-submit .btn-luxe-outline:hover {
	background: rgba(194, 162, 90, 0.18);
}

.site-footer {
	padding: 70px 0 36px;
	background: var(--secondary);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 0.9fr);
	gap: 2rem;
	align-items: center;
}

.footer-brand img {
	height: 48px;
	width: auto;
}

.footer-brand p {
	margin: 1rem 0 0;
	max-width: 360px;
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.72);
}

.footer-contact h4 {
	margin: 0;
	font-size: 0.72rem;
	font-family: var(--font-buttons);
	letter-spacing: 0.17em;
	text-transform: uppercase;
	color: var(--primary);
}

.footer-contact ul {
	margin: 0.95rem 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.28rem;
	font-size: 1rem;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.78);
}

.social-icons {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 1.25rem;
}

.social-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	color: var(--primary);
	opacity: 0.76;
	transition: opacity 220ms ease, filter 220ms ease;
}

.social-icons a:hover {
	opacity: 1;
	filter: drop-shadow(0 0 6px rgba(194, 162, 90, 0.45));
}

.social-icons svg {
	width: 18px;
	height: 18px;
	stroke-width: 1.5;
	fill: none;
}

.footer-bottom {
	margin-top: 2.2rem;
	padding-top: 1.1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	font-size: 0.84rem;
	color: rgba(255, 255, 255, 0.48);
}

.visually-hidden {
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

@media (max-width: 1024px) {
	.site-header-inner {
		flex-wrap: wrap;
		padding-bottom: 0.7rem;
	}

	.site-nav {
		display: none;
	}

	.mobile-nav {
		display: flex;
		gap: 0.8rem 1rem;
		padding-bottom: 0.8rem;
		width: 100%;
		flex-wrap: wrap;
	}

	.mobile-nav a {
		font-family: var(--font-buttons);
		font-size: 0.68rem;
		letter-spacing: 0.14em;
		text-transform: uppercase;
		color: rgba(255, 255, 255, 0.84);
	}

	main {
		padding-top: 128px;
	}

	.section-spacing {
		padding-top: 110px;
		padding-bottom: 110px;
	}

	.service-level-head {
		grid-template-columns: 1fr;
	}

	.service-level-premium {
		padding: 54px 24px;
	}

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

	.founder-photo {
		height: 480px;
		order: 2;
	}

	.owners-points {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 2.4rem;
	}

	.social-icons {
		justify-content: flex-start;
	}
}

@media (max-width: 760px) {
	.container-wide,
	.container,
	.container-narrow {
		width: calc(100% - 2.1rem);
	}

	.site-logo img {
		height: 44px;
	}

	.hero-content {
		padding-bottom: 5.5rem;
	}

	.services-grid {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}

	.service-level {
		padding-top: 96px;
	}

	.final-cta {
		margin-top: 96px;
	}

	.location-block {
		margin-top: 92px;
	}

	.location-foot {
		margin-top: 80px;
	}

	.contact-form {
		padding: 1.4rem;
	}
}
