:root {
	--leaf: #173f2b;
	--leaf-2: #245d3c;
	--leaf-soft: #e7efe6;
	--clay: #a7542f;
	--clay-dark: #6f3422;
	--soil: #2e2118;
	--sand: #e8d8bc;
	--cream: #f6f0e4;
	--paper: #fffaf0;
	--ink: #201b16;
	--muted: #74695d;
	--line: rgba(46, 33, 24, .16);
	--shadow: 0 24px 70px rgba(46, 33, 24, .16);
	--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;
	color: var(--ink);
	background: var(--cream);
	line-height: 1.6;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	background-image:
		radial-gradient(rgba(46, 33, 24, .08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(167, 84, 47, .04), rgba(23, 63, 43, .03));
	background-size: 22px 22px, auto;
	mix-blend-mode: multiply;
	z-index: -1;
}

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

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

.wrap {
	width: min(var(--max), calc(100% - 32px));
	margin-inline: auto;
}

.site-header {
	position: fixed;
	top: 14px;
	left: 0;
	right: 0;
	z-index: 80;
	pointer-events: none;
}

.site-header__inner {
	width: min(var(--max), calc(100% - 32px));
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 12px 14px;
	border: 1px solid rgba(255, 250, 240, .7);
	border-radius: 999px;
	background: rgba(246, 240, 228, .84);
	backdrop-filter: blur(18px);
	box-shadow: 0 16px 45px rgba(46, 33, 24, .14);
	pointer-events: auto;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 900;
	letter-spacing: -.03em;
	color: var(--leaf);
	white-space: nowrap;
}

.site-brand__mark {
	width: 38px;
	height: 38px;
	border-radius: 999px;
	background: var(--leaf);
	color: var(--sand);
	display: grid;
	place-items: center;
	font-family: Georgia, serif;
	font-size: 1.25rem;
}

.custom-logo {
	max-height: 46px;
	width: auto;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 20px;
	font-size: .92rem;
	font-weight: 800;
	color: var(--soil);
}

.site-nav__menu {
	display: flex;
	align-items: center;
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.site-nav a {
	opacity: .78;
}

.site-nav a:hover {
	opacity: 1;
	color: var(--leaf);
}

.header-whatsapp {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	padding: 12px 17px;
	background: var(--leaf);
	color: var(--paper);
	font-weight: 900;
	box-shadow: 0 12px 28px rgba(23, 63, 43, .23);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 13px 20px;
	border-radius: 999px;
	border: 1px solid transparent;
	font-weight: 900;
	cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
	transform: translateY(-2px);
}

.button--dark {
	background: var(--leaf);
	color: var(--paper);
	box-shadow: 0 12px 28px rgba(23, 63, 43, .24);
}

.button--dark:hover,
.header-whatsapp:hover {
	background: #0d2c1d;
}

.button--cream {
	background: var(--paper);
	color: var(--leaf);
}

.button--ghost-light {
	color: var(--paper);
	border-color: rgba(255, 250, 240, .32);
	background: rgba(255, 250, 240, .08);
}

.button--ghost-light:hover {
	background: rgba(255, 250, 240, .16);
}

.hero {
	position: relative;
	min-height: 100vh;
	padding: 132px 0 82px;
	background: var(--soil);
	color: var(--paper);
	overflow: hidden;
}

.hero__image {
	position: absolute;
	inset: 0;
}

.hero__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(.94) contrast(.98);
}

.hero__image::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(25, 30, 21, .94) 0%, rgba(25, 30, 21, .80) 42%, rgba(25, 30, 21, .18) 100%),
		linear-gradient(180deg, rgba(25, 30, 21, .24), rgba(25, 30, 21, .82));
}

.hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 390px;
	gap: 34px;
	align-items: end;
	min-height: calc(100vh - 220px);
}

.hero__copy {
	max-width: 780px;
}

.mini-label {
	margin: 0 0 13px;
	color: var(--clay);
	text-transform: uppercase;
	letter-spacing: .16em;
	font-size: .78rem;
	font-weight: 950;
}

.hero .mini-label,
.final-cta .mini-label {
	color: var(--sand);
}

h1,
h2,
h3 {
	margin: 0;
	line-height: .98;
	letter-spacing: -.055em;
}

h1,
h2 {
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 800;
}

h1 {
	font-size: clamp(3.2rem, 7vw, 6.9rem);
	max-width: 920px;
}

h2 {
	font-size: clamp(2.2rem, 4.8vw, 4.7rem);
	color: var(--soil);
}

h3 {
	font-size: 1.3rem;
	color: var(--soil);
}

