:root {
	--white: #fff;
	--black: #000;
	--gray-dark: #1d1d1d;
	--green-primary: #7db362;
	--green-hover: #6a9b4c;
	--text-dark: #161616;
}

/* Padding options */
.pt-none {
	padding-top: 0;
}
.pt-small {
	padding-top: 1rem;
}
.pt-medium {
	padding-top: 2rem;
}
.pt-large {
	padding-top: 4rem;
}

.pb-none {
	padding-bottom: 0;
}
.pb-small {
	padding-bottom: 1rem;
}
.pb-medium {
	padding-bottom: 2rem;
}
.pb-large {
	padding-bottom: 4rem;
}

/* Text alignment */
.text-left {
	text-align: left;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}

/* Max width options */
.max-w-narrow {
	max-width: 600px;
	margin: 0 auto;
}
.max-w-normal {
	max-width: 900px;
	margin: 0 auto;
}
.max-w-wide {
	max-width: 1200px;
	margin: 0 auto;
}



.acf-container {
	max-width: 1140px;
	margin: 0 auto;
}

.acf-container-wide {
	max-width: 1440px;
	margin: 0 auto;
}

.acf-container-full {
	max-width: 100%;
	padding-left: 0;
	padding-right: 0;
}

.swiper-button-next,
.swiper-button-prev {
	color: #fff;
	top: 30%;
	width: 40px;
	height: 40px;
	background: rgba(29, 29, 29, 0.5);
	border-radius: 50%;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
	transition: background 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	background: rgba(29, 29, 29, 1);
	color: #fff;
}

.swiper-button-next::after,
.swiper-button-prev::after {
	font-size: 30px;
	font-weight: 900;
}

@media (min-width: 990px) {
	.swiper-button-next,
	.swiper-button-prev {
		display: none;
	}
}

/* Video Hero */
/* VIDEO HERO STRUCTURE */

/* WRAPPER: full-width parent */
.video-hero-wrapper {
	position: relative;
	overflow: hidden; /* optional, helps contain abs pos children */
}

/* HERO CONTAINER */
.video-hero {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-align: center;
	padding: 100px 0; /* offset for header height if needed */
}

/* BACKGROUND VIDEO WRAPPER */
.background-video-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

/* VIDEO ELEMENT */
.background-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block; /* remove any default inline spacing */
}

/* OVERLAY */
.video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 0;
}

/* CONTENT LAYER */
.video-hero-content {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 4rem 2rem;
}

/* TYPOGRAPHY + ELEMENTS */

.hero-richtext {
	text-align: center;
	color: white !important;
	margin-bottom: 2rem;
}

.hero-richtext h1 {
	color: #fff;
	font-style: italic;
	font-weight: 700;
	line-height: 64px;
	text-transform: uppercase;
}

.hero-richtext h2,
.hero-richtext h3,
.hero-richtext h4,
.hero-richtext h5,
.hero-richtext h6 {
	color: #fff;
	text-transform: none;
}

.hero-btn {
	background: #7db362;
	color: #fff;
	border: none;
	font-size: 26px;
}

.hero-btn:hover {
	background: #fff;
	color: #7db362;
}

.award-badge {
	width: 158px;
	height: 159px;
	margin: 2rem auto 0;
}

/* Icon Feature Grid */

