:root {
	--green-deep: #1f2a1d;
	--green-dark: #2d3f2a;
	--green-mid: #588252;
	--green-soft: #7d9e75;
	--green-pale: #eaf0e6;
	--gold: #c8a96a;
	--gold-bright: #e8d9a0;
	--cream: #faf7ef;
	--ink: #1a1a1a;
	--ink-soft: #4a4a4a;
	--whatsapp: #25d366;
	--whatsapp-dark: #128c7e;
	--font-serif: 'Cormorant Garamond', Georgia, serif;
	--font-sans: 'Inter', system-ui, -apple-system, sans-serif;
	--container: 1200px;
	--radius: 8px;
	--shadow-sm: 0 4px 12px rgba(20, 30, 18, 0.08);
	--shadow-md: 0 12px 32px rgba(20, 30, 18, 0.12);
	--shadow-lg: 0 24px 64px rgba(20, 30, 18, 0.18);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.6;
	color: var(--ink);
	background: var(--cream);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

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

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

.eyebrow {
	display: inline-block;
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 16px;
}

.eyebrow-dark {
	color: var(--green-mid);
}

h1, h2, h3, h4 {
	font-family: var(--font-serif);
	font-weight: 500;
	line-height: 1.15;
	color: var(--ink);
	letter-spacing: -0.01em;
}

h2 em, h1 em {
	font-style: italic;
	color: var(--green-mid);
	font-weight: 400;
}

p {
	color: var(--ink-soft);
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 26px;
	font-family: var(--font-sans);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.3px;
	border: none;
	border-radius: 999px;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	white-space: nowrap;
}

.btn-primary {
	background: var(--whatsapp);
	color: white;
	box-shadow: 0 6px 16px rgba(37, 211, 102, 0.32);
}

.btn-primary:hover {
	background: var(--whatsapp-dark);
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
}

.btn-large {
	padding: 18px 36px;
	font-size: 16px;
}

.btn-ghost {
	background: transparent;
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: white;
}

.btn-ghost-light {
	background: transparent;
	color: var(--gold-bright);
	border: 1px solid rgba(232, 217, 160, 0.4);
	font-size: 13px;
}

.btn-ghost-light:hover {
	background: rgba(232, 217, 160, 0.1);
}

.btn-whatsapp.btn-header {
	background: var(--whatsapp);
	color: white;
	padding: 10px 20px;
	font-size: 13px;
}

.btn-whatsapp.btn-header:hover {
	background: var(--whatsapp-dark);
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(31, 42, 29, 0.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(232, 217, 160, 0.08);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	height: 80px;
}

.brand {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.brand-logo {
	height: 56px;
	width: auto;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}

.site-nav {
	display: flex;
	gap: 32px;
	margin-left: auto;
	margin-right: 24px;
}

.site-nav a {
	font-size: 14px;
	font-weight: 500;
	color: rgba(250, 247, 239, 0.85);
	letter-spacing: 0.3px;
	transition: color 0.2s;
	position: relative;
}

.site-nav a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 0;
	height: 1px;
	background: var(--gold);
	transition: width 0.3s ease;
}

.site-nav a:hover {
	color: var(--gold-bright);
}

.site-nav a:hover::after {
	width: 100%;
}

.menu-toggle {
	display: none;
	background: transparent;
	border: none;
	width: 44px;
	height: 44px;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	cursor: pointer;
	padding: 10px;
}

.menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--gold-bright);
	transition: all 0.3s;
}

/* Hero */
.hero {
	position: relative;
	min-height: 92vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	background: var(--green-deep);
	color: white;
	padding: 80px 0 0;
}

.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: right center;
	opacity: 0.45;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		var(--green-deep) 0%,
		rgba(31, 42, 29, 0.92) 45%,
		rgba(31, 42, 29, 0.5) 75%,
		rgba(31, 42, 29, 0.2) 100%
	);
}

.hero-inner {
	position: relative;
	z-index: 2;
	padding: 60px 24px 100px;
}

.hero-content {
	max-width: 720px;
	animation: fadeUp 1s ease-out;
}

