@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@200..800&display=swap");

:root {
	--site-pad: 2rem;
	--display: "Bebas Neue", sans-serif;
	--body: "Manrope", sans-serif;
	--gray: #393939;
	--gray-dark: #282728;
	--green: #919957;
	--brown: #6e2f00;
	--brown-light: #c38355;
	--yellow: #edc24c;
}

/* 🔸 Reset */

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

img {
	width: 100%;
	margin: 0;
	display: block;
}
button {
	background: none;
	border: none;
	cursor: pointer;
}

/* 🔸 Typography */

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
a,
q,
span,
button,
input,
textarea,
label,
cite,
table,
details {
	font-family: var(--body);
	line-height: 1em;
}

.headline-sm {
	font-family: var(--display);
	font-size: 3.5162rem;
	margin: 0 0 0.3em 0;
	line-height: 0.9em;
}
.headline-lg {
	font-family: var(--display);
	font-size: 4.9225rem;
	margin: 0 0 0.3em 0;
	line-height: 0.9em;
}
p {
	font-size: 0.8438rem;
	line-height: 1.4063rem;
}
/* 🔸 Utility */

html {
	scroll-behavior: smooth;
}
.no-scroll {
	overflow: hidden;
	width: 100%;
}
.container {
	width: 100%;
	max-width: calc(900px + var(--site-pad) + var(--site-pad));
	margin: 0 auto;
	padding: 0 var(--site-pad);
}
.container-lg {
	width: 100%;
	max-width: calc(1500px + var(--site-pad) + var(--site-pad));
	margin: 0 auto;
	padding: 0 var(--site-pad);
}
.hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.btn {
	background: var(--green);
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 0.125em;
	font-size: 0.8125rem;
	white-space: nowrap;
	padding: 1.25em 1.875em;
	border-radius: 0.4688rem;
	display: inline-block;
}
.btn:hover,
.btn:focus-within {
	background: var(--brown-light);
}
@media screen and (max-width: 600px) {
	.btn:not(.bar .btn) {
		width: 100%;
		padding: 1.5em 2em;
	}
}
.bar {
	background: var(--gray);
	padding: 1.875rem 0;
	border-bottom: 0 solid var(--brown-light);
	transition: border 0.2s ease;
}
.bar .group {
	position: relative;

	height: 6.25rem;
}
.bar .logo {
	position: absolute;
	inset: 0 auto auto 50%;
	translate: -50% 0;
	max-width: 11.8125rem;
	transition: translate 0.2s ease, inset 0.2s ease;
}
.bar nav {
	position: absolute;
	inset: 0 auto auto 0;
	display: flex;
	transition: inset 0.2s ease, translate 0.2s ease;
}
nav > * {
	flex: 1;
}
nav a {
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 0.125em;
	font-size: 0.8125rem;
	white-space: nowrap;
	padding: 0.72em;
}
nav a:hover,
nav a:focus-within {
	color: var(--green);
}
.bar .secondary {
	position: absolute;
	inset: 0 0 auto auto;
	display: flex;
	align-items: center;
	gap: 2rem;
}
.social {
	display: flex;
	gap: 0.5rem;
}
.social a {
	width: 1.625rem;
	position: relative;
	z-index: 2;
	outline: 0 solid var(--green);
	outline-offset: 0.15rem;
	border-radius: 50%;
}