.hero__lead {
	max-width: 670px;
	font-size: clamp(1.08rem, 2vw, 1.32rem);
	color: rgba(255, 250, 240, .82);
	margin: 24px 0 30px;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hero__meta {
	margin-top: 34px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	max-width: 760px;
}

.hero__meta span {
	display: inline-flex;
	border-radius: 999px;
	padding: 8px 12px;
	background: rgba(255, 250, 240, .12);
	border: 1px solid rgba(255, 250, 240, .16);
	color: rgba(255, 250, 240, .8);
	font-size: .87rem;
	font-weight: 750;
}

.hero-card {
	background: rgba(255, 250, 240, .95);
	color: var(--ink);
	border-radius: 26px;
	padding: 22px;
	box-shadow: var(--shadow);
	border: 1px solid rgba(255, 250, 240, .82);
}

.hero-card__eyebrow {
	margin: 0 0 8px;
	font-size: .76rem;
	text-transform: uppercase;
	letter-spacing: .14em;
	font-weight: 950;
	color: var(--clay);
}

.hero-card h2 {
	font-size: 1.65rem;
	letter-spacing: -.045em;
	margin-bottom: 8px;
}

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

.quote-form {
	display: grid;
	gap: 10px;
}

.quote-form label {
	display: grid;
	gap: 5px;
}

.quote-form span {
	font-size: .8rem;
	font-weight: 900;
	color: var(--soil);
}

input,
select,
textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: #fff;
	color: var(--ink);
	padding: 12px 13px;
	font: inherit;
	outline: none;
}

textarea {
	min-height: 86px;
	resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
	border-color: var(--leaf-2);
	box-shadow: 0 0 0 4px rgba(36, 93, 60, .12);
}

.strip {
	padding: 0;
	background: var(--clay);
	color: var(--paper);
}

.strip__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 18px 0;
}

.strip p {
	margin: 0;
}

.strip a {
	text-decoration: underline;
	text-underline-offset: 4px;
	font-weight: 900;
}

.products,
.services,
.prices,
.gallery,
.final-cta,
.fallback-page {
	padding: 88px 0;
}

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

.section-intro--split {
	max-width: none;
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(280px, .55fr);
	align-items: end;
	gap: 34px;
}

.section-intro p,
.section-text {
	color: var(--muted);
	font-size: 1.04rem;
}

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

.product-card {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 18px 60px rgba(46, 33, 24, .08);
	transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
	transform: translateY(-4px) rotate(-.2deg);
	box-shadow: 0 28px 80px rgba(46, 33, 24, .14);
}

.product-card:nth-child(even):hover {
	transform: translateY(-4px) rotate(.2deg);
}

.product-card img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.product-card__body {
	padding: 20px;
}

.product-card__price {
	display: inline-flex;
	margin: 0 0 12px;
	padding: 6px 10px;
	border-radius: 999px;
	background: var(--leaf-soft);
	color: var(--leaf);
	font-size: .82rem;
	font-weight: 900;
}

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

.product-card p:last-child {
	margin: 0;
	color: var(--muted);
}

.services {
	background: var(--paper);
}

.services__grid {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 44px;
	align-items: center;
}

.services__photo {
	position: relative;
}

.services__photo::before {
	content: "";
	position: absolute;
	inset: 18px -18px -18px 18px;
	border: 2px solid var(--clay);
	border-radius: 28px;
	z-index: 0;
}

.services__photo img {
	position: relative;
	z-index: 1;
	width: 100%;
	border-radius: 28px;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	box-shadow: var(--shadow);
}

.service-list {
	display: grid;
	gap: 14px;
	margin-top: 28px;
}

.service-list article {
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 14px;
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: 20px;
	background: #fffaf0;
}

.service-list span {
	width: 34px;
	height: 34px;
	margin-top: 4px;
	border-radius: 999px;
	background:
		radial-gradient(circle at 50% 32%, var(--sand) 0 18%, transparent 19%),
		var(--leaf);
}

.service-list h3 {
	margin-bottom: 6px;
}

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

.prices {
	background: var(--leaf);
	color: var(--paper);
}

.price-board {
	display: grid;
	grid-template-columns: .85fr 1fr;
	gap: 30px;
	align-items: center;
	padding: clamp(26px, 5vw, 48px);
	border: 1px solid rgba(255, 250, 240, .16);
	border-radius: 34px;
	background:
		linear-gradient(135deg, rgba(255, 250, 240, .08), rgba(255, 250, 240, .03)),
		var(--leaf);
}

.price-board h2 {
	color: var(--paper);
}

.price-board p {
	color: rgba(255, 250, 240, .74);
}

.price-list {
	display: grid;
	gap: 10px;
}

.price-list div {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 15px 0;
	border-bottom: 1px solid rgba(255, 250, 240, .18);
}

.price-list span {
	color: rgba(255, 250, 240, .75);
}

.price-list strong {
	color: var(--sand);
	text-align: right;
}

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

.gallery-grid figure {
	margin: 0;
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	background: var(--soil);
	box-shadow: 0 18px 60px rgba(46, 33, 24, .10);
}

.gallery-grid figure:nth-child(1) {
	grid-column: span 7;
	grid-row: span 2;
}

.gallery-grid figure:nth-child(2) {
	grid-column: span 5;
}