.hero-title {
	font-size: clamp(36px, 5.5vw, 64px);
	line-height: 1.05;
	color: var(--cream);
	margin-bottom: 24px;
	letter-spacing: -0.02em;
}

.hero-title em {
	color: var(--gold-bright);
	font-style: italic;
	font-weight: 400;
}

.hero-lead {
	font-size: clamp(16px, 1.4vw, 19px);
	line-height: 1.65;
	color: rgba(250, 247, 239, 0.85);
	max-width: 600px;
	margin-bottom: 36px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 28px;
}

.hero-note {
	font-size: 13px;
	color: rgba(250, 247, 239, 0.6);
	letter-spacing: 0.3px;
}

.hero-ticker {
	position: relative;
	z-index: 2;
	border-top: 1px solid rgba(232, 217, 160, 0.15);
	border-bottom: 1px solid rgba(232, 217, 160, 0.15);
	overflow: hidden;
	background: rgba(0, 0, 0, 0.2);
	padding: 18px 0;
}

.ticker-track {
	display: flex;
	gap: 48px;
	animation: ticker 50s linear infinite;
	white-space: nowrap;
	width: max-content;
}

.ticker-track span {
	font-family: var(--font-serif);
	font-size: 18px;
	font-style: italic;
	color: var(--gold);
	letter-spacing: 0.5px;
}

.ticker-track span::before {
	content: '✦';
	margin-right: 48px;
	color: var(--green-soft);
	font-size: 12px;
	font-style: normal;
	vertical-align: middle;
}

/* Trust */
.trust {
	background: var(--green-deep);
	color: white;
	padding: 48px 0;
	border-bottom: 1px solid rgba(232, 217, 160, 0.08);
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	text-align: center;
}

.trust-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 16px;
	border-left: 1px solid rgba(232, 217, 160, 0.15);
}

.trust-item:first-child {
	border-left: none;
}

.trust-num {
	font-family: var(--font-serif);
	font-size: 44px;
	font-weight: 500;
	color: var(--gold-bright);
	line-height: 1;
}

.trust-label {
	font-size: 13px;
	color: rgba(250, 247, 239, 0.7);
	letter-spacing: 0.4px;
}

/* About */
.about {
	padding: 120px 0;
	background: var(--cream);
}

.about-grid {
	display: grid;
	grid-template-columns: 5fr 6fr;
	gap: 80px;
	align-items: center;
}

.about-media {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.about-media img {
	width: 100%;
	aspect-ratio: 4/5;
	object-fit: cover;
	filter: saturate(0.85) brightness(0.95);
}

.about-badge {
	position: absolute;
	bottom: 24px;
	left: 24px;
	background: var(--green-deep);
	color: var(--gold-bright);
	padding: 16px 22px;
	border-radius: 6px;
	font-family: var(--font-serif);
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.about-badge span {
	font-size: 12px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: rgba(232, 217, 160, 0.7);
	font-family: var(--font-sans);
	font-weight: 500;
}

.about-badge strong {
	font-size: 24px;
	font-weight: 500;
	font-style: italic;
}

.about-text h2 {
	font-size: clamp(32px, 4vw, 48px);
	margin-bottom: 24px;
}

.about-text .lead {
	font-size: 19px;
	color: var(--ink);
	margin-bottom: 20px;
	font-weight: 500;
}

.about-text p {
	margin-bottom: 16px;
	font-size: 16px;
}

.about-list {
	margin-top: 28px;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.about-list li {
	position: relative;
	padding-left: 28px;
	color: var(--ink);
	font-size: 15px;
}

.about-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 9px;
	width: 16px;
	height: 2px;
	background: var(--gold);
}

/* Areas */
.areas {
	padding: 120px 0;
	background: linear-gradient(180deg, var(--cream) 0%, var(--green-pale) 100%);
}

.section-head {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 64px;
}

.section-head h2 {
	font-size: clamp(32px, 4vw, 48px);
	margin-bottom: 18px;
}

.section-head p {
	font-size: 17px;
}

.section-head-light h2 {
	color: var(--cream);
}

.section-head-light p {
	color: rgba(250, 247, 239, 0.75);
}

.section-head-light h2 em {
	color: var(--gold-bright);
}

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

.area-card {
	background: white;
	padding: 36px 32px;
	border-radius: 12px;
	box-shadow: var(--shadow-sm);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid rgba(88, 130, 82, 0.08);
}

.area-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
	border-color: rgba(88, 130, 82, 0.2);
}

.area-icon {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	background: var(--green-pale);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
	color: var(--green-mid);
	transition: background 0.3s, color 0.3s;
}

.area-icon svg {
	width: 28px;
	height: 28px;
}

.area-card:hover .area-icon {
	background: var(--green-mid);
	color: var(--gold-bright);
}

.area-card h3 {
	font-size: 22px;
	margin-bottom: 12px;
	color: var(--ink);
}

.area-card p {
	font-size: 15px;
	line-height: 1.55;
}

.areas-extra {
	margin-top: 56px;
	padding: 28px 32px;
	background: white;
	border-radius: 12px;
	border-left: 4px solid var(--gold);
	text-align: center;
}

.areas-extra p {
	font-size: 15px;
	color: var(--ink);
	line-height: 1.7;
}

.areas-extra strong {
	color: var(--green-mid);
	font-weight: 600;
}

/* Process */
.process {
	padding: 120px 0;
	background: var(--green-deep);
	color: white;
	position: relative;
	overflow: hidden;
}

.process::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 1px;
	height: 100%;
	background: linear-gradient(180deg, transparent, rgba(232, 217, 160, 0.15), transparent);
	transform: translateX(-50%);
}