.social a:hover,
.social a:focus-within {
	outline: 3px solid var(--green);
}
@media screen and (max-width: 1230px) {
	.bar {
		border-bottom: 1.95rem solid var(--brown-light);
	}
	.bar nav {
		inset: calc(100% + 1.85rem) auto auto 50%;
		translate: -50% 0;
	}
	.bar nav a:hover,
	.bar nav a:focus-within {
		color: #fff;
		background: var(--green);
	}
}
@media screen and (max-width: 940px) {
	.bar .logo {
		inset: 0 auto auto 0;
		translate: 0 0;
	}
	.bar nav {
		inset: calc(100% + 1.85rem) auto auto -0.72em;
		translate: 0 0;
	}
}
@media screen and (max-width: 600px) {
	.bar .secondary {
		flex-direction: column-reverse;
		align-items: flex-end;
		gap: 1rem;
	}
	.bar nav {
		justify-content: space-between;
		width: 100%;
		text-align: center;
		inset: calc(100% + 1.85rem) auto auto 0;
	}
	.bar nav a {
		letter-spacing: unset;
	}
}
@media screen and (max-width: 501px) {
	.bar {
		border-bottom: 5.2rem solid var(--brown-light);
	}
	.bar nav {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
	.bar nav a {
		padding: 1.1em 0;
	}
	.btn {
		padding: 1em 1.1em;
	}
}
@media screen and (max-width: 420px) {
	.bar .logo {
		max-width: 8rem;
	}
	.bar .group {
		height: 4rem;
	}
	.bar .btn {
		font-size: 0.6rem;
	}
}

.hero {
	height: 40rem;
	background: url("./images/hero.webp") center center / cover no-repeat;
	padding: 6rem 0;
	position: relative;
	overflow: hidden;
	z-index: 2;
}
.hero .video {
	position: absolute;
	inset: 0;
	z-index: -1;
}
.hero .video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.3);
	z-index: -1;
}
.hero .txt {
	text-align: center;
}
.hero .message {
	color: #fff;
	text-transform: uppercase;
	font-size: 1.6875rem;
	letter-spacing: 0.4em;
	margin: 0 0 8rem 0;
	display: block;
}
.hero h1 div {
	display: inline-block;
}
.hero h1 span {
	font-family: var(--display);
	font-size: 4.6875rem;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	display: block;
}
.hero h1 span:nth-child(1) {
	font-size: 3.5rem;
}
.hero h1 span:nth-child(2) {
	font-size: 5.5625rem;
}
.hero h1 em {
	font-style: normal;
	position: relative;
	z-index: 2;
	display: inline-block;
}
.hero h1 em:before {
	content: "";
	position: absolute;
	inset: 100% auto auto 35%;
	width: 11.625rem;
	height: 4.4375rem;
	background: url("./images/and-spirits.svg") top center / contain no-repeat;
	z-index: -1;
}
@media screen and (max-width: 1222px) {
	.hero .message {
		margin: 0 0 6rem 0;
	}
	.hero h1 span:nth-child(1) {
		max-width: 600px;
		margin: 0 auto 3rem auto;
	}
	.hero h1 em:before {
		width: 8rem;
		height: 3rem;
	}
}
@media screen and (max-width: 645px) {
	.hero .message {
		margin: 0 0 5rem 0;
	}
}
@media screen and (max-width: 580px) {
	.hero {
		padding: 5rem 0;
		height: 32.5rem;
	}
	.hero .message {
		font-size: 1.2rem;
		margin: 0 0 4rem 0;
	}
	.hero h1 span:nth-child(1) {
		font-size: 3rem;
	}
	.hero h1 span:nth-child(2) {
		font-size: 4rem;
	}
	.hero h1 em:before {
		content: "";
		position: absolute;
		inset: 80% auto auto 0;
	}
}
@media screen and (max-width: 501px) {
	.hero .message {
		font-size: 4vw;
		margin: 0 0 4rem 0;
	}
	.hero h1 span:nth-child(1) {
		font-size: 9vw;
	}
	.hero h1 span:nth-child(2) {
		font-size: 12vw;
	}
	.hero h1 em:before {
		width: 20vw;
	}
}
.dedicated {
	background: url("./images/wood_white.webp") center center / cover no-repeat;
	padding: 2rem 0;
}
.dedicated .group {
	display: flex;
	gap: 2rem;
}
.dedicated .img {
	position: relative;
	flex: 4;
	overflow: hidden;
}
.dedicated .img img {
	width: 150%;
	height: 150%;
	object-fit: cover;
	object-position: center center;
	position: absolute;
	inset: 50% auto auto 50%;
	translate: -50% -50%;
}
.dedicated .txt {
	flex: 5;
	padding: 4rem 0;
}
.dedicated h2 {
	color: var(--brown);
}
@media screen and (max-width: 700px) {
	.dedicated .group {
		flex-direction: column-reverse;
	}
	.dedicated .img {
		height: 300px;
		flex: unset;
	}
	.dedicated .txt {
		flex: 5;
		padding: 4rem 0 1rem 0;
	}
}
.story {
	height: 100vh;
	overflow: hidden;
	position: relative;
}
.scroll .wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.scroll .arrow {
	fill: #fff;
	animation: bounce 0.5s ease infinite alternate;
}
.scroll span {
	font-size: 12px;
	letter-spacing: 1px;
	color: #fff;
}
.scroll {
	color: #fff;
	position: sticky;
	top: 2rem;
	right: auto;
	bottom: auto;
	left: auto;
	z-index: 2;
}
@keyframes bounce {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(5px);
	}
}
.story section {
	position: absolute;
	inset: 0;
}
.story .group {
	height: 100vh;
}
.source {
	background: url("./images/lettuce.webp") center bottom / cover no-repeat;
}
.source .group {
	display: flex;
	align-items: center;
	justify-content: center;
}
.source .card {
	background: rgba(255, 255, 255, 0.85);
	padding: 2.5rem;
	text-align: center;
	max-width: 31rem;
	margin: 0 auto;
}
.source h2 {
	color: var(--green);
}
.food {
	background: url("./images/salad.webp") center center / cover no-repeat;
	translate: 0 100%;
}
.food .group {
	display: flex;
}
.food .txt {
	max-width: 21.875rem;
	color: #fff;
	margin: 8.125rem 0 0 0;
}
.food h2 {
	color: var(--yellow);
}
.people {
	background: url("./images/people.webp") center center / cover no-repeat;
	translate: 0 100%;
}
.people .group {
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}
.people .txt {
	max-width: 22rem;
	color: #fff;
	margin: 0 0 5.625rem 0;
}
@media screen and (max-width: 1200px) {
	.people {
		background: url("./images/people.webp") center left / cover no-repeat;
	}
	.people .txt {
		background: rgba(145, 153, 87, 0.8);
		padding: 2.5rem;
	}
}
@media screen and (max-width: 820px) {
	.food .txt,
	.people .txt {
		background: rgba(110, 47, 0, 0.8);
		padding: 2.5rem;
		margin: auto;
		text-align: center;
		max-width: 31rem;
	}
	.people .txt {
		background: rgba(145, 153, 87, 0.8);
	}
	.food {
		background: url("./images/salad.webp") center right / cover no-repeat;
	}
	.people {
		background: url("./images/people.webp") center left -100px / cover no-repeat;
	}
}