.gallery-grid figure:nth-child(3),
.gallery-grid figure:nth-child(4) {
	grid-column: span 6;
}

.gallery-grid figure:nth-child(5),
.gallery-grid figure:nth-child(6) {
	grid-column: span 6;
}

.gallery-grid img {
	width: 100%;
	height: 100%;
	min-height: 270px;
	object-fit: cover;
	opacity: .94;
	transition: transform .35s ease, opacity .35s ease;
}

.gallery-grid figure:hover img {
	transform: scale(1.04);
	opacity: 1;
}

.gallery-grid figcaption {
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 12px;
	padding: 10px 12px;
	border-radius: 14px;
	background: rgba(32, 27, 22, .76);
	backdrop-filter: blur(10px);
	color: var(--paper);
	font-size: .86rem;
	font-weight: 800;
}

.final-cta {
	background: var(--soil);
	color: var(--paper);
}

.final-cta__inner {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 26px;
	align-items: center;
}

.final-cta h2 {
	color: var(--paper);
	max-width: 740px;
}

.final-cta p {
	color: rgba(255, 250, 240, .76);
	max-width: 720px;
}

.final-cta__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 12px;
}

.site-footer {
	padding: 34px 0 92px;
	background: var(--cream);
	border-top: 1px solid var(--line);
}

.site-footer__inner {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	align-items: flex-start;
}

.site-footer strong {
	color: var(--leaf);
	font-size: 1.05rem;
}

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

.footer-contact {
	display: grid;
	gap: 4px;
	text-align: right;
	color: var(--muted);
	font-weight: 750;
}

.footer-contact a:hover {
	color: var(--leaf);
}

.mobile-bar {
	display: none;
	position: fixed;
	z-index: 90;
	left: 12px;
	right: 12px;
	bottom: 12px;
	padding: 10px;
	border-radius: 999px;
	background: rgba(246, 240, 228, .92);
	backdrop-filter: blur(18px);
	box-shadow: 0 18px 60px rgba(46, 33, 24, .22);
	border: 1px solid rgba(255, 250, 240, .72);
}

.mobile-bar a {
	flex: 1;
	text-align: center;
	border-radius: 999px;
	padding: 12px 14px;
	font-weight: 950;
}

.mobile-bar a:first-child {
	color: var(--leaf);
}

.mobile-bar a:last-child {
	background: var(--leaf);
	color: var(--paper);
}

.fallback-page {
	min-height: 60vh;
	padding-top: 150px;
}

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

	.hero {
		padding-top: 110px;
	}

	.hero__inner,
	.section-intro--split,
	.services__grid,
	.price-board,
	.final-cta__inner {
		grid-template-columns: 1fr;
	}

	.hero-card {
		max-width: 540px;
	}

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

	.final-cta__actions {
		justify-content: flex-start;
	}

	.gallery-grid figure,
	.gallery-grid figure:nth-child(1),
	.gallery-grid figure:nth-child(2),
	.gallery-grid figure:nth-child(3),
	.gallery-grid figure:nth-child(4),
	.gallery-grid figure:nth-child(5),
	.gallery-grid figure:nth-child(6) {
		grid-column: span 6;
		grid-row: auto;
	}
}

@media (max-width: 680px) {
	.site-header {
		top: 8px;
	}

	.site-header__inner {
		width: calc(100% - 20px);
		padding: 9px 10px;
	}

	.site-brand__text {
		font-size: .96rem;
	}

	.site-brand__mark {
		width: 34px;
		height: 34px;
	}

	.header-whatsapp {
		padding: 10px 13px;
		font-size: .88rem;
	}

	.hero {
		min-height: auto;
		padding: 104px 0 56px;
	}

	.hero__image::after {
		background:
			linear-gradient(180deg, rgba(25, 30, 21, .92) 0%, rgba(25, 30, 21, .76) 60%, rgba(25, 30, 21, .88) 100%);
	}

	h1 {
		font-size: clamp(3rem, 15vw, 4.9rem);
	}

	h2 {
		font-size: clamp(2rem, 10vw, 3.25rem);
	}

	.hero__actions,
	.final-cta__actions {
		display: grid;
	}

	.strip__inner {
		display: grid;
	}

	.products,
	.services,
	.prices,
	.gallery,
	.final-cta,
	.fallback-page {
		padding: 64px 0;
	}

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

	.gallery-grid figure,
	.gallery-grid figure:nth-child(1),
	.gallery-grid figure:nth-child(2),
	.gallery-grid figure:nth-child(3),
	.gallery-grid figure:nth-child(4),
	.gallery-grid figure:nth-child(5),
	.gallery-grid figure:nth-child(6) {
		grid-column: auto;
	}

	.gallery-grid img {
		min-height: 250px;
	}

	.site-footer__inner,
	.footer-contact {
		display: grid;
		text-align: left;
	}

	.mobile-bar {
		display: flex;
	}
}
