:root {
	--brand-lime: #b4c857;
	--brand-lime-dark: #93a83f;
	--brand-charcoal: #3f4247;
	--brand-charcoal-soft: #50535a;
	--brand-forest: #253a22;
	--brand-sand: #f4f0e4;
	--brand-gold: #d4b567;
	--text: #101411;
	--white: #ffffff;
	--radius-lg: 18px;
	--radius-md: 14px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Outfit", sans-serif;
	color: var(--text);
	background: linear-gradient(180deg, #eef3dc 0%, #f5f7eb 35%, #edf2d5 100%);
	overflow-x: hidden;
}

.container {
	width: min(1120px, 92vw);
	margin-inline: auto;
}

.topbar {
	background: var(--brand-lime);
	color: #101010;
	font-size: 0.95rem;
	letter-spacing: 0.2px;
	padding: 0.5rem 1rem;
	text-align: center;
	font-weight: 500;
}

.topbar a {
	color: inherit;
	text-decoration: none;
	font-weight: 700;
}

.navbar {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(63, 66, 71, 0.95);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.logo {
	font-family: "Barlow Condensed", sans-serif;
	color: var(--white);
	text-decoration: none;
	font-size: 1.55rem;
	text-transform: uppercase;
	line-height: 1;
	letter-spacing: 1px;
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
}

.logo-mark {
	width: 3.8rem;
	height: 2.2rem;
	display: grid;
	place-content: center;
}

.logo-mark>img {
    width: 100%;
}

.nav-links {
	display: flex;
	gap: 1.35rem;
	align-items: center;
}

.nav-links a {
	color: #f6f8f4;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	white-space: nowrap;
}

.nav-links a i {
	flex-shrink: 0;
}

.nav-links a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -0.3rem;
	width: 0;
	height: 2px;
	background: var(--brand-lime);
	transition: width 0.25s ease;
}

.nav-links a:hover::after {
	width: 100%;
}

.btn {
	background: var(--brand-lime);
	color: #101010;
	border: 0;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	padding: 0.75rem 1.1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	border-radius: 999px;
	box-shadow: 0 7px 14px rgba(25, 31, 14, 0.2);
	transition: transform 0.24s ease, background 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
	cursor: pointer;
}

.btn:hover {
	background: #c8da74;
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 11px 20px rgba(25, 31, 14, 0.26);
	filter: saturate(1.06);
}

.captcha-wrap {
    margin: 0 1rem 1rem 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px dashed #b6b6b6;
    display: none;
}

.input-grid>#captchaQuestion {
    text-align: center;
    border: none;
    outline: none;
}

.input-grid>#captchaAnswer {
    text-align: center;
}

.menu-toggle {
	display: none;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	padding: 0.45rem 0.65rem;
}

.hero {
	min-height: 84vh;
	position: relative;
	display: grid;
	align-items: center;
	isolation: isolate;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(15, 20, 16, 0.72) 20%, rgba(15, 20, 16, 0.35) 50%, rgba(180, 200, 87, 0.18) 100%),
	url("../assets/principal.webp") center/cover no-repeat;
	z-index: -2;
	transform: scale(1.05);
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 20% 30%, rgba(180, 200, 87, 0.26), transparent 45%);
	z-index: -1;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 2rem;
	align-items: end;
	padding: 4.5rem 0;
}

.hero h1 {
	color: #fff;
	font-family: "Barlow Condensed", sans-serif;
	text-transform: uppercase;
	font-size: clamp(2.6rem, 6vw, 5.3rem);
	line-height: 0.95;
	letter-spacing: 1.1px;
	margin: 0;
	max-width: 12ch;
}

.hero p {
	color: #edf5e4;
	font-size: 1.1rem;
	max-width: 55ch;
	margin-top: 1rem;
}

.hero-points {
	list-style: none;
	padding: 0;
	margin-top: 1.4rem;
	color: #dbe7cb;
}

.hero-points li {
	margin: 0.45rem 0;
}