.feature-grid {
	display: grid;
	gap: 3rem 2rem;
	margin-top: 2rem;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.feature-item {
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
	height: 100%;
}

.feature-icon {
	width: 64px;
	height: 64px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-icon img {
	width: 64px;
	height: 64px;
	object-fit: contain;
	display: block;
}

.feature-text h3 {
	margin: 0 0 0.25rem;
	font-weight: 700;
}

.feature-text p {
	margin: 0;
	font-size: 1rem;
	color: #1d1d1d;
}

.feature-text {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.text-link {
	color: var(--MZ-S1, #7db362);
	font-family: "PT Sans";
	font-size: 16px;
	font-style: italic;
	font-weight: 700;
	line-height: 20px; /* 125% */
	text-decoration: none;
	margin-top: auto;
}

@media (max-width: 990px) {
	.feature-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (max-width: 768px) {
	.feature-item {
		flex-direction: row !important;
	}

	.feature-grid {
		grid-template-columns: 1fr !important;
	}
}

/* Stats Block */
.stats-block {
	padding: 4rem 1rem;
	background: linear-gradient(135deg, var(--green-hover), var(--green-primary));
	color: white;
	text-align: center;
}

.stats-block .container {
	max-width: 1200px;
	margin: 0 auto;
}

.stats-heading {
	margin-bottom: 48px;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 2rem;
	justify-items: center;
}

/* Force 2 columns on smaller screens (e.g., max 768px) */
@media (max-width: 768px) {
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.stat-number {
	font-family: "PT Sans Narrow";
	font-size: clamp(3rem, 6vw + 1rem, 6.875rem); /* 48px–110px */
	font-style: normal;
	font-weight: 700;
	line-height: 96px; /* 100% */
	margin-bottom: 20px;
}

.stat-label {
	color: #fff;
	text-align: center;
	font-family: "PT Sans";
	font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem); /* 14px–18px */
	font-style: normal;
	font-weight: 700;
	line-height: 20px; /* 125% */
}

/* Services Block */
.services-grid-block {
	padding: 4rem 1rem;
	text-align: center;
}

.services-heading {
	font-size: clamp(1.5rem, 2vw + 1rem, 2.5rem);
	margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
	.services-grid-block .swiper-wrapper {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 2rem;
	}
}

/* Mobile override */
@media (max-width: 1024px) {
	.services-grid {
		display: block;
	}
}

.service-item {
	text-align: center;
}

@media (min-width: 990px) {
	.service-item {
		padding: 1rem;
	}
}

.service-image img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
}

.service-title {
	color: var(--green-hover);
	font-weight: 700;
	margin-top: 1rem;
	text-transform: none;
}

.service-title a {
	border: none;
}

.service-description {
	font-size: 0.95rem;
	margin-top: 0.5rem;
}

.services-button {
	margin-top: 2rem;
}

.services-grid-block .swiper-button-next,
.services-grid-block .swiper-button-prev {
	top: 50%;
	width: 60px;
	height: 60px;
	position: absolute;
}

.services-grid-block .swiper-button-next {
	right: -5px;
}

.services-grid-block .swiper-button-prev {
	left: -5px;
}

.button-outline {
	border: 1px solid black;
	padding: 0.75rem 1.5rem;
	font-size: 1rem;
	text-transform: uppercase;
	text-decoration: none;
	color: black;
	display: inline-block;
}

.button-outline:hover {
	background-color: black;
	color: white;
}

/* CTA Banner */
.cta-banner {
	position: relative;
	text-align: center;
	padding: 100px 0px;
	color: white;
}

.cta-banner__overlay {
	padding: 60px 20px;
}

.cta-banner__content {
	max-width: 1440px;
	margin: 0 auto;
}

.cta-banner__text p {
	color: var(--white, #fff);
	text-align: center;
	font-family: "PT Sans";
	font-size: 48px;
	font-style: italic;
	font-weight: 700;
	line-height: 48px; /* 100% */
	text-transform: uppercase;
}

.cta-banner__button {
	display: inline-block;
	text-decoration: none;
	padding: 20px 32px;
	transition: background 0.3s ease;
	margin-top: 50px;
	font-family: "PT Sans";
	font-size: 26px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
	letter-spacing: 3.12px;
	text-transform: uppercase;
}

.cta-banner__button:hover {
	filter: brightness(0.5);
}

/* Team Grid */
.team-grid-block {
	text-align: center;
	padding: 80px 20px;
}

.team-grid-heading {
	margin-bottom: 0.5em;
}

.team-grid-intro {
	max-width: 1080px;
	margin: 0 auto 2.5em;
	color: var(--text-dark, #161616);
	line-height: 1.6;
}

/* Mobile override */
@media (min-width: 1024px) {
	.team-grid .swiper-wrapper {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		column-gap: 22px;
		row-gap: 64px;
		justify-items: center;
		align-items: start;
	}
}

@media (min-width: 1200px) {
	.team-grid .swiper-wrapper {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
	}
}

.team-grid-block .swiper-button-next,
.team-grid-block .swiper-button-prev {
	top: 50%;
	width: 60px;
	height: 60px;
	position: absolute;
}

.team-grid-block .swiper-button-next {
	right: -5px;
}

.team-grid-block .swiper-button-prev {
	left: -5px;
}

.team-member {
	text-align: center;
	width: 320px;
}

.team-member img {
	border-radius: 312px;
	height: 312px;
	object-fit: cover;
	margin-bottom: 1rem;
	aspect-ratio: 1 / 1;
}

@media (max-width: 1400px) {
	.team-member img {
		height: 250px;
	}

	.team-member {
		width: 250px;
	}
}
.team-member h3 {
	font-family: "PT Sans Narrow";
	font-size: 29px;
	font-style: normal;
	font-weight: 700;
	line-height: 34px; /* 117.241% */
	text-transform: none;
	color: #7db362;
}

@media (max-width: 1024px) {
	.team-member img {
		height: 171px;
	}

	.team-member h3 {
		font-size: 20px;
	}
}

.team-member p {
	margin: 0;
	font-family: "PT Sans";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
	color: var(--text-dark, #161616);
}

.team-cta {
	margin-top: 64px;
}

.btn-outline {
	border: 1px solid #1d1d1d;
	background: transparent;
	padding: 12px 24px;
	text-decoration: none;
	transition: all 0.3s ease;
	color: var(--Black-bg, #1d1d1d);
	text-align: center;
	font-family: "PT Sans";
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 14px; /* 100% */
	letter-spacing: 1.68px;
	text-transform: uppercase;
}

.btn-outline:hover {
	background-color: #000;
	color: #fff;
}

/* Last Minute Block */
.last-minute-opening-bar {
	padding: 50px 0 10px 0px;
	text-align: center;
	font-weight: bold;
	background-color: #fff;
	color: var(--text-dark, #161616);
}

.last-minute-opening-bar p {
	margin-bottom: 0px;
}

.alert-text {
	font-size: clamp(1rem, 2.5vw, 1.125rem);
	margin: 0;
}

.alert-text a {
	color: var(--green-primary);
	text-decoration: none !important;
	font-weight: 700;
	border-bottom: none;
}
.alert-text a:hover {
	text-decoration: underline;
}