.process-steps {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	counter-reset: step;
}

.process-steps li {
	position: relative;
	padding: 0 8px;
}

.step-num {
	display: block;
	font-family: var(--font-serif);
	font-size: 56px;
	font-weight: 400;
	color: var(--gold);
	line-height: 1;
	margin-bottom: 20px;
	font-style: italic;
}

.process-steps h3 {
	font-size: 22px;
	color: var(--cream);
	margin-bottom: 14px;
}

.process-steps p {
	font-size: 15px;
	color: rgba(250, 247, 239, 0.7);
	line-height: 1.6;
}

/* CTA */
.cta {
	padding: 120px 0;
	background: var(--green-mid);
	color: white;
	position: relative;
	overflow: hidden;
}

.cta::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(232, 217, 160, 0.18), transparent 60%);
	pointer-events: none;
}

.cta-inner {
	display: grid;
	grid-template-columns: 7fr 4fr;
	gap: 64px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.cta-text h2 {
	font-size: clamp(32px, 3.8vw, 48px);
	color: var(--cream);
	margin-bottom: 20px;
}

.cta-text h2 em {
	color: var(--gold-bright);
}

.cta-text p {
	font-size: 17px;
	color: rgba(250, 247, 239, 0.85);
	margin-bottom: 32px;
	max-width: 540px;
}

.cta-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
}

.cta-social {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding-left: 48px;
	border-left: 1px solid rgba(232, 217, 160, 0.2);
}

.cta-social > span {
	font-size: 13px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: rgba(232, 217, 160, 0.7);
	font-weight: 600;
}

.social-links {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.social-links a {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--cream);
	font-size: 15px;
	transition: color 0.2s, transform 0.2s;
}

.social-links a:hover {
	color: var(--gold-bright);
	transform: translateX(4px);
}

.social-links svg {
	color: var(--gold-bright);
	flex-shrink: 0;
}

/* Footer */
.site-footer {
	background: var(--green-deep);
	color: rgba(250, 247, 239, 0.75);
	padding-top: 80px;
}

.footer-inner {
	display: grid;
	grid-template-columns: 2fr 1fr 1.5fr 1fr;
	gap: 48px;
	padding-bottom: 56px;
}

.footer-logo {
	height: 60px;
	margin-bottom: 16px;
}

.footer-brand p {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(250, 247, 239, 0.6);
	max-width: 320px;
}

.footer-col h4 {
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--gold-bright);
	margin-bottom: 18px;
}

.footer-col a, .footer-col span {
	display: block;
	font-size: 14px;
	color: rgba(250, 247, 239, 0.7);
	margin-bottom: 10px;
	transition: color 0.2s;
}