.estimate-card {
	background: rgba(18, 20, 20, 0.62);
	border: 1px solid rgba(255, 255, 255, 0.3);
	padding: 1.5rem;
	color: #fff;
	max-width: 360px;
	justify-self: end;
	border-radius: var(--radius-lg);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	box-shadow: 0 22px 40px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.estimate-card h3 {
	background: var(--brand-lime);
	color: #111;
	margin: -1.5rem -1.5rem 1.2rem;
	padding: 0.95rem 1rem;
	font-family: "Barlow Condensed", sans-serif;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 1.7rem;
	font-weight: 700;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-bottom: 0;
	border-radius: calc(var(--radius-lg) - 2px) calc(var(--radius-lg) - 2px) 0 0;
}

.estimate-link {
	display: block;
	text-align: center;
	background: #fff;
	color: #131313;
	text-decoration: none;
	margin-bottom: 0.8rem;
	padding: 0.85rem 0.8rem;
	font-weight: 700;
	border-radius: 12px;
	transition: transform 0.2s ease, background 0.2s ease;
}

.estimate-link:hover {
	background: #f2f8d8;
	transform: translateY(-1px);
}

.section {
	padding: 5rem 0;
	position: relative;
}

.section-title {
	font-family: "Barlow Condensed", sans-serif;
	font-size: clamp(2rem, 4vw, 3.3rem);
	margin: 0;
	text-transform: uppercase;
	color: var(--brand-charcoal);
	letter-spacing: 0.8px;
}

.section-title i,
.section-subtitle i {
	margin-right: 0.45rem;
	color: var(--brand-lime-dark);
}

.split {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 2rem;
	align-items: center;
}

.about-image {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	border: 8px solid #fff;
	box-shadow: 0 18px 35px rgba(17, 26, 14, 0.2);
}

.muted {
	color: #454a42;
	line-height: 1.75;
	margin-top: 1rem;
}

.about-content {
	background: transparent;
	border: 0;
	border-radius: 0;
	padding: 0;
	box-shadow: none;
}

.stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 1.8rem;
	gap: 1rem;
}

.stat {
	background: rgba(255, 255, 255, 0.46);
	border-top: 4px solid var(--brand-lime-dark);
	border: 1px solid rgba(255, 255, 255, 0.5);
	padding: 1rem;
	text-align: center;
	box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
	border-radius: var(--radius-md);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
}

.stat i {
	color: #61714f;
	margin-right: 0.35rem;
}

.stat b {
	display: block;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 2rem;
	color: var(--brand-charcoal);
}

.services-area {
	background: var(--brand-charcoal);
	color: #f4f6f1;
}

.services-area .section-title {
	color: #fff;
}

.service-grid {
	margin-top: 2rem;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.service-card {
	background: #2f3238;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: transform 0.22s ease, box-shadow 0.22s ease;
	border-radius: var(--radius-md);
}

.service-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
}

.service-card img {
	width: 100%;
	height: 140px;
	object-fit: cover;
	display: block;
}

.service-card h4 {
	margin: 0;
	padding: 0.85rem;
	background: var(--brand-lime);
	color: #0f1210;
	font-family: "Barlow Condensed", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 1.2rem;
}

.service-card h4 i {
	margin-right: 0.35rem;
}

.service-card p {
	padding: 0.85rem;
	margin: 0;
	color: #d6dfca;
	font-size: 0.94rem;
	line-height: 1.5;
}

.trusted-area {
	background: #f6f8ef;
	border-top: 1px solid #dce4c0;
	border-bottom: 1px solid #dce4c0;
}

.trusted-carousel {
	margin-top: 1.8rem;
	padding: 1rem 0 1.9rem;
	overflow: hidden;
	position: relative;
}

.trusted-carousel::before,
.trusted-carousel::after,
.testimonial-carousel::before,
.testimonial-carousel::after,
.album-carousel::before,
.album-carousel::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: clamp(28px, 6vw, 92px);
	z-index: 2;
	pointer-events: none;
}

.trusted-carousel::before,
.testimonial-carousel::before,
.album-carousel::before {
	left: 0px;
}

.trusted-carousel::after,
.testimonial-carousel::after,
.album-carousel::after {
	right: 0px;
}