.bar-pecan {
	background: url("./images/wood_brown.webp") center center / cover no-repeat;
	padding: 2rem 0;
}
.bar-pecan .group {
	display: flex;
	gap: 2rem;
}
.bar-pecan .img {
	position: relative;
	flex: 5;
	overflow: hidden;
}
.bar-pecan .img img {
	width: 150%;
	height: 150%;
	object-fit: cover;
	object-position: center center;
	position: absolute;
	inset: 50% auto auto 50%;
	translate: -50% -50%;
}
.bar-pecan .txt {
	flex: 4;
	padding: 4rem 0;
	color: #fff;
}
.bar-pecan p:not(:last-child) {
	margin: 0 0 1rem 0;
}
@media screen and (max-width: 700px) {
	.bar-pecan .group {
		flex-direction: column-reverse;
	}
	.bar-pecan .img {
		height: 300px;
		flex: unset;
	}
	.bar-pecan .txt {
		flex: 5;
		padding: 1rem 0 1rem 0;
	}
}
.vision {
	background: url("./images/render.webp") center center / cover no-repeat;
	padding: 200px 0;
}
.vision .txt {
	color: #fff;
	max-width: 420px;
	margin: 0 auto;
	text-align: center;
}
.vision .txt p {
	margin: 0 0 3em 0;
}

