:root {
 --green:#2E7D32;
--green-dark:#1F5A24;
--gold:#C9A227;
--gold-light:#E5C158;
 --beige:#F6F1E6;
--beige-2:#FBF7EE;
--charcoal:#1F2421;
--muted:#5b625d;
 --white:#ffffff;
--line:rgba(31,36,33,.1);
 --radius:18px;
--radius-lg:28px;
 --shadow-sm:0 6px 20px rgba(20,30,25,.06);
 --shadow-md:0 20px 60px rgba(20,30,25,.12);
 --shadow-lg:0 30px 80px rgba(20,30,25,.18);
 --f-sans:'Inter', system-ui, sans-serif;
 --f-serif:'Arial';
 --ease:cubic-bezier(.2, .7, .2, 1);
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0
}
html {
	scroll-behavior: smooth
}
body {
	font-family: var(--f-sans);
	color: var(--charcoal);
	background: var(--white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden
}
img {
	max-width: 100%;
	display: block
}
a {
	color: inherit;
	text-decoration: none
}
button {
	font-family: inherit;
	cursor: pointer;
	border: 0;
	background: none
}
.container {
	width: min(1200px, 92%);
	margin-inline: auto
}
.container.narrow {
	max-width: 900px
}
h1, h2, h3, h4 {
	font-family: var(--f-serif);
	font-weight: 600;
	letter-spacing: -.01em;
	line-height: 1.15;
	color: var(--charcoal)
}
h1 {
	font-size: clamp(2.4rem, 5.5vw, 4.6rem)
}
h2 {
	font-size: clamp(1.9rem, 3.6vw, 3rem)
}
h3 {
	font-size: 1.25rem;
	font-family: var(--f-sans);
	font-weight: 700
}
p {
	color: var(--muted)
}
.accent {
	color: var(--gold);

}
.light {
	color: #fff !important
}
.eyebrow {
	display: inline-block;
	font-size: .78rem;
	letter-spacing: .28em;
	text-transform: uppercase;
	color: var(--green);
	font-weight: 600;
	margin-bottom: 1rem
}
.eyebrow.light {
	color: var(--gold-light)
}
/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	padding: .85rem 1.6rem;
	border-radius: 999px;
	font-weight: 600;
	font-size: .95rem;
	transition: transform .3s var(--ease), box-shadow .3s, background .3s, color .3s;
	white-space: nowrap
}
.btn--primary {
	background: linear-gradient(135deg, var(--green), #3a9640);
	color: #fff;
	box-shadow: 0 10px 30px rgba(46,125,50,.35)
}
.btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 40px rgba(46,125,50,.5)
}
.btn--ghost {
	border: 1.5px solid rgba(255,255,255,.6);
	color: #fff;
	backdrop-filter: blur(6px)
}
.btn--ghost:hover {
	background: rgba(255,255,255,.12);
	border-color: #fff
}
.btn--sm {
	padding: .55rem 1.1rem;
	font-size: .85rem
}
.btn--lg {
	padding: 1rem 1.9rem;
	font-size: 1rem
}
.btn--block {
	width: 100%
}
/* NAV */
.nav {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 50;
	transition: all .35s var(--ease);
	padding: 1rem 0
}
.nav.scrolled {
	background: rgba(255,255,255,.85);
	backdrop-filter: blur(14px);
	box-shadow: var(--shadow-sm);
	padding: .5rem 0
}
.nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem
}
.brand {
	display: flex;
	align-items: center;
	gap: .7rem
}
.brand img {
	width: 90px;
	height: 60px;
	border-radius: 12px;
/*	background: var(--charcoal);*/
	padding: 4px;
	object-fit: contain
}
.brand span {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
	color: #fff;
	text-shadow: 0 2px 8px rgba(0,0,0,.35)
}
.nav.scrolled .brand span {
	color: var(--charcoal);
	text-shadow: none
}
.brand b {
	font-family: var(--f-serif);
	font-size: 1.25rem;
	font-weight: 700
}
.brand em {
	font-size: 13px;
	letter-spacing: 9.5px;
	text-transform: uppercase;
	color: var(--gold);
	font-style: normal
}
.brand--light span {
	color: #fff
}
.nav__menu {
	display: flex;
	align-items: center;
	gap: 1.7rem
}
.nav__menu a {
	color: #fff;
	font-size: .92rem;
	font-weight: 500;
	position: relative;
	text-shadow: 0 1px 4px rgba(0,0,0,.3)
}
.nav.scrolled .nav__menu a {
	color: var(--charcoal);
	text-shadow: none
}
.nav__menu a:not(.btn):after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 0;
	height: 2px;
	background: var(--gold);
	transition: width .3s
}
.nav__menu a:not(.btn):hover:after {
	width: 100%
}
.nav__toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 8px
}
.nav__toggle span {
	width: 24px;
	height: 2px;
	background: #fff;
	transition: .3s
}
.nav.scrolled .nav__toggle span {
	background: var(--charcoal)
}
/* HERO */
.hero {
	position: relative;
	height: 100vh;
	min-height: 640px;
	overflow: hidden;
	color: #fff;
	display: flex;
	align-items: center
}
.hero__slides {
	position: absolute;
	inset: 0
}
.hero__slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transform: scale(1.15);
	transition: opacity 2s ease
}
.hero__slide.is-active {
	opacity: 1;
	animation: kenburns 14s ease-in-out forwards
}
@keyframes kenburns {
 0% {
transform:scale(1.05) translate(0, 0)
}
 50% {
transform:scale(1.18) translate(-2%, -1%)
}
 100% {
transform:scale(1.25) translate(1%, 2%)
}
}
.hero__overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 30% 40%, rgba(0,0,0,.15), transparent 60%),  linear-gradient(180deg, rgba(15,25,20,.55), rgba(15,25,20,.75))
}
.hero__content {
	position: relative;
	z-index: 2;
	max-width: 900px
}
.hero__content .eyebrow {
	color: var(--gold-light)
}
.hero h1 {
	color: #fff;
	margin-bottom: 1.2rem
}
.hero p {
	color: rgba(255,255,255,.9);
	font-size: clamp(1rem, 1.3vw, 1.15rem);
	max-width: 640px;
	margin-bottom: 2rem
}
.hero__cta {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap
}
.hero__scroll {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	width: 26px;
	height: 42px;
	border: 2px solid rgba(255,255,255,.6);
	border-radius: 20px;
	display: flex;
	justify-content: center;
	padding-top: 6px
}
.hero__scroll span {
	width: 3px;
	height: 8px;
	background: #fff;
	border-radius: 2px;
	animation: scroll 1.6s infinite
}
@keyframes scroll {
0% {
transform:translateY(0);
opacity:1
}
100% {
transform:translateY(14px);
opacity:0
}
}
/* Sections */
.section {
	padding: clamp(4rem, 8vw, 7rem) 0;
	position: relative
}
.section--beige {
	background: linear-gradient(180deg, var(--beige-2), var(--beige))
}
.section--dark {
	background: linear-gradient(135deg, #0f1a15, #1a2b22);
	color: #fff
}
.section--dark p {
	color: rgba(255,255,255,.75)
}
.section__head {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 3.5rem
}
.section__head p {
	margin-top: .9rem
}
.grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: center
}
/* About */
.about__media {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg)
}
.about__media img {
	width: 100%;
	height: 560px;
	object-fit: cover;
	transition: transform 1.2s var(--ease)
}
.about__media:hover img {
	transform: scale(1.04)
}
.about__badge {
	position: absolute;
	bottom: 24px;
	left: 24px;
	background: rgba(255,255,255,.9);
	backdrop-filter: blur(12px);
	border-radius: 18px;
	padding: 1rem 1.2rem;
	display: flex;
	align-items: center;
	gap: .9rem;
	box-shadow: var(--shadow-md)
}
.about__badge b {
	font-family: var(--f-serif);
	font-size: 2rem;
	color: var(--green);
	line-height: 1
}
.about__badge span {
	font-size: .85rem;
	color: var(--charcoal);
	font-weight: 500;
	max-width: 120px
}
.ticks {
	list-style: none;
	margin: 1.5rem 0 2rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: .7rem 1.4rem
}
.ticks li {
	position: relative;
	padding-left: 1.7rem;
	font-size: .95rem;
	color: var(--charcoal)
}
.ticks li:before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	background: var(--green);
	color: #fff;
	border-radius: 50%;
	font-size: .7rem;
	display: grid;
	place-items: center;
	font-weight: 700
}
.stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--line)
}
.stat b {
	display: block;
	font-family: var(--f-serif);
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--green);
	line-height: 1
}
.stat span {
	font-size: .78rem;
	color: var(--muted);
	letter-spacing: .05em
}
/* Products */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
    justify-content: center;
    gap: 1.5rem;
}
.product {
	background: #fff;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform .5s var(--ease), box-shadow .5s;
	position: relative
}
.product:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg)
}
.product__img {
	aspect-ratio: 4/3;
	overflow: hidden;
	position: relative
}
.product__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1s var(--ease)
}
.product:hover .product__img img {
	transform: scale(1.08)
}
.product__img:after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.35))
}
.product__tag {
	position: absolute;
	top: 14px;
	left: 14px;
	background: rgba(255,255,255,.9);
	backdrop-filter: blur(10px);
	color: var(--green);
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	padding: .4rem .8rem;
	border-radius: 999px;
	z-index: 2
}
.product__body {
	padding: 1.4rem 1.5rem 1.6rem
}
.product__body h3 {
	margin-bottom: .35rem;
	font-family: var(--f-serif);
	font-size: 1.4rem;
	font-weight: 600
}
.product__body p {
	font-size: .9rem;
	margin-bottom: 1rem
}
.product__link {
	color: var(--green);
	font-weight: 600;
	font-size: .9rem;
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	transition: gap .3s
}
.product__link:hover {
	gap: .7rem;
	color: var(--gold)
}
/* Features */
.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem
}
.feature {
	padding: 2rem 1.8rem;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	transition: .4s var(--ease);
	position: relative;
	overflow: hidden
}
.feature:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--green), var(--gold));
	transform: scaleX(0);
	transform-origin: left;
	transition: .5s
}
.feature:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
	border-color: transparent
}
.feature:hover:before {
	transform: scaleX(1)
}
.feature__icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: linear-gradient(135deg, var(--beige), #fff);
	display: grid;
	place-items: center;
	font-size: 1.5rem;
	color: var(--green);
	margin-bottom: 1.1rem;
	box-shadow: inset 0 0 0 1px var(--line)
}
.feature h3 {
	margin-bottom: .5rem
}
/* Markets */
.markets {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 3rem;
	align-items: center
}
.markets__map {
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.08);
	padding: 1rem
}
.markets__map svg {
	width: 100%;
	height: auto
}
.lines path {
	stroke-dashoffset: 200;
	animation: dash 3s linear infinite
}
@keyframes dash {
to {
stroke-dashoffset:0
}
}
.markets__stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem
}
.mstat {
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.1);
	border-radius: var(--radius);
	padding: 1.4rem;
	backdrop-filter: blur(10px)
}
.mstat b {
	display: block;
	font-family: var(--f-serif);
	font-size: 2.4rem;
	color: var(--gold);
	line-height: 1
}
.mstat span {
	font-size: .85rem;
	color: rgba(255,255,255,.75)
}
.regions {
	grid-column: 1/-1;
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	margin-top: .5rem
}
.regions span {
	padding: .5rem 1rem;
	background: rgba(201,162,39,.14);
	border: 1px solid rgba(201,162,39,.35);
	border-radius: 999px;
	font-size: .8rem;
	color: var(--gold-light)
}
/* Timeline */
.timeline {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 1.5rem;
	position: relative;
	counter-reset: step
}
.timeline:before {
	content: "";
	position: absolute;
	top: 36px;
	left: 5%;
	right: 5%;
	height: 2px;
	background: linear-gradient(90deg, var(--green), var(--gold));
	opacity: .3
}
.timeline li {
	text-align: center;
	position: relative
}
.tl__dot {
	width: 72px;
	height: 72px;
	margin: 0 auto 1rem;
	background: #fff;
	border: 2px solid var(--gold);
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-size: 1.7rem;
	box-shadow: var(--shadow-sm);
	transition: .4s;
	position: relative;
	z-index: 1
}
.timeline li:hover .tl__dot {
	background: var(--green);
	border-color: var(--green);
	color: #fff;
	transform: scale(1.08)
}
.timeline h4 {
	font-family: var(--f-serif);
	font-size: 1.15rem;
	font-weight: 600;
	margin-bottom: .3rem
}
.timeline p {
	font-size: .85rem
}
/* Gallery */
.gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 180px;
	gap: 1rem
}
.g-item {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius);
	cursor: zoom-in;
	box-shadow: var(--shadow-sm)
}
.g-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .8s var(--ease)
}
.g-item:hover img {
	transform: scale(1.08)
}
.g-item:after {
	content: "⤢";
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	font-size: 2rem;
	color: #fff;
	background: rgba(0,0,0,.35);
	opacity: 0;
	transition: .3s
}
.g-item:hover:after {
	opacity: 1
}
.g-1 {
	grid-column: span 2;
	grid-row: span 2
}
.g-4 {
	grid-column: span 2
}
.g-5 {
	grid-row: span 2
}
.lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.9);
	display: none;
	place-items: center;
	z-index: 100;
	padding: 2rem
}
.lightbox.open {
	display: grid
}
.lightbox img {
	max-width: 90vw;
	max-height: 85vh;
	border-radius: 14px;
	box-shadow: var(--shadow-lg)
}
.lightbox__close {
	position: absolute;
	top: 1.5rem;
	right: 2rem;
	color: #fff;
	font-size: 2.5rem;
	cursor: pointer;
	line-height: 1
}
/* Testimonials */
.testi {
	overflow: hidden;
	position: relative;
	padding: 1rem 0
}
.testi__track {
	display: flex;
	transition: transform .8s var(--ease)
}
.t-card {
	min-width: 100%;
	padding: 0 1rem
}
.t-card p {
	font-family: var(--f-serif);
	font-size: clamp(1.2rem, 2vw, 1.7rem);
	font-style: italic;
	color: var(--charcoal);
	text-align: center;
	max-width: 800px;
	margin: 0 auto 1.5rem;
	line-height: 1.4
}
.t-card p:before {
	content: "“";
	display: block;
	font-size: 4rem;
	color: var(--gold);
	line-height: 0;
	margin-bottom: 2rem;
	text-align: center
}
.t-card footer {
	text-align: center
}
.t-card footer b {
	display: block;
	color: var(--green);
	font-weight: 700
}
.t-card footer span {
	font-size: .85rem;
	color: var(--muted)
}
.testi__dots {
	display: flex;
	justify-content: center;
	gap: .5rem;
	margin-top: 1.5rem
}
.testi__dots button {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--line);
	transition: .3s
}
.testi__dots button.active {
	background: var(--green);
	width: 26px;
	border-radius: 5px
}
.logos {
	margin-top: 4rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2.5rem;
	opacity: .55
}
.logos span {
	font-weight: 800;
	letter-spacing: .18em;
	font-size: .9rem;
	color: var(--charcoal)
}
/* FAQ */
.faq {
	display: grid;
	gap: .8rem
}
.faq details {
	background: #fff;
	border-radius: 14px;
	padding: 1.1rem 1.4rem;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--line);
	transition: .3s
}
.faq details[open] {
	box-shadow: var(--shadow-md);
	border-color: transparent
}
.faq summary {
	cursor: pointer;
	font-weight: 600;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--charcoal)
}
.faq summary::-webkit-details-marker {
display:none
}
.faq summary:after {
	content: "+";
	font-size: 1.5rem;
	color: var(--gold);
	transition: .3s;
	font-weight: 300
}
.faq details[open] summary:after {
	transform: rotate(45deg)
}
.faq p {
	margin-top: .8rem;
	font-size: .95rem
}
/* Contact */
.contact-info {
	list-style: none;
	margin-top: 2rem;
	display: grid;
	gap: 1.2rem
}
.contact-info li {
	display: grid;
	grid-template-columns: 110px 1fr;
	padding-bottom: 1.2rem;
	border-bottom: 1px solid var(--line);
	align-items: center
}
.contact-info b {
	font-size: .75rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--green)
}
.contact-info span {
	color: var(--charcoal);
	font-weight: 500
}
.form {
	padding: 2rem;
	border-radius: var(--radius-lg);
	background: rgba(255,255,255,.7);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255,255,255,.6);
	box-shadow: var(--shadow-md);
	display: grid;
	gap: 1rem
}
.glass {
	background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(246,241,230,.7));
	backdrop-filter: blur(20px)
}
.form .row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem
}
.form label {
	display: flex;
	flex-direction: column;
	gap: .4rem;
	font-size: .8rem;
	font-weight: 600;
	color: var(--charcoal);
	letter-spacing: .05em;
	text-transform: uppercase
}
.form input, .form select, .form textarea {
	padding: .85rem 1rem;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: #fff;
	font-family: inherit;
	font-size: .95rem;
	color: var(--charcoal);
	text-transform: none;
	letter-spacing: 0;
	font-weight: 400;
	transition: .3s
}
.form input:focus, .form select:focus, .form textarea:focus {
	outline: none;
	border-color: var(--green);
	box-shadow: 0 0 0 4px rgba(46,125,50,.12)
}
.form textarea {
	resize: vertical
}
.form__ok {
	display: none;
	color: var(--green);
	font-weight: 600;
	text-align: center
}
/* Footer */
.footer {
	background: #0f1a15;
	color: rgba(255,255,255,.75);
	padding: 4rem 0 1.5rem
}
.footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
	gap: 2.5rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(255,255,255,.08)
}
.footer h5 {
	color: #fff;
	font-size: .85rem;
	letter-spacing: .2em;
	text-transform: uppercase;
	margin-bottom: 1.2rem
}
.footer a {
	display: block;
	padding: .3rem 0;
	color: rgba(255,255,255,.7);
	transition: .3s
}
.footer a:hover {
	color: var(--gold)
}
.footer .muted {
	color: rgba(255,255,255,.55);
	margin: .8rem 0;
	font-size: .9rem
}
.news {
	display: flex;
	gap: .5rem;
	flex-wrap: wrap;
	margin-bottom: 1rem
}
.news input {
	flex: 1;
	min-width: 160px;
	padding: .7rem 1rem;
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 999px;
	color: #fff
}
.news input::placeholder {
color:rgba(255,255,255,.4)
}
.news .btn {
	padding: .7rem 1.2rem
}
.news__ok {
	display: none;
	color: var(--gold-light);
	font-size: .85rem
}
.social {
	display: flex;
	gap: .6rem;
	margin-top: .5rem
}
.social a {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255,255,255,.06);
	display: grid;
	place-items: center;
	padding: 0;
	font-weight: 700;
	color: #fff
}
.social a:hover {
	background: var(--gold);
	color: #0f1a15
}
.footer__base {
	display: flex;
	justify-content: space-between;
	padding-top: 1.5rem;
	font-size: .82rem;
	color: rgba(255,255,255,.45);
	flex-wrap: wrap;
	gap: 1rem
}
/* Reveal animations */
.reveal, .reveal-left, .reveal-right {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity .9s var(--ease), transform .9s var(--ease)
}
.reveal-left {
	transform: translateX(-40px)
}
.reveal-right {
	transform: translateX(40px)
}
.reveal.in, .reveal-left.in, .reveal-right.in {
	opacity: 1;
	transform: none
}

/* Responsive */
@media (max-width:960px) {
.grid-2 {
	grid-template-columns: 1fr
}
.markets {
	grid-template-columns: 1fr
}
.timeline {
	grid-template-columns: repeat(3, 1fr)
}
.timeline:before {
	display: none
}
.footer__grid {
	grid-template-columns: 1fr 1fr
}
.gallery {
	grid-template-columns: repeat(2, 1fr);
	grid-auto-rows: 160px
}
.g-1, .g-4, .g-5 {
	grid-column: auto;
	grid-row: auto
}
.ticks {
	grid-template-columns: 1fr
}
.about__media img {
	height: 420px
}
}

@media (max-width:640px) {
.nav__menu {
	position: fixed;
	top: 64px;
	right: 16px;
	left: 16px;
	flex-direction: column;
	gap: .4rem;
	background: rgba(255,255,255,.98);
	backdrop-filter: blur(20px);
	padding: 1.2rem;
	border-radius: 18px;
	box-shadow: var(--shadow-lg);
	transform: translateY(-20px);
	opacity: 0;
	pointer-events: none;
	transition: .3s;
	align-items: stretch
}
.nav__menu.open {
	transform: none;
	opacity: 1;
	pointer-events: auto
}
.nav__menu a {
	color: var(--charcoal);
	text-shadow: none;
	padding: .6rem .4rem;
	border-bottom: 1px solid var(--line)
}
.nav__menu a:last-child {
	border: 0
}
.nav__toggle {
	display: flex
}
.stats {
	grid-template-columns: 1fr 1fr;
	gap: 1.2rem
}
.markets__stats {
	grid-template-columns: 1fr 1fr
}
.timeline {
	grid-template-columns: 1fr 1fr
}
.footer__grid {
	grid-template-columns: 1fr
}
.form .row {
	grid-template-columns: 1fr
}
.hero {
	min-height: 560px
}
.contact-info li {
	grid-template-columns: 1fr
}
}