.trusted-carousel::before,
.trusted-carousel::after {
	background: linear-gradient(to right, #f6f8ef 0%, rgba(246, 248, 239, 0) 100%);
}

.trusted-carousel::after {
	transform: rotate(180deg);
}

.trusted-track {
	display: flex;
	gap: 1rem;
	width: max-content;
	animation: scrollTrusted 34s linear infinite;
}

.trusted-carousel:hover .trusted-track {
	animation-play-state: paused;
}

.trusted-logo {
	width: min(250px, 74vw);
	background: #ffffff;
	border: 1px solid #dce4c7;
	min-height: 120px;
	display: grid;
	place-content: center;
	padding: 1rem;
	border-radius: var(--radius-lg);
	flex-shrink: 0;
}

.trusted-logo img {
	max-width: 150px;
	width: 100%;
	display: block;
}

@keyframes scrollTrusted {
	from {
	transform: translateX(0);
	}

	to {
	transform: translateX(-50%);
	}
}

.process-area {
	background: linear-gradient(180deg, #f4f6eb 0%, #e8efd0 100%);
}

#process.section {
	padding-top: 3.5rem;
}

.section-subtitle {
	margin-top: 0.3rem;
	margin-bottom: 0;
	font-family: "Barlow Condensed", sans-serif;
	font-size: clamp(1.35rem, 2.8vw, 2rem);
	text-transform: uppercase;
	letter-spacing: 0.7px;
	color: #55624b;
}

.process-grid {
	margin-top: 2rem;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.process-step {
	background: #fff;
	border: 1px solid #dae4ba;
	padding: 1.3rem;
	box-shadow: 0 14px 22px rgba(44, 52, 31, 0.1);
	position: relative;
	border-radius: var(--radius-md);
}

.process-number {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: grid;
	place-content: center;
	background: var(--brand-lime);
	font-family: "Barlow Condensed", sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.8rem;
}

.process-step h3 {
	margin: 0;
	font-family: "Barlow Condensed", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.7px;
	font-size: 1.45rem;
	color: var(--brand-charcoal);
}

.process-step h3 i {
	margin-right: 0.45rem;
	color: #63724f;
}

.process-step p {
	margin: 0.7rem 0 0;
	line-height: 1.65;
	color: #40463d;
}

.testimonials-area {
	background: var(--brand-charcoal);
	color: #edf2e4;
}

.testimonials-area .section-title {
	color: #fff;
}

.testimonial-carousel {
	margin-top: 2rem;
	overflow: hidden;
	position: relative;
	padding-block: 0.3rem;
}

.testimonial-carousel::before,
.testimonial-carousel::after {
	background: linear-gradient(to right, var(--brand-charcoal) 0%, rgba(63, 66, 71, 0) 100%);
}

.testimonial-carousel::after {
	transform: rotate(180deg);
}

.testimonial-track {
	display: flex;
	gap: 1rem;
	width: max-content;
	animation: scrollTestimonials 95s linear infinite;
}

.testimonial-carousel:hover .testimonial-track {
	animation-play-state: paused;
}

.testimonial-card {
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-left: 4px solid var(--brand-lime);
	padding: 1.2rem;
	width: min(320px, 82vw);
	flex-shrink: 0;
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
	box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
}

.testimonial-card p {
	margin: 0;
	color: #dde5d1;
	line-height: 1.65;
}

.testimonial-meta {
	margin-top: 1rem;
	color: #b8c5a7;
	font-size: 0.92rem;
}

.testimonial-meta i {
	margin-right: 0.25rem;
	color: #f2d26e;
}

.profile-actions {
	margin-top: 1.2rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	align-items: center;
	justify-content: center;
}

.profile-label {
	color: #c7d1bb;
	font-weight: 600;
	margin-right: 0.2rem;
}

.profile-btn {
	background: rgba(255, 255, 255, 0.12);
	color: #f0f5e4;
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: none;
}

.profile-btn:hover {
	background: rgba(180, 200, 87, 0.95);
	color: #141914;
	border-color: rgba(180, 200, 87, 1);
}

@keyframes scrollTestimonials {
	from {
	transform: translateX(0);
	}

	to {
	transform: translateX(-50%);
	}
}

.faq-wrap {
	margin-top: 1.8rem;
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 1.3rem;
	align-items: start;
}

.faq-image {
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
	box-shadow: 0 16px 30px rgba(28, 35, 19, 0.15);
	border-radius: var(--radius-lg);
}

.faq-list {
	background: #ffffff;
	border: 1px solid #d9e1c1;
	box-shadow: 0 10px 18px rgba(25, 31, 17, 0.08);
	border-radius: var(--radius-md);
	overflow: hidden;
}

.faq-item {
	border-bottom: 1px solid #e4ead3;
}

.faq-item:last-child {
	border-bottom: 0;
}

.faq-question {
	width: 100%;
	border: 0;
	background: transparent;
	text-align: left;
	padding: 1rem;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 600;
	color: #22281f;
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	cursor: pointer;
}

.faq-question .question-label {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
}

.faq-toggle {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 1.6rem;
	line-height: 1;
	color: var(--brand-lime-dark);
	transition: transform 0.25s ease;
}

.faq-item.open .faq-toggle {
	transform: rotate(45deg);
}

.faq-answer {
	display: none;
	padding: 0 1rem 1rem;
	color: #4d5448;
	line-height: 1.65;
}

.map-area {
	background: var(--brand-charcoal);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-area {
	background: var(--brand-charcoal);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.map-area .section-title,
.gallery-area .section-title {
	color: #ffffff;
}

.map-area .muted,
.gallery-area .muted,
.map-area .map-attribution {
	color: #d5dfca;
}

.map-frame {
	margin-top: 1.6rem;
	background: rgba(255, 255, 255, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.42);
	box-shadow: 0 14px 24px rgba(23, 30, 15, 0.16);
	border-radius: var(--radius-lg);
	overflow: hidden;
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
}

#map {
	width: 100%;
	height: 420px;
}

.map-attribution {
	margin-top: 0.8rem;
	color: #44503d;
}

.gallery {
	margin-top: 2rem;
}

.album-carousel {
	--album-page-width: min(1120px, 92vw);
	overflow: hidden;
	background: #35393f;
	padding: 0.8rem 0;
	position: relative;
}

.album-carousel::before,
.album-carousel::after {
	background: linear-gradient(to right, var(--brand-charcoal) 0%, rgba(63, 66, 71, 0) 100%);
}

.album-carousel::after {
	transform: rotate(180deg);
}

.album-track {
	display: flex;
	width: max-content;
	gap: 0.8rem;
	will-change: transform;
}

.album-page {
	flex: 0 0 var(--album-page-width);
	width: var(--album-page-width);
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.8rem;
}

.album-item {
	margin: 0;
	border: 0;
	box-shadow: 0 8px 14px rgba(0, 0, 0, 0.2);
	aspect-ratio: 4 / 3;
	background: #dbe6b7;
	overflow: hidden;
}

.album-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transform: scale(1.01);
	transition: transform 0.35s ease;
}

.album-item:hover .album-photo {
	transform: scale(1.06);
}

@keyframes albumScroll {
	from {
	transform: translateX(0);
	}

	to {
	transform: translateX(-50%);
	}
}

.contact-area {
	background: var(--brand-lime);
	position: relative;
	overflow: hidden;
}

.contact-area::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%), linear-gradient(-45deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%);
	background-size: 30px 30px;
	opacity: 0.35;
	pointer-events: none;
}