.map {
	padding: 5rem 0;
}
.map .group {
	display: flex;
	justify-content: space-between;
	gap: 2rem;
}
.map .group .txt {
	flex: 4;
}
.map .group .img {
	flex: 5;
}
.map .txt span {
	color: var(--green);
	text-transform: uppercase;
	font-size: 1.6875rem;
	margin: 0 0 0.6em 0;
	display: inline-block;
}
.map h2 {
	color: var(--brown);
	max-width: 15rem;
}
.map p {
	margin: 0 0 1.2em 0;
	max-width: 18rem;
}
.map .map_link {
	text-decoration: none;
	color: var(--gray);
	position: relative;
	display: inline-block;
	padding: 0 0 0 1.3rem;
}
.map .map_link:before {
	content: url("./images/pin.svg");
	position: absolute;
	inset: 0 auto auto 0;
	width: 14px;
}
.map .map_link:hover,
.map .map_link:focus-within {
	color: var(--brown);
}
@media screen and (max-width: 600px) {
	.map .group {
		flex-direction: column;
	}
	.map h2 {
		max-width: unset;
	}
	.map p {
		max-width: unset;
	}
}
.updates {
	padding: 4.375rem 0;
	background: url("./images/pecans.webp") center center / cover no-repeat;
}
.updates .txt {
	color: #fff;
	text-align: center;
	margin: 0 auto;
	max-width: 33.4375rem;
}
form .group {
	margin: 2rem 0;
	display: flex;
	gap: 2rem;
}
form .group > * {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
form input {
	width: 100%;
	padding: 0.6rem;
	border: 1px solid #fff;
	border-radius: 0.4688rem;
	font-size: 1rem;
}
form label {
	text-transform: uppercase;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 2px;
	margin: 0 0 1rem 0;
	display: inline-block;
}
.updates form .btn {
	min-width: 9rem;
	margin: 0 0 1rem 0;
}
.updates small {
	font-size: 0.6563rem;
}
.updates p:has(small) {
	line-height: 1em;
	text-wrap: balance;
}
@media screen and (max-width: 600px) {
	form .group {
		flex-direction: column;
	}
	form input {
		padding: 0.9rem;
	}
}
.join {
	padding: 3.75rem 0;
	position: relative;
	z-index: 2;
	overflow: hidden;
}
.join::before {
	content: "";
	position: absolute;
	inset: 50% 30% auto auto;
	translate: 0 -50%;
	width: 100vw;
	height: 100%;
	background: url("./images/pecan.svg") center left / contain no-repeat;
	opacity: 0.11;
	z-index: -1;
}
.join .group:not(form .group) {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-areas:
		"txt icons"
		"form icons";
	gap: 2rem;
}
.join h2 {
	color: var(--brown);
}
.join .txt {
	grid-area: txt;
}
.join .icons {
	grid-area: icons;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem 1rem;
	text-align: center;
	align-items: center;
	align-self: center;
}
.join .form {
	grid-area: form;
}
.join .icons .img {
	height: 86px;
	display: inline-block;
}
.join .icons .img img {
	width: auto;
	height: 100%;
}
.join .icons .txt p {
	font-size: 0.8438rem;
	text-transform: uppercase;
	font-weight: 600;
	line-height: 1.1em;
	margin: 1rem 0 0 0;
}
.join input {
	border: 1px solid var(--gray);
}
.join form .group {
	margin: 0 0 1rem 0;
}
.join form > div {
	margin: 0 0 1rem 0;
}
.join form .btn {
	margin: 2rem 0 0 0;
	min-width: 9rem;
}
@media screen and (max-width: 750px) {
	.join .group:not(form .group) {
		grid-template-columns: 1fr;
		grid-template-areas:
			"txt"
			"icons"
			"form";
		gap: 3rem;
	}
	.join .icons {
		grid-template-columns: 1fr 1fr 1fr;
		gap: 2rem 1rem;
	}
	.join::before {
		inset: 0;
		translate: unset;
		width: 100vh;
		rotate: -90deg;
		background: url("./images/pecan.svg") center center / contain no-repeat;
	}
}
@media screen and (max-width: 501px) {
	.join .icons {
		grid-template-columns: 1fr 1fr;
		gap: 2rem 1rem;
	}
}
footer {
	background: var(--gray-dark);
	padding: 2rem 0;
}
footer .group {
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #888888;
	padding: 0 0 0.5rem 0;
}
footer .logo {
	max-width: 9.5rem;
}
footer p:has(small) {
	margin: 1rem 0 0 0;
	text-align: center;
	color: #fff;
}
footer p small {
	font-size: 0.5625rem;
}
footer nav {
	display: flex;
}
@media screen and (max-width: 750px) {
	footer nav {
		display: grid;
		grid-template-columns: 1fr 1fr;
		text-align: center;
	}
}
@media screen and (max-width: 600px) {
	footer nav {
		gap: 0.5rem;
	}
	footer .group {
		flex-direction: column;
		gap: 2rem;
		padding: 0 0 2rem 0;
	}
	p {
		font-size: 1rem;
		line-height: 1.6em;
	}
}
body:has(.gallery.active) {
	overflow: hidden;
}

.gallery {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: none;
}

.gallery.active {
	display: block;
}

.gallery .close,
.gallery .close-swiper {
	position: absolute;
	inset: 1.5rem 1.5rem auto auto;
	background: var(--green);
	color: #fff;
	border-radius: 50%;
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2rem;
	z-index: 3;
	transition: scale 0.1s ease;
}
.gallery .close:active,
.gallery .close-swiper:active {
	scale: 0.9;
}

.gallery .close:hover,
.gallery .close:focus-within,
.gallery .close-swiper:hover,
.gallery .close-swiper:focus-within {
	background: var(--brown-light);
}
.gallery .close img,
.gallery .close-swiper img {
	width: 50%;
}
.gallery .bg {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
}

.gallery .wrapper {
	position: relative;
	display: grid;
	justify-content: center;
	align-items: flex-end;
	height: 100vh;
	height: 100dvh;
	padding: 5.5rem 0 0 0;
}

.gallery .group {
	width: 90vw;
	height: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	overflow-y: scroll;
	padding: 0 1rem 3rem 1rem;
}
.gallery .swiper-button-next,
.gallery .swiper-button-prev {
	transition: scale 0.1s ease;
}
.gallery .swiper-button-next:hover,
.gallery .swiper-button-prev:hover,
.gallery .swiper-button-next:focus-within,
.gallery .swiper-button-prev:focus-within {
	scale: 1.05;
}
.gallery .swiper-button-next:active,
.gallery .swiper-button-prev:active {
	scale: 0.95;
}
@media screen and (max-width: 700px) {
	.gallery .group {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media screen and (max-width: 520px) {
	.gallery .group {
		grid-template-columns: repeat(2, 1fr);
	}
}
.gallery .wrapper:has(.group + .swiper-initialized) .group,
.gallery:has(.group + .swiper-initialized) .close {
	display: none;
}
.gallery .img {
	border-radius: 0.5rem;
	position: relative;
	overflow: hidden;
	padding: 0 0 100% 0;
	cursor: pointer;
	transition: scale 0.2s ease;
	z-index: 2;
}
.gallery .img:hover,
.gallery .img:focus-within {
	outline: 2px solid #fff;
	outline-offset: -2px;
}
.gallery .img:active {
	scale: 0.95;
}

.gallery .img img {
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 50% auto auto 50%;
	translate: -50% -50%;
	object-fit: cover;
	object-position: center center;
	z-index: -1;
}
/* color scroll bar */

.gallery .group::-webkit-scrollbar-track {
	background: transparent;
}

.gallery .group::-webkit-scrollbar-thumb {
	background: var(--green);
	border-radius: 10px;
}

.gallery .group::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

.gallery .group::-webkit-scrollbar-thumb:hover {
	background: var(--brown-light);
	cursor: grab;
}
.gallery .group {
	scrollbar-width: auto;
	scrollbar-color: var(--green) transparent;
}

.gallery .group:hover {
	scrollbar-color: var(--brown-light) transparent;
}

.swiper-container {
	position: absolute;
	width: 100%;
	height: 100%;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 200;
}

.swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
}
.swiper-slide img {
	object-fit: contain;
	max-width: 100%;
	max-height: 100%;
}
.gallery .close-swiper {
	font-size: 1.3rem;
	line-height: 1;
}

.gallery .close-swiper:hover,
.gallery .close-swiper:focus-within {
	background: var(--brown-light);
}
.swiper-button-next,
.swiper-button-prev {
	color: #fff;
	filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.5));
}
.confirmation {
	font-family: var(--body);
	font-size: 0.8rem;
	line-height: 1em;
	color: #fff;
	padding: 0.5rem;
	border-radius: 50px;
	margin: 0 0 1rem 0;
	text-align: center;
	display: none;
}