.footer-col a:hover {
	color: var(--gold-bright);
}

.footer-bottom {
	border-top: 1px solid rgba(232, 217, 160, 0.1);
	padding: 24px 0;
}

.footer-bottom .container {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.footer-bottom p {
	font-size: 12px;
	color: rgba(250, 247, 239, 0.5);
}

.footer-legal {
	max-width: 540px;
	text-align: right;
}

/* Floating WhatsApp */
.fab-whatsapp {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 60px;
	height: 60px;
	background: var(--whatsapp);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
	z-index: 50;
	transition: transform 0.2s, box-shadow 0.2s;
	animation: pulse 2.4s ease-in-out infinite;
}

.fab-whatsapp:hover {
	transform: scale(1.08);
	box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
	animation-play-state: paused;
}

/* Animations */
@keyframes ticker {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@keyframes fadeUp {
	from { opacity: 0; transform: translateY(24px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
	0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
	50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0); }
}

[data-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Responsive */
@media (max-width: 1024px) {
	.about-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.about-media {
		max-width: 480px;
		margin: 0 auto;
	}
	.areas-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.process-steps {
		grid-template-columns: repeat(2, 1fr);
		gap: 48px;
	}
	.cta-inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.cta-social {
		padding-left: 0;
		padding-top: 32px;
		border-left: none;
		border-top: 1px solid rgba(232, 217, 160, 0.2);
	}
	.footer-inner {
		grid-template-columns: 1fr 1fr;
	}
	.trust-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.trust-item:nth-child(2) {
		border-left: 1px solid rgba(232, 217, 160, 0.15);
	}
	.trust-item:nth-child(3) {
		border-left: none;
	}
}

@media (max-width: 768px) {
	.site-nav {
		display: none;
	}
	.btn-whatsapp.btn-header {
		display: none;
	}
	.menu-toggle {
		display: flex;
	}
	.site-nav.is-open {
		display: flex;
		position: absolute;
		top: 80px;
		left: 0;
		right: 0;
		flex-direction: column;
		background: var(--green-deep);
		padding: 24px;
		gap: 18px;
		border-top: 1px solid rgba(232, 217, 160, 0.1);
	}
	.hero {
		min-height: auto;
		padding: 60px 0 0;
	}
	.hero-inner {
		padding: 60px 24px 80px;
	}
	.hero-bg img {
		object-position: 70% center;
	}
	.hero-overlay {
		background: linear-gradient(180deg, rgba(31, 42, 29, 0.7) 0%, rgba(31, 42, 29, 0.95) 70%);
	}
	.hero-actions {
		flex-direction: column;
		align-items: stretch;
	}
	.hero-actions .btn {
		justify-content: center;
	}
	.about, .areas, .process, .cta {
		padding: 80px 0;
	}
	.areas-grid {
		grid-template-columns: 1fr;
	}
	.process-steps {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.footer-inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.footer-bottom .container {
		flex-direction: column;
		gap: 12px;
	}
	.footer-legal {
		text-align: left;
	}
	.trust-grid {
		grid-template-columns: 1fr 1fr;
	}
	.trust-num {
		font-size: 36px;
	}
	.cta-buttons {
		flex-direction: column;
		align-items: stretch;
	}
	.cta-buttons .btn {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.brand-logo {
		height: 44px;
	}
	.header-inner {
		height: 68px;
	}
	.site-nav.is-open {
		top: 68px;
	}
	.fab-whatsapp {
		width: 54px;
		height: 54px;
		bottom: 18px;
		right: 18px;
	}
	.fab-whatsapp svg {
		width: 24px;
		height: 24px;
	}
}

/* Adjustments — single CTA hero, 3-col trust, section-head CTA */
.hero-actions-single {
	margin-bottom: 28px;
}

.trust-grid-3 {
	grid-template-columns: repeat(3, 1fr);
	max-width: 900px;
	margin: 0 auto;
}

.section-head-cta {
	margin-top: 28px;
	display: flex;
	justify-content: center;
}

.btn-compact {
	padding: 12px 22px;
	font-size: 14px;
}

@media (max-width: 768px) {
	.trust-grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}
}