.contact-wrap {
	position: relative;
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 2rem;
}

.form-box {
	background: rgba(246, 247, 241, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.55);
	padding: 1.7rem;
	box-shadow: 0 16px 26px rgba(33, 39, 23, 0.16);
	border-radius: var(--radius-lg);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
}

.input-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.8rem;
}

input,
textarea {
	width: 100%;
	font: inherit;
	border: 0;
	border-bottom: 2px solid #1c2019;
	background: transparent;
	padding: 0.75rem 0.2rem;
	margin-bottom: 0.9rem;
}

textarea {
	min-height: 130px;
	resize: vertical;
}

footer {
	background: var(--brand-charcoal);
	color: #e3e9da;
	padding: 2rem 0 1.5rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 1.4rem;
	align-items: start;
}

.footer-grid a {
	color: #eef3e5;
	text-decoration: none;
}

.social {
	display: flex;
	gap: 0.7rem;
	margin-top: 0.8rem;
}

.social a {
	width: 4rem;
	height: 4rem;
	font-size: 2rem;
    color: #000000;
	text-decoration: none;
	display: grid;
	place-content: center;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.28);
	transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.social a:hover {
	transform: translateY(-2px);
	border-color: #f2f7e4;
	background: rgba(255, 255, 255, 0.1);
}

.social a:hover>.fa-facebook-f {
    color: #1877F2;
}

.social a:hover>.fa-instagram {
    color: #C13584;
}

.social a:hover>.fa-tiktok {
    color: #009688;
}

.reveal {
	opacity: 0;
	transform: translateY(28px);
}

@media (max-width: 980px) {
	.hero-grid,
	.split,
	.faq-wrap,
	.contact-wrap,
	.footer-grid {
	grid-template-columns: 1fr;
	}

	.estimate-card {
	justify-self: start;
	}

	.service-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.process-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.album-page {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.menu-toggle {
	display: block;
	}

	.nav-links {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	background: #35393e;
	padding: 1rem;
	flex-direction: column;
	gap: 0.9rem;
	}

	.nav-links.open {
	display: flex;
	}

	.service-grid {
	grid-template-columns: 1fr;
	}

	.process-grid {
	grid-template-columns: 1fr;
	}

	.album-page {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.stats,
	.input-grid {
	grid-template-columns: 1fr;
	}

	.faq-image {
	min-height: 260px;
	}

	#map {
	height: 330px;
	}
}