:root {
	--bg: #fffdf9;
	--surface: #ffffff;
	--tint: #f6f1e8;
	--tint-2: #edf4fa;
	--text: #272a2f;
	--muted: #5f6670;
	--brand: #c27a46;
	--brand-dark: #9e6135;
	--deep-blue: #11344f;
	--line: #e9dfd2;
	--radius: 18px;
	--shadow: 0 12px 28px rgba(24, 22, 18, 0.08);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Manrope", sans-serif;
	background: linear-gradient(180deg, #fffdf9 0%, #fffaf1 100%);
	color: var(--text);
	line-height: 1.6;
}

a {
	color: inherit;
}

.container {
	width: min(1120px, 92%);
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	background: rgba(255, 253, 249, 0.93);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--line);
	z-index: 20;
}

.nav-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 16px 0;
}

.brand {
	text-decoration: none;
	display: flex;
	flex-direction: column;
}

.brand-title {
	font-family: "Playfair Display", serif;
	font-size: 1.3rem;
	line-height: 1.1;
}

.brand-subtitle {
	font-size: 0.8rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
}

.menu {
	display: flex;
	gap: 18px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.menu a {
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	color: #3a3f46;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	padding: 12px 18px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.95rem;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	will-change: transform;
}

.btn-solid {
	background: var(--brand);
	color: #fff;
}

.btn-solid:hover {
	background: var(--brand-dark);
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(194, 122, 70, 0.2);
}

.btn-outline {
	border: 1px solid var(--brand);
	color: var(--brand-dark);
}

.btn-outline:hover {
	background: #f2e2d2;
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(158, 97, 53, 0.15);
}

.hero {
	padding: 72px 0 56px;
	background: radial-gradient(circle at 92% 20%, rgba(17, 52, 79, 0.1), transparent 45%);
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 28px;
	align-items: center;
}

.hero-portrait {
	margin-bottom: 18px;
}

.hero-portrait img {
	width: 100%;
	max-width: 420px;
	height: 360px;
	object-fit: cover;
	object-position: center 20%;
	border-radius: 22px;
	border: 1px solid #e6d9c8;
	box-shadow: var(--shadow);
}

.eyebrow {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 999px;
	background: #f0e1d2;
	color: #6a3f20;
	font-weight: 700;
	font-size: 0.8rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

h1,
h2,
h3 {
	line-height: 1.2;
	margin: 0 0 12px;
}

h1 {
	font-family: "Playfair Display", serif;
	font-size: clamp(2rem, 5vw, 3.3rem);
	max-width: 18ch;
}

.lead {
	color: var(--muted);
	max-width: 54ch;
}

.hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 14px;
}

.hero-badges span {
	background: #f3e5d6;
	color: #6d421f;
	font-size: 0.8rem;
	font-weight: 700;
	padding: 6px 10px;
	border-radius: 999px;
}

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

.hero-card,
.card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px;
	box-shadow: var(--shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 30px rgba(24, 22, 18, 0.12);
}

.hero-card h2 {
	margin-bottom: 8px;
}

.hero-card ul {
	padding-left: 18px;
	margin: 10px 0 0;
}

.hero-card img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	border-radius: 14px;
	margin-bottom: 16px;
	background: #dde3ea;
}

.section {
	padding: 58px 0;
}

.section-tint {
	background: var(--tint);
}

.section-title {
	font-family: "Playfair Display", serif;
	font-size: clamp(1.6rem, 3.5vw, 2.3rem);
	margin-bottom: 22px;
}

.section-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	border-radius: 999px;
	background: #efe4d5;
	color: #6b4428;
	font-weight: 700;
	font-size: 0.8rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0 0 14px;
}

.reveal {
	opacity: 1;
	transform: none;
}

.js .reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

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

.cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.quote p:first-child {
	font-style: italic;
}

.author {
	color: var(--muted);
	font-weight: 600;
	margin: 10px 0 0;
}

.about-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 20px;
	align-items: start;
}

.info-list {
	background: #fff8ef;
	border: 1px solid #ecdcc8;
	border-radius: var(--radius);
	padding: 20px;
}

