/* (same CSS as v2; omitted comments for brevity) */
:root {
	--brand: #1b5e20;
	--brand-2: #2e7d32;
	--accent: #f28c28;
	--ink: #18342b;
	--muted: #5c6b62;
	--bg: #fffdf8;
	--card: #ffffff;
	--radius: 18px;
	--shadow: 0 20px 40px rgba(16, 37, 28, .12)
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	color: var(--ink);
	background: radial-gradient(60rem 60rem at 10% -10%, #e7fff2 0, transparent 40%), radial-gradient(50rem 50rem at 120% 10%, #fff1e3 0, transparent 40%), var(--bg);
	line-height: 1.65
}

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

.section {
	padding: 5rem 0
}

.section.alt {
	background: linear-gradient(180deg, rgba(27, 94, 32, .03), rgba(27, 94, 32, 0))
}

.section-title {
	font-family: Poppins, Inter, sans-serif;
	font-size: clamp(1.6rem, 1.2rem + 2vw, 2.4rem);
	margin: 0 0 .5rem
}

.section-lead {
	color: var(--muted);
	margin: 0 0 2rem
}

.btn {
	display: inline-block;
	padding: .9rem 1.2rem;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 600;
	border: 1.5px solid currentColor;
	transition: transform .15s ease, background .2s ease, color .2s ease
}

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

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

.btn.primary:hover {
	background: var(--brand-2)
}

.btn.ghost {
	color: var(--brand);
	background: transparent
}

.btn.ghost:hover {
	background: rgba(27, 94, 32, .08)
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	background: rgba(255, 255, 255, .75);
	backdrop-filter: saturate(140%) blur(8px);
	border-bottom: 1px solid rgba(27, 94, 32, .08)
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: .75rem 0
}

.brand {
	display: flex;
	align-items: center;
	gap: .6rem;
	font-weight: 800;
	color: var(--brand);
	text-decoration: none;
	font-family: Poppins, Inter, sans-serif
}

.brand img {
	border-radius: 50%;
	width: 20%;
	height: 20%
}

.menu {
	display: flex;
	gap: 1rem;
	align-items: center
}

.menu a {
	color: var(--ink);
	text-decoration: none;
	font-weight: 600;
	padding: .5rem .7rem;
	border-radius: 10px
}

.menu a:hover {
	background: rgba(27, 94, 32, .06)
}

.menu .cta {
	color: #fff;
	background: var(--brand)
}

.menu .cta:hover {
	background: var(--brand-2)
}

.burger {
	display: none;
	font-size: 1.2rem;
	border: none;
	background: transparent;
	padding: .5rem;
	cursor: pointer
}

.hero {
	position: relative;
	padding: 7rem 0 4rem
}

.grid-hero {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 3rem;
	align-items: center
}

.hero-copy .badge {
	display: inline-block;
	background: rgba(242, 140, 40, .12);
	color: var(--accent);
	font-weight: 700;
	padding: .35rem .6rem;
	border-radius: 999px;
	margin-bottom: .9rem
}

.hero h1 {
	font-family: Poppins, Inter, sans-serif;
	font-size: clamp(2rem, 1.3rem + 3vw, 3.4rem);
	line-height: 1.12;
	margin: .2rem 0 1rem
}

.hero-logo{
  width:min(420px, 80vw);
  height:auto;
  display:block;
  margin-inline:auto;
}

.hero .highlight {
	color: var(--brand)
}

.hero p {
	color: var(--muted);
	max-width: 55ch
}

.hero-cta {
	display: flex;
	gap: .8rem;
	margin-top: 1rem
}

.hero-figure {
	justify-self: center;
	text-align: center
}

.logo-ring {
	width: min(400px, 78vw);
	aspect-ratio: 1/1;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: radial-gradient(closest-side, rgba(27, 94, 32, .08), transparent 70%), conic-gradient(from 180deg, rgba(242, 140, 40, .2) 0 50%, rgba(27, 94, 32, .2) 50% 100%), #fff;
	box-shadow: var(--shadow);
	border: 1px solid rgba(27, 94, 32, .15)
}

.logo-ring img {
	width: 70%;
	height: auto;
	filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .12))
}

.hero figcaption {
	color: var(--muted);
	font-size: .95rem;
	margin-top: 1rem
}

.hero-decor {
	position: absolute;
	inset: auto 0 0 0;
	height: 120px;
	background: radial-gradient(50% 80% at 50% 0, rgba(27, 94, 32, .08), transparent)
}

.cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.4rem;
	margin-top: 1.5rem
}

.card {
	background: var(--card);
	border: 1px solid rgba(27, 94, 32, .08);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 1.4rem;
	transition: transform .2s ease, box-shadow .2s ease
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, .12)
}

.card h3 {
	margin: .6rem 0 .4rem;
	font-family: Poppins, Inter, sans-serif
}

.card p {
	color: var(--muted);
	margin: .3rem 0 1rem
}

.card .features {
	margin: 0;
	padding-left: 1.1rem
}

.card .features li {
	margin: .25rem 0
}

.icon {
	width: 64px;
	height: 64px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, rgba(27, 94, 32, .08), rgba(242, 140, 40, .08))
}

.icon svg {
	width: 40px;
	height: 40px;
	fill: none;
	stroke: var(--brand);
	stroke-width: 3
}

.icon svg .cut {
	stroke: var(--accent)
}

.icon svg .stem {
	stroke: var(--brand-2)
}

.grid-about {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 2rem;
	align-items: center
}