.media-about img {
	display: block;
	width: 100%;
	max-width: 260px;
	height: 300px;
	object-fit: cover;
	border-radius: 16px;
	margin: 0 0 14px;
	background: #e1e6eb;
}

.areas {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.areas span {
	padding: 10px 14px;
	border-radius: 999px;
	background: var(--tint-2);
	color: var(--deep-blue);
	font-weight: 700;
	font-size: 0.9rem;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

.gallery-grid img {
	width: 100%;
	height: 360px;
	object-fit: cover;
	border-radius: 16px;
	border: 1px solid #dce5ef;
	background: #dce5ef;
}

.trust-mini p {
	margin: 16px 0 0;
	color: var(--deep-blue);
	font-weight: 600;
}

.steps {
	grid-template-columns: repeat(4, 1fr);
}

.step-number {
	font-family: "Playfair Display", serif;
	font-size: 1.4rem;
	color: var(--brand);
	margin: 0 0 8px;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.stat-card {
	padding: 22px;
	border-radius: 16px;
	background: #fff;
	border: 1px solid #dfd5c7;
	box-shadow: var(--shadow);
}

.stat-value {
	font-family: "Playfair Display", serif;
	font-size: 1.4rem;
	color: var(--deep-blue);
	margin: 0 0 8px;
}

.lead-form-wrap {
	margin-top: 12px;
}

.lead-form-embed {
	margin-top: 12px;
}

.lead-form-embed iframe {
	width: 100%;
	min-height: 420px;
	border: 0;
	border-radius: 12px;
}

.lead-form-embed > * {
	max-width: 100%;
}

.lead-form {
	display: grid;
	gap: 12px;
}

.lead-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.lead-form label {
	display: grid;
	gap: 6px;
}

.lead-form span {
	font-size: 0.86rem;
	font-weight: 700;
	color: #41464e;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
	width: 100%;
	border: 1px solid #d8dde3;
	border-radius: 10px;
	padding: 10px 11px;
	font: inherit;
	background: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
	border-color: var(--brand);
	box-shadow: 0 0 0 4px rgba(194, 122, 70, 0.15);
	outline: none;
	transform: translateY(-1px);
}

.lead-form button,
.lead-form .btn {
	box-shadow: 0 10px 22px rgba(194, 122, 70, 0.2);
}

.lead-form button:hover,
.lead-form .btn:hover {
	box-shadow: 0 16px 26px rgba(194, 122, 70, 0.28);
}

.blog-grid {
	grid-template-columns: repeat(3, 1fr);
}

.blog-card h3 {
	margin-bottom: 8px;
}

.blog-meta {
	font-size: 0.82rem;
	color: var(--muted);
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.form-alert {
	border-radius: 10px;
	padding: 10px 12px;
	font-weight: 700;
	font-size: 0.9rem;
	margin: 0 0 10px;
}

.form-success {
	background: #e7f8ef;
	color: #1f7a4d;
}

.form-error {
	background: #ffe9e9;
	color: #ad2c2c;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.form-card code {
	display: block;
	background: #f5f5f5;
	padding: 10px;
	border-radius: 10px;
	overflow-x: auto;
}

.social-links {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 14px;
}

.social-links a {
	text-decoration: none;
	padding: 8px 12px;
	border-radius: 999px;
	background: #efe4d5;
	color: #6b4428;
	font-weight: 700;
}

.site-footer {
	border-top: 1px solid var(--line);
	padding: 26px 0 36px;
	background: #fff;
}

.footer-wrap {
	text-align: center;
	color: var(--muted);
	font-size: 0.95rem;
}

.footer-wrap p {
	margin: 5px 0;
}

@media (max-width: 900px) {
	.hero-grid,
	.about-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.hero-portrait img {
		max-width: 100%;
		height: 300px;
	}

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

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

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

	.steps,
	.stats-grid,
	.lead-grid {
		grid-template-columns: 1fr;
	}

	.hero-card img,
	.gallery-grid img {
		height: 300px;
	}

	.site-nav {
		display: none;
	}
}