.about-image {
	border-radius: var(--radius);
	height: 360px;
	box-shadow: var(--shadow);
	border: 1px solid rgba(27, 94, 32, .08);
	background: radial-gradient(120% 80% at 20% 10%, rgba(27, 94, 32, .15), transparent 50%), radial-gradient(120% 80% at 80% 20%, rgba(242, 140, 40, .12), transparent 50%), linear-gradient(135deg, #f7fff9, #fff)
}

.about-copy h2 {
	margin-top: 0;
	font-family: Poppins, Inter, sans-serif
}

.bullets {
	padding-left: 1.1rem;
	margin: .5rem 0 0
}

.pillars {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.2rem;
	margin-top: 1rem
}

.pillar {
	background: var(--card);
	border-radius: var(--radius);
	padding: 1.2rem;
	box-shadow: var(--shadow);
	border: 1px solid rgba(27, 94, 32, .08)
}

.pillar .emoj {
	font-size: 1.6rem
}

.pillar h3 {
	margin: .5rem 0 .3rem;
	font-family: Poppins, Inter, sans-serif
}

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

.carousel {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	background: #fff;
	border: 1px solid rgba(27, 94, 32, .08);
	box-shadow: var(--shadow);
	aspect-ratio: 16/9;
	min-height: 360px
}

.carousel .track {
	display: flex;
	height: 100%;
	transition: transform 600ms cubic-bezier(.2, .7, .2, 1)
}

.carousel .slide {
	min-width: 100%;
	height: 100%;
	position: relative;
	user-select: none
}

.carousel .slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	background: #f6fbf8
}

.carousel .caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	color: #fff;
	font-weight: 700;
	padding: .7rem 1rem;
	font-family: Poppins, Inter, sans-serif;
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .55))
}

.carousel .control {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, .85);
	border: 1px solid rgba(0, 0, 0, .08);
	font-size: 1.6rem;
	line-height: 0;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(0, 0, 0, .12)
}

.carousel .control:hover {
	background: #fff
}

.carousel .control.prev {
	left: 10px
}

.carousel .control.next {
	right: 10px
}

.carousel .dots {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 12px;
	display: flex;
	gap: 8px;
	padding: .2rem .4rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, .5)
}

.carousel .dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 2px solid #fff;
	background: rgba(27, 94, 32, .6);
	cursor: pointer;
	opacity: .6;
	transition: opacity .2s ease, transform .2s ease
}

.carousel .dot.active {
	opacity: 1;
	transform: scale(1.1);
	background: var(--accent)
}

.lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .8);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000
}

.lightbox.open {
	display: flex
}

.lightbox .frame {
	max-width: 92vw;
	max-height: 86vh;
	position: relative
}

.lightbox img {
	max-width: 100%;
	max-height: 86vh;
	display: block;
	border-radius: 12px
}

.lightbox .lb-caption {
	color: #fff;
	text-align: center;
	margin-top: .8rem;
	font-weight: 600
}

.lightbox .lb-prev,
.lightbox .lb-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, .9);
	border: none;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.6rem
}

.lightbox .lb-prev {
	left: -56px
}

.lightbox .lb-next {
	right: -56px
}

.grid-contact {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	align-items: start
}

.contact-card {
	background: #fff;
	padding: 1.4rem;
	border-radius: var(--radius);
	border: 1px solid rgba(27, 94, 32, .08);
	box-shadow: var(--shadow)
}

.contact-card p {
	color: var(--muted)
}

.contact-list {
	padding-left: 1rem
}

.contact-form {
	background: #fff;
	padding: 1.4rem;
	border-radius: var(--radius);
	border: 1px solid rgba(27, 94, 32, .08);
	box-shadow: var(--shadow);
	display: grid;
	gap: .8rem
}

.contact-form label {
	display: grid;
	gap: .35rem;
	font-weight: 600
}

.contact-form input,
.contact-form textarea {
	border: 1.5px solid rgba(27, 94, 32, .25);
	border-radius: 12px;
	padding: .8rem;
	font: inherit;
	outline: none;
	transition: border-color .2s ease, box-shadow .2s ease
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: var(--brand);
	box-shadow: 0 0 0 .2rem rgba(27, 94, 32, .12)
}

.form-note {
	color: var(--muted);
	font-size: .9rem;
	margin: .2rem 0 0
}

.footer {
	padding: 2.2rem 0;
	border-top: 1px solid rgba(27, 94, 32, .08);
	background: #fff
}

.foot {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 1rem
}

.foot-brand {
	display: flex;
	align-items: center;
	gap: .6rem;
	color: var(--brand)
}

.foot-nav {
	display: flex;
	gap: 1rem
}

.foot-nav a {
	color: var(--ink);
	text-decoration: none;
	font-weight: 600
}

.foot small {
	justify-self: end;
	color: var(--muted)
}

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .7s ease, transform .7s ease
}

.reveal.is-visible {
	opacity: 1;
	transform: none
}

@media (max-width:980px) {
	.grid-hero {
		grid-template-columns: 1fr;
		text-align: center
	}

	.hero-cta {
		justify-content: center
	}

	.cards {
		grid-template-columns: repeat(2, 1fr)
	}

	.grid-about {
		grid-template-columns: 1fr
	}

	.pillars {
		grid-template-columns: 1fr 1fr
	}

	.grid-contact {
		grid-template-columns: 1fr
	}
}

@media (max-width:720px) {
	.cards {
		grid-template-columns: 1fr
	}

	.pillars {
		grid-template-columns: 1fr
	}

	.menu {
		display: none;
		position: absolute;
		right: 4%;
		top: 64px;
		flex-direction: column;
		background: #fff;
		padding: .6rem;
		border-radius: 12px;
		box-shadow: var(--shadow);
		border: 1px solid rgba(27, 94, 32, .08)
	}

	.menu.open {
		display: flex
	}

	.burger {
		display: block
	}

	.lightbox .lb-prev {
		left: 4px
	}

	.lightbox .lb-next {
		right: 4px
	}
}