:root {
	/* Colors */
	--color-primary-green: #3B7A46;
	--color-primary-green-dark: #0F4D1E;
	--color-primary-green-darker: #1f6a2e;
	--color-green-tint-light: #DCEEE1;
	--color-green-tint-pill: #DFECE1;
	--color-green-section-bg: #ECF3ED;
	--color-white: #FFFFFF;
	--color-text-heading-gray: #2B2B28;
	--color-text-body-gray: #5C5C57;
	--color-text-muted-gray: #8A8A85;
	--color-border-light: #E3E3DF;
	--color-star-gold: #FFB400;
	/* Typography */
	--font-heading: 'Gravita GEO', sans-serif;
	--font-body: 'Gravita GEO', sans-serif;
	--font-jakarta: 'Plus Jakarta Sans', sans-serif;
	/* Spacing */
	--space-xs: 8px;
	--space-sm: 16px;
	--space-md: 24px;
	--space-lg: 40px;
	--space-xl: 64px;
	--space-2xl: 96px;
	/* Radius */
	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 20px;
	--radius-pill: 999px;
	/* Layout */
	--container-max: 1200px;
}

@font-face {

	font-family: 'Gravita GEO';

	src: url('https://thechefmates.com/wp-content/themes/chefmate/assets/fonts/GravitaGEO-Bold.eot');

	src: url('https://thechefmates.com/wp-content/themes/chefmate/assets/fonts/GravitaGEO-Bold.eot?#iefix') format('embedded-opentype'),

		url('https://thechefmates.com/wp-content/themes/chefmate/assets/fonts/GravitaGEO-Bold.woff2') format('woff2'),

		url('https://thechefmates.com/wp-content/themes/chefmate/assets/fonts/GravitaGEO-Bold.woff') format('woff'),

		url('https://thechefmates.com/wp-content/themes/chefmate/assets/fonts/GravitaGEO-Bold.ttf') format('truetype'),

		url('https://thechefmates.com/wp-content/themes/chefmate/assets/fonts/GravitaGEO-Bold.svg#GravitaGEO-Bold') format('svg');

	font-weight: bold;

	font-style: normal;

	font-display: swap;
}

@font-face {

	font-family: 'Gravita GEO';

	src: url('https://thechefmates.com/wp-content/themes/chefmate/assets/fonts/GravitaGEO-Light.eot');

	src: url('https://thechefmates.com/wp-content/themes/chefmate/assets/fonts/GravitaGEO-Light.eot?#iefix') format('embedded-opentype'),

		url('https://thechefmates.com/wp-content/themes/chefmate/assets/fonts/GravitaGEO-Light.woff2') format('woff2'),

		url('https://thechefmates.com/wp-content/themes/chefmate/assets/fonts/GravitaGEO-Light.woff') format('woff'),

		url('https://thechefmates.com/wp-content/themes/chefmate/assets/fonts/GravitaGEO-Light.ttf') format('truetype'),

		url('https://thechefmates.com/wp-content/themes/chefmate/assets/fonts/GravitaGEO-Light.svg#GravitaGEO-Light') format('svg');

	font-weight: 300;

	font-style: normal;

	font-display: swap;
}

@font-face {

	font-family: 'Gravita GEO';

	src: url('https://thechefmates.com/wp-content/themes/chefmate/assets/fonts/GravitaGEO-Medium.eot');

	src: url('https://thechefmates.com/wp-content/themes/chefmate/assets/fonts/GravitaGEO-Medium.eot?#iefix') format('embedded-opentype'),

		url('https://thechefmates.com/wp-content/themes/chefmate/assets/fonts/GravitaGEO-Medium.woff2') format('woff2'),

		url('https://thechefmates.com/wp-content/themes/chefmate/assets/fonts/GravitaGEO-Medium.woff') format('woff'),

		url('https://thechefmates.com/wp-content/themes/chefmate/assets/fonts/GravitaGEO-Medium.ttf') format('truetype'),

		url('https://thechefmates.com/wp-content/themes/chefmate/assets/fonts/GravitaGEO-Medium.svg#GravitaGEO-Medium') format('svg');

	font-weight: 500;

	font-style: normal;

	font-display: swap;
}

@font-face {

	font-family: 'Gravita GEO';

	src: url('https://thechefmates.com/wp-content/themes/chefmate/assets/fonts/GravitaGEO-Regular.eot');

	src: url('https://thechefmates.com/wp-content/themes/chefmate/assets/fonts/GravitaGEO-Regular.eot?#iefix') format('embedded-opentype'),

		url('https://thechefmates.com/wp-content/themes/chefmate/assets/fonts/GravitaGEO-Regular.woff2') format('woff2'),

		url('https://thechefmates.com/wp-content/themes/chefmate/assets/fonts/GravitaGEO-Regular.woff') format('woff'),

		url('https://thechefmates.com/wp-content/themes/chefmate/assets/fonts/GravitaGEO-Regular.ttf') format('truetype'),

		url('https://thechefmates.com/wp-content/themes/chefmate/assets/fonts/GravitaGEO-Regular.svg#GravitaGEO-Regular') format('svg');

	font-weight: normal;

	font-style: normal;

	font-display: swap;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: clip;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-text-body-gray);
	background: var(--color-white);
	overflow-x: clip;
}

h1,
h2,
h3,
h4 {
	margin: 0;
	font-family: var(--font-heading);
	color: var(--color-text-heading-gray);
}

h2 {
	font-size: 34px;
	color: var(--color-primary-green-dark);
}

h3 {
	font-size: 22px;
	font-weight: 700;
}

h4 {
	font-size: 18px;
	font-weight: 700;
}

p {
	margin: 0;
}

a {
	color: var(--color-primary-green);
	text-decoration: none;
}

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

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

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

.eyebrow {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #1F6A2E;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 28px 12px;
	border-radius: var(--radius-pill);
	font-size: 24px;
	font-weight: normal;
	border: 1px solid transparent;
	cursor: pointer;
	text-decoration: none;
	line-height: 20px;
}

.btn-primary {
	background: var(--color-primary-green);
	color: var(--color-white);
}

.btn-primary:hover {
	opacity: 0.8;
	background: var(--color-primary-green);
	border: 1px solid var(--color-primary-green);
}

.btn-outline {
	background: var(--color-white);
	color: var(--color-text-heading-gray);
	border-color: var(--color-border-light);
}

.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background-color: #000;
	padding-bottom: 56px;
	padding-top: 77px;
	margin-top: -77px;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(8deg, rgb(0 0 0 / 45%) 0%, rgba(26, 26, 26, 0) 100%);
}

/* .hero .container {

     display: flex;

     align-items: flex-end;

     height: 100%;

     margin-top: auto;

}

 */

.hero-video {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-content {
	position: relative;
	z-index: 2;
	padding: 0 var(--space-lg);
	color: var(--color-white);
}

.hero-content h1 {
	font-family: 'Gravita GEO';
	margin: 0 0 var(--space-md);
	font-size: 72px;
	font-weight: 300;
	line-height: 1.15;
	color: var(--color-white);
	text-shadow: 0px 0px 8px #000000c7;
}

.hero-content h1 strong {
	font-weight: 500;
}

.hero-content p {
	margin: 0 0 var(--space-md);
	font-size: 24px;
	font-weight: 300;
	line-height: 1.6;
	color: var(--color-white);
}

.hero-content .hero-label {
	margin-bottom: 8px;
}

.store-badges {
	display: flex;
	flex-wrap: nowrap;
	gap: var(--space-sm);
}

.store-badges .badge {
	display: flex;
	align-items: center;
	gap: var(--space-xs);
	padding: 8px 20px;
	background: #000;
	color: var(--color-white);
	border-radius: var(--radius-pill);
	text-decoration: none;
}

.store-badges .badge svg {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	fill: currentColor;
}

.store-badges .badge span {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.store-badges .badge span small {
	font-size: 11px;
}

.store-badges .badge span strong {
	font-size: 17px;
	font-weight: 600;
}

@media (max-width: 768px) {

	.hero .hero-content {
		padding: 0 var(--space-md);
	}

	.hero .hero-content h1 {
		font-size: 34px;
	}
}

.trust-bar {
	background: var(--color-primary-green-darker);
	padding: 12px 0;
	position: relative;
}

.trust-bar::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 166px;
	/* adjust width */
	height: 100%;
	pointer-events: none;
	z-index: 1;
	   background: linear-gradient(
        to right,
        rgba(31, 106, 46, 0.9) 0%,
        rgba(31, 106, 46, 0) 100%
    );
 
}

.trust-bar .owl-stage {
	display: flex;
	align-items: center;
}

.trust-bar-carousel .item {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	padding: 24px 0;
}

.trust-bar-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 88px;
	height: 88px;
	padding: 16px;
	flex-shrink: 0;
	border-radius: var(--radius-pill);
	background: var(--color-white);
	color: var(--color-primary-green);
	font-size: 20px;
}

.trust-bar-carousel .item p {
	margin: 0;
	color: var(--color-white);
}

.trust-bar-carousel .item p .tl {
	display: block;
	font-size: 20px;
	font-weight: normal;
	color: #FFFFFF;
}

.trust-bar-carousel .item p span {
	display: block;
	margin-top: 2px;
	font-size: 16px;
	font-weight: normal;
	color: #FFFFFF;
}

.trust-bar-carousel .owl-stage-outer {
	padding: 4px 0;
}

.cooks {
	padding: var(--space-2xl) 0 32px;
}

.cooks-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--space-md);
	margin-bottom: var(--space-lg);
}

.cooks-header h2 {
	font-family: 'Gravita GEO';
	margin-top: var(--space-xs);
	color: var(--color-text-heading-gray);
	font-weight: 300;
	font-size: 48px;
}

.cooks-header h2 strong {
	color: var(--color-primary-green-dark);
	font-weight: 700;
}

.cooks-header .cooks-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
	font-weight: normal;
	white-space: nowrap;
	font-size: 24px;
	color: #178626;
}

.cooks-header .cooks-link i {
	font-size: 14px;
}

.cooks-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-md);
	margin-bottom: var(--space-lg);
}

.cook-card img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	border-radius: var(--radius-md);
	margin-bottom: var(--space-sm);
}

.cook-card-name {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 4px;
	font-size: 24px;
	font-weight: normal;
	color: #1F1F1F;
}

.cook-card-name .bi-star-fill {
	color: var(--color-star-gold);
	font-size: 14px;
}

.cook-card-name small {
	font-weight: normal;
	color: var(--color-text-muted-gray);
}

.cook-card-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-sm);
	margin-bottom: 2px;
	font-size: 18px;
	color: #000;
	font-weight: 300;
}

.cook-card-meta strong {
	font-weight: normal;
	color: #000;

}

.cook-card-tags {
	font-size: 18px;
	color: #656565;
	font-weight: 300;
	margin-bottom: 8px;
}

.diet-tags {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--space-sm);
	margin-bottom: var(--space-lg);
	font-size: 16px;
	font-weight: 300;
}

.diet-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	background: var(--color-green-tint-pill);
	color: #084414;
	border-radius: var(--radius-pill);
	font-size: 14px;
}

.diet-tag .bi-check-lg {
	color: var(--color-primary-green);
}

.cooks-cta {
	display: flex;
	justify-content: center;
}

@media (max-width: 576px) {

	.cooks-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.cooks-grid {
		grid-template-columns: 1fr;
	}
}

.trust-badges {
	background: #F2F7F3;
	padding: 50px 0 50px;
}

.trust-badge {
	padding: 16px 0;
}

.trust-badges-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-lg);
	text-align: center;
}

.trust-badge-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 8px;
}

.trust-badge-heading {
	display: inline-flex;
	align-items: center;
	font-family: var(--font-heading);
	gap: 6px;
	margin: 0 0 var(--space-xs);
	padding-bottom: 10px;
	border-bottom: 1px solid var(--color-border-light);
	font-size: 24px;
	font-weight: 500;
	color: #084414;
}

.trust-badge-heading::after {
	content: '';
	width: 16px;
	height: 16px;
	background: url('../images/check_circle.svg') no-repeat center / contain;
}

.trust-badge-text {
	margin: 0;
	font-size: 18px;
	color: #2A2A2A;
}

@media (max-width: 768px) {

	.trust-badges-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {

	.trust-badges-grid {
		grid-template-columns: 1fr;
	}
}

/* ===== Section wrapper ===== */

.how-it-works {
	padding-bottom: 80px;
	padding-top: 200px;
	background: var(--color-white);
	position: relative;
}

.how-it-works .spin-bowl {

	position: absolute;
	top: -117px;
	right: 0;
	width: 670px;
	height: 670px;
	background: url(http://www.bluereeftech.com/chefmate/wp-content/uploads/2026/07/spinwheel-bowls.png) no-repeat;
	background-size: contain;
	transform: translateX(62%);
}

.how-it-works .spin-bowl {
	animation: spinBowls 50s linear infinite;
	animation-play-state: paused;
}

.how-it-works .spin-bowl:hover {
	animation-play-state: running;
}

@keyframes spinBowls {

	from {
		transform: translateX(62%) rotate(0deg);
	}

	to {
		transform: translateX(62%) rotate(360deg);
	}
}

/* ===== Header ===== */

.hiw-header {
	text-align: center;
	max-width: 620px;
	margin: 0 auto 48px;
}

.hiw-eyebrow {
	font-size: 16px !important;
	font-weight: normal;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #1F6A2E !important;
	margin: 0 0 8px;
	font-weight: 500;
}

.hiw-header h2 {
	font-size: 48px;
	font-weight: 500;
	color: #084414;
	margin: 0 0 16px;
	line-height: 1.15;
}

.hiw-header p {
	font-size: 16px;
	line-height: 1.6;
	color: #000000;
	margin: 0;
	font-weight: normal;
	margin-bottom: 8px;
	font-weight: 300;
}

/* ===== Steps grid ===== */

.steps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-md);
	margin-bottom: 48px;
}

.step-head {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	margin-bottom: var(--space-sm);
}

.step-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	flex-shrink: 0;
	display: block;
	object-fit: cover;
	padding: 10px;
	background-color: #DFECE1;
}

.step-head h3 {
	font-family: var(--font-heading) !important;
	font-size: 19px;
	font-weight: 500 !important;
	color: #1F1F1F;
	margin: 0;
}

/* ===== Media / photo block ===== */

.step-media {
	position: relative;
	margin-bottom: var(--space-md);
}

.step-media img.step-photo {
	width: 100%;
	aspect-ratio: 1.36 / 1;
	object-fit: cover;
	border-radius: var(--radius-lg);
	display: block;
	background: var(--color-green-section-bg);
}

/* ===== Floating notification card ===== */

.notif-card {
	position: absolute;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	background: var(--color-white);
	border: 1px solid var(--color-border-light);
	border-radius: var(--radius-md);
	padding: 8px 12px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.10);
	max-width: 170px;
}

.notif-card.top {
	top: -14px;
	right: 16px;
}

.notif-card.bottom {
	bottom: -14px;
	right: -6px;
}

.notif-badge {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--color-primary-green);
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	font-size: 11px;
	margin-top: 1px;
}

.notif-text {
	display: flex;
	flex-direction: column;
}

.notif-text strong {
	font-size: 12px;
	color: var(--color-text-heading-gray);
	line-height: 1.3;
}

.notif-text span {
	font-size: 11px;
	color: var(--color-text-muted-gray);
	line-height: 1.3;
}

/* ===== Check list (per-step) ===== */

.check-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.check-list li {
	position: relative;
	font-size: 18px;
	line-height: 1.6;
	color: #2A2A2A;
	padding-left: 28px;
	margin-bottom: 10px;
	font-weight: 300;
}

.check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	background-image: url('../images/check.svg');
	width: 20px;
	height: 20px;
}

.check-list li:last-child {
	margin-bottom: 0;
}

/* ===== Bottom feature pills ===== */

.pill-rows {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-sm);
}

.pill-line {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 15px;
	width: 750px;
	max-width: 100%;
}

.pill-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 300;
	color: #084414;
	white-space: nowrap;
}

.pill-item::before {
	content: "";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: url(../images/check_circle.svg);
	flex-shrink: 0;
	background-size: contain;
}

/* ===== Top row: copy + featured image ===== */

.craving {
	padding-top: 150px;
	padding-bottom: 100px;
}

.craving-top {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--space-xl);
	margin-bottom: 32px;
	flex-wrap: wrap;
	position: relative;
}

.craving-copy {
	flex: 1 1 520px;
	max-width: 520px;
}

.craving-eyebrow {
	font-size: 16px !important;
	font-weight: 500 !important;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #1F6A2E;
	margin: 0 0 4px !important;
}

.craving-copy h2 {
	font-size: 48px;
	font-weight: 500;
	color: #084414;
	margin: 0 0 4px;
	line-height: 1.2;
}

.craving-copy p {
	font-size: 24px;
	line-height: 1.3;
	color: #656565;
	;
	margin: 0;
	font-weight: 300;
}

.craving-feature {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: var(--space-sm);
	flex-shrink: 0;
	position: relative;

}

.craving-feature img {
	min-width: 315px;
	height: 296px;
	object-fit: contain;
	border-radius: var(--radius-lg);
	display: block;
	position: absolute;
	bottom: 33px;
	right: 55%;
}

.learn-more {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 24px;
	font-weight: normal;
	color: #178626;
	text-decoration: none;
}

.learn-more:hover {
	color: var(--color-primary-green-dark);
}

.learn-more svg {
	width: 14px;
	height: 14px;
	transition: transform .2s ease;
}

.learn-more:hover svg {
	transform: translateX(3px);
}

/* ===== Cards grid ===== */

.craving-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-md);
}

.craving-card {
	text-align: center;
}

.card-media,
.card-step-media {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 0.821;
	border-radius: var(--radius-md);
	overflow: hidden;
	background: var(--color-green-section-bg);
}

.card-media img,
.card-step-media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity .5s ease, transform .5s ease;
}

.card-media img.img-hover,
.card-step-media img.img-hover {
	opacity: 0;
}

.craving-card:hover .card-media img.img-base,
.step-media:hover .card-step-media img.img-base {
	opacity: 0;
}

.craving-card:hover .card-media img.img-hover,
.step-media:hover .card-step-media img.img-hover {
	opacity: 1;
	transform: scale(1.04);
}

.craving-card:hover .card-media img.img-base,
.step-media:hover .card-step-media img.img-base {
	transform: scale(1.04);
}

.card-icon {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	margin: var(--space-md) auto 40px;
	display: block;
	padding: 25px 22px;
	background: #1F6A2E;
}

.craving-card h4 {
	font-size: 24px;
	font-weight: normal;
	color: #084414;
	margin: 0 0 8px;
}

.card-price {
	font-size: 20px;
	color: #000000;
	margin: 0 0 8px;
	font-weight: 300;
}

.card-desc {
	font-size: 16px;
	line-height: 1.5;
	color: #656565;
	margin: 0;
	max-width: 200px;
	margin-left: auto;
	margin-right: auto;
	font-weight: 300;
}

/* ===== CTA Banner section ===== */

.cta-banner {
	background: url(../images/CTA-background.png);
	background-size: cover;
}
.cta-banner.blog-cta {
background: url(../images/blog-cta-background.png);
}

.cta-frame {
	position: relative;
	display: flex;
	overflow: hidden;
	height: 644px;
	align-items: center;
	justify-content: flex-end;
}

.cta-frame img {
	width: 50%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.cta-frame .cta-badges {
	flex-wrap: nowrap;
	flex-direction: row;
}

/* Overlapping green card. The frame is full-bleed, but the card stays aligned with the container's content width so it doesn't drift toward the viewport edge on very wide screens. */

.cta-card {
	position: absolute;
	width: 500px;
	max-width: 100%;
	border-radius: var(--radius-lg);
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: var(--color-white);	
	border: 2px solid #3BAA4A;
	background: linear-gradient(120deg, rgba(31, 106, 46, 0.65) 29.95%, rgba(59, 170, 74, 0.65) 116.86%);
	box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.60);
	 backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.cta-card h2 {
	margin: 0 0 var(--space-md);
	font-size: 36px;
	line-height: 1.15;
	font-weight: normal;
	color: #fff;
}

.cta-card h2 strong {
	display: block;
	font-weight: 700;
}

.cta-card p {
	margin: 0 0 var(--space-sm);
	font-size: 14px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.92);
}

.cta-card p:last-of-type {
	margin-bottom: var(--space-md);
}

.cta-badges {
	display: flex;
	gap: var(--space-sm);
}

.store-badge {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	line-height: 1.15;
	width: 100%;
}

.store-badge img {
	width: 100%;
}

.faq-section {
	background: var(--color-white);
	padding-top: 200px;
	/* padding-bottom: 200px; */
}

.faq2__tabs {
	display: flex;
	background: #FBFBFB;
	border-radius: 10px;
	margin-bottom: 20px;
}

.faq2__tab {
	flex: 1;
	text-align: center;
	padding: 14px 0 11px;
	font-size: 20px;
	font-weight: normal;
	color: #B5B5B5;
	background: none;
	border: none;
	border-bottom: 2px solid transparent;
	cursor: pointer;
	font-family: 'Inter', sans-serif;
	transition: color .2s ease;
}

.faq2__tab.is-active {
	color: #000;
	border-bottom-color: #1F6A2E;
}

.faq2__tab:focus-visible {
	outline: 2px solid #1F6A2E;
	outline-offset: -2px;
}

/* Tab panels */

.faq2__panel {
	display: none;
}

.faq2__panel.is-active {
	display: block;
}

.faq-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: var(--space-xl);
	align-items: start;
}

/* ===== Left column ===== */

.faq-left {
	position: relative;
}

.faq-eyebrow {
	font-size: 16px;
	font-weight: normal;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #1F6A2E;
	margin: 0 0 6px;
}

.faq-left h2 {
	font-size: 48px;
	font-weight: 500;
	color: #084414;
	line-height: 1.2;
	margin: 0 0 40px;
}

.chili-deco {
	position: absolute;
	top: -119px;
	right: 24px;
	width: 122px;
	pointer-events: none;
}

/* ===== Phone mockup ===== */

.phone-wrap {
	position: relative;
}

.phone-content {
	color: #656565;
	z-index: 1;
	text-align: center;
	position: relative;
	display: flex;
	flex-direction: column;
	font-size: 18px;
	font-weight: 300;
	margin-top: 40px;
}

.phone-content a {
	font-weight: 500;
	color: #178626;
}

.phone-frame {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	border: 10px solid var(--color-primary-green-darker);
	border-radius: 40px;
	background: var(--color-white);
	padding: var(--space-md) var(--space-md) 0;
}

.phone-header {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-bottom: var(--space-sm);
	border-bottom: 1px solid var(--color-border-light);
	font-size: 16px;
	font-weight: 600;
	color: var(--color-text-heading-gray);
}

.phone-header .close-x {
	font-size: 16px;
	color: var(--color-text-heading-gray);
	line-height: 1;
}

.phone-progress {
	display: flex;
	justify-content: center;
	gap: 6px;
	padding: var(--space-md) 0 var(--space-md);
}

.phone-progress span {
	width: 34px;
	height: 6px;
	border-radius: var(--radius-pill);
	background: var(--color-green-tint-pill);
}

.phone-progress span.active {
	background: var(--color-primary-green);
}

.phone-body h3 {
	font-size: 19px;
	font-weight: 700;
	color: var(--color-text-heading-gray);
	margin: 0 0 6px;
}

.phone-body>p {
	font-size: 14px;
	color: var(--color-text-body-gray);
	margin: 0 0 var(--space-md);
}

.cuisine-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 4px 0;
}

.cuisine-grid img {
	width: 100%;
	display: block;
}

/* ===== Right column: accordion ===== */

.faq-list {
	display: flex;
	flex-direction: column;
}

.faq-item {
	border-bottom: 1px solid var(--color-border-light);
	padding: var(--space-md) 0;
}

.faq-item:first-child {
	padding-top: 0;
}

.faq-q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-md);
	cursor: pointer;
	background: none;
	border: none;
	width: 100%;
	text-align: left;
	padding: 0;
	font-size: 24px;
	font-weight: 300;
	color: #084414;
	font-family: inherit;
}

.faq-toggle {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.faq-toggle::before,
.faq-toggle::after {
	content: "";
	position: absolute;
	background: var(--color-text-muted-gray);
	transition: transform .2s ease, background .2s ease;
}

.faq-toggle::before {
	width: 12px;
	height: 2px;
}

.faq-toggle::after {
	width: 2px;
	height: 12px;
}

.faq-item.open .faq-q {
	color: var(--color-primary-green-darker);
	font-weight: 700;
	color: #084414;
}

.faq-item.open .faq-toggle::before,
.faq-item.open .faq-toggle::after {
	background: var(--color-primary-green);
}

.faq-item.open .faq-toggle::after {
	transform: scaleY(0);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height .25s ease;
}

.faq-item.open .faq-answer {
	max-height: 550px;
}

.faq-answer p {
	font-size: 20px;
	font-weight: 300;
	line-height: 160%;
	color: #656565;
	margin: var(--space-sm) 0 0;
	width: 100%;
}

.faq-answer a {
	color: #178626;
	text-decoration: underline;
}

.see-all {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-top: var(--space-md);
	font-size: 24px;
	font-weight: 400;
	color: #178626;
	text-decoration: none;
}

.see-all svg {
	width: 14px;
	height: 14px;
	transition: transform .2s ease;
}

.see-all:hover svg {
	transform: translateX(3px);
}

.become-cook,
.become-cook * {
	box-sizing: border-box;
}

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

.become-cook {
	position: relative;
	padding: var(--space-2xl) 0;
	background: var(--color-white);
	font-family: var(--font-sans);
	overflow: hidden;
	/* keeps the rosemary decoration from causing scroll-x */
	;
}

/* ===== Header block ===== */

.become-cook__header {
	position: relative;
	text-align: center;
	max-width: 640px;
	margin: 0 auto var(--space-xl);
}

.become-cook__deco {
	position: absolute;
	top: -28px;
	right: -140px;
	width: 160px;
	pointer-events: none;
}

.become-cook .eyebrow {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #1F6A2E;
	margin: 0 0 var(--space-xs);
}

.become-cook__header h2 {
	font-size: 48px;
	font-weight: 300;
	color: #084414;
	line-height: 1.25;
	margin: 0 0 20px;
}

.become-cook__header h2 strong {
	display: block;
	font-weight: 500;
}

.become-cook__subtitle {
	font-size: 24px;
	line-height: 140%;
	color: #808080;
	margin: 0;
	font-weight: 300;
}

/* ===== Photo + form panel ===== */

.become-cook__panel {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: flex-start;
}

.become-cook__media img {
	width: 100%;
	aspect-ratio: 1.05 / 1;
	object-fit: cover;
	border-radius: var(--radius-lg);
	display: block;
}

.become-cook__form-wrap h3 {
	font-size: 32px;
	font-weight: 600;
	color: #000;
	margin: 0 0 var(--space-sm);
}

.become-cook__form-intro {
	font-size: 20px;
	line-height: 1.6;
	color: #000;
	margin: 0 0 46px;
	max-width: 380px;
	font-weight: 300;
}

/* ===== Form ===== */

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: var(--space-md);
}

.from-row-full {
	grid-template-columns: 1fr;
}

.form-field label {
	display: block;
	font-size: 16px;
	font-weight: 300;
	color: #2A2A2A;
	margin-bottom: 6px;
}

.form-field input {
	width: 100%;
	font-family: inherit;
	font-size: 14px;
	color: var(--color-text-heading-gray);
	background: var(--color-white);
	border: 1px solid var(--color-border-light);
	border-radius: var(--radius-sm);
	padding: 10px 14px;
	outline: none;
	transition: border-color .15s ease;
}

.form-field input::placeholder {
	color: var(--color-text-muted-gray);
}

.form-field input:focus {
	border-color: var(--color-primary-green);
}

.cook-form__consent {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 13px;
	color: var(--color-text-body-gray);
	margin-bottom: var(--space-md);
	cursor: pointer;
}

.cook-form__consent input[type="checkbox"] {
	margin-top: 2px;
	width: 15px;
	height: 15px;
	accent-color: var(--color-primary-green);
	flex-shrink: 0;
}

.cook-form__consent a {
	color: var(--color-primary-green);
	font-weight: 600;
	text-decoration: underline;
}

.btn-apply {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: inherit;
	font-size: 15px;
	font-weight: normal;
	color: var(--color-white);
	background: var(--color-primary-green-darker);
	border: none;
	border-radius: var(--radius-pill);
	padding: 12px 26px;
	cursor: pointer;
	transition: background .15s ease;
	width: auto !important;
}

.btn-apply:hover {
	background: var(--color-primary-green-dark);
}

.btn-apply svg {
	width: 16px;
	height: 16px;
}

.site-footer__top {
	background: linear-gradient(to bottom, #ffffff 22%, #c8e0cc 100%);
	padding: var(--space-xl) 0 var(--space-lg);
}

.follow-us {
	text-align: center;
	font-size: 24px;
	font-weight: 500;
	color: var(--color-text-heading-gray);
	margin: 0 0 var(--space-md);
}

.social-row {
	display: flex;
	justify-content: center;
	gap: var(--space-sm);
	margin-bottom: var(--space-xl);
}

.social-row a {
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #178626;
	color: var(--color-white);
	text-decoration: none;
}

.social-row a svg {
	width: 34px;
	height: 34px;
}

.social-row a.is-round {
	border-radius: 50%;
}

.social-row a.is-square {
	border-radius: 9px;
}

/* ===== Footer columns row ===== */

.footer-columns {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: var(--space-xl);
	flex-wrap: wrap;
}

.footer-brand {
	max-width: 300px;
}

.footer-brand__logo {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: var(--space-sm);
}

.footer-brand__logo img {
	width: 150px;
}

.footer-brand p {
	font-size: 16px;
	line-height: 1.6;
	color: #656565;
	margin: 0 0 15px;
}
.footer-brand p br{
	display: none;
}

.footer-brand a.email {
	font-size: 20px;
	font-weight: normal;
	color: #178626;
	text-decoration: none;
}

.footer-brand a.email:hover {
	text-decoration: underline;
}

.footer-link-groups {
	display: flex;
	gap: var(--space-2xl);
	flex-wrap: wrap;
}

.footer-link-col h4 {
	font-size: 20px;
	font-weight: 600;
	color: #084414;
	margin: 0 0 var(--space-sm);
}

.footer-link-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-link-col li {
	margin-bottom: 10px;
}

.footer-link-col li:last-child {
	margin-bottom: 0;
}

.footer-link-col a {
	font-size: 16px;
	color: #656565;
	text-decoration: none;
}

.footer-link-col a:hover {
	color: var(--color-primary-green-darker);
}

/* ===== Footer bottom bar (dark green) ===== */

.site-footer__bottom {
	background: var(--color-primary-green-darker);
	padding: var(--space-sm) 0;
}

.footer-bottom-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--space-sm);
}

.footer-bottom-row span,
.footer-bottom-row a {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
}

.footer-bottom-row a:hover {
	color: var(--color-white);
}

.footer-bottom-row .legal a+a {
	margin-left: 8px;
}

.footer-bottom-row .legal a {
	border-left: 1px solid rgba(255, 255, 255, 0.35);
	padding-left: 8px;
}

.footer-bottom-row .legal a:first-child {
	border-left: none;
	padding-left: 0;
}

.modal-dialog {
	max-width: 453px;
	width: calc(100% - 36px);
	margin: 0 auto;
}

.modal-content {
	border: none;
	border-radius: 24px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
	padding: 8px;
}

.modal-header {
	border-bottom: none;
	padding: 28px 28px 0;
	align-items: flex-start;
}

.modal-title.fs-5 {
	font-family: 'Inter', sans-serif;
	font-size: 32px !important;
	font-weight: 500;
	color: #000000;
	line-height: 1.3;
	margin: 0;
}

.btn-close {
	display: block;
	position: relative;
	right: -15px;
	top: -15px;
	/* not shown in the reference design */
	;
}

.modal-body {
	padding: 8px 28px 0px;
}

.modal-body>p {
	font-size: 16px;
	color: #000;
	line-height: 1.55;
	margin: 4px 0 15px;
	font-weight: 300;
}



/* ===================== Contact Form 7 field styling ===================== */

.wpcf7-form {
	display: block;
}

.wpcf7-form fieldset.hidden-fields-container {
	display: none;
}



/* Each field is wrapped in a <p> by CF7 */

.wpcf7-form>p {
	margin: 0 0 18px;
}

.wpcf7-form label {
	display: block;
	font-size: 16px;
	font-weight: 300;
	color: #2A2A2A;
	margin-bottom: 8px;
}

.wpcf7-form-control-wrap {
	display: block;
}

.wpcf7-form-control:not(.btn-apply):not(.wpcf7-acceptance) {
	width: 100%;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	color: #0D0D0D;
	background: #FFFFFF;
	border-radius: 10px;
	padding: 12px 14px;
	outline: none;
	transition: border-color .2s ease;
	border: 1px solid #E1E1E1;
}

.wpcf7-form-control::placeholder {
	color: #ACACAC;
}

.wpcf7-form-control:focus {
	border-color: #1F6A2E;
}

.wpcf7-form-control.wpcf7-textarea {

	resize: vertical;
	font-family: inherit;
}



/* Hide CF7's built-in validation tips/response box for a clean look */

.wpcf7-not-valid-tip,

.wpcf7-response-output,

.screen-reader-response {

	display: none;

}



/* Two-column row: Your name + Your email side by side */

.wpcf7-form .cf7-row {

	display: grid;

	grid-template-columns: 1fr 1fr;

	gap: 16px;

}

.wpcf7-form .cf7-row>p {

	margin: 0;

}



/* Consent checkbox row (added — not part of CF7's default field set) */

.cf7-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 4px 0 22px;
}

.cf7-consent input[type="checkbox"] {
	width: 16px;
	height: 16px;
	margin: 2px 0 0;
	flex-shrink: 0;
	accent-color: #1F6A2E;
	border: 1px solid #D4D4D4;
	border-radius: 4px;
}

.cf7-consent label {
	font-size: 14px;
	font-weight: 400;
	color: #6B6B6B;
	line-height: 1.5;
	margin: 0;
}

.cf7-consent a {
	color: #178626;
	font-weight: 600;
	text-decoration: underline;
}



/* Submit button */

.wpcf7-form .wpcf7-spinner {
	display: none;
}

.cf7-submit-icon {
	width: 16px;
	height: 16px;
}


/* Blog Listing */
.newcomers {
	padding: 48px 60px 64px;
	background: #FFFFFF;
}

.newcomers .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

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

.sec__title {
	font-family: var(--font-jakarta);
	;
	font-size: 48px;
	font-weight: 500;
	letter-spacing: -0.01em;
	color: #0D0D0D;
	margin: 0 0 0px;
	line-height: 1.2;
}

.newcomers__track-wrap {
	position: relative;
}

.newcomers__nav-btn {
	position: absolute;
	top: 34%;
	right: -34px;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	border: none;
	background: transparent;
	color: #0D0D0D;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	z-index: 5;
	transition: opacity .2s ease, transform .2s ease;
}

.newcomers__nav-btn:hover {
	transform: translateY(-50%) translateX(3px);
}

.newcomers__nav-btn:focus-visible {
	outline: 2px solid #3B7A46;
	outline-offset: 2px;
}

.newcomers__nav-btn.disabled {
	opacity: .3;
	cursor: default;
	pointer-events: none;
}

.newcomers__nav-btn svg {
	width: 22px;
	height: 22px;
}

.newcomers__card {
	display: flex;
	flex-direction: column;
	border-radius: 14px;
	overflow: hidden;
	background: #F9F9FB;
}

.newcomers__img-wrap {
	aspect-ratio: 4 / 3;
	background: #ECF3ED;
}

.newcomers__img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.newcomers__card-body {
	padding: 20px 20px 22px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.newcomers__card-title {
	font-family: var(--font-jakarta);
	;
	font-size: 24px;
	font-weight: 500;
	color: #0D0D0D;
	line-height: 32px;
	margin: 0 0 18px;
	letter-spacing: -0.005em;
}

.newcomers__card-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
}

.newcomers__card-date {
	font-size: 16px;
	color: #808080;
	font-weight: 500;
	font-family: var(--font-jakarta);
}

.newcomers__card-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0D0D0D;
	flex-shrink: 0;
}

.newcomers__card-arrow svg {
	width: 24px;
	height: 24px;
}


.newcomers .owl-carousel .owl-dots {
	display: none;
}

.newcomers .owl-carousel .owl-nav button svg {
	width: 24px;
	height: 24px;
}

.newcomers .owl-carousel .owl-nav button {
	margin: 0;
	display: inline-flex;
	align-items: center;
}

.newcomers .owl-carousel .owl-nav button.disabled {
	display: none;
}

.newcomers .owl-carousel .owl-nav button.owl-prev,
.newcomers .owl-carousel .owl-nav button.owl-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: #000 !important;
}

/* Left Arrow */
.newcomers .owl-carousel .owl-nav button.owl-prev {
	left: -60px;
}

/* Right Arrow */
.newcomers .owl-carousel .owl-nav button.owl-next {
	right: -60px;
}

/* Hover */
.newcomers .owl-carousel .owl-nav button:hover {
	background-color: transparent !important;
}

.newcomers .owl-carousel .owl-nav .owl-prev svg {
	transform: rotate(180deg);
}


/* Contact */

.areas-served {

	padding: 56px 0 72px;

	background: #FFFFFF;

}

.areas-served .container {

	max-width: 1200px;

	margin: 0 auto;

	padding: 0 24px;

}

.areas-served__grid {

	display: grid;

	grid-template-columns: 1.05fr 0.85fr;

	gap: 40px;

	align-items: start;

}



/* Left column */



.sec-head__desc {
	font-size: 15px;
	color: #808080;
	line-height: 1.6;
	max-width: 420px;
	margin-top: 28px;
}

.areas-served__map {

	    width: 100%;
    aspect-ratio: 5 / 3.02;
    border-radius: 16px;
    overflow: hidden;
    background: #ECF3ED;

}

.areas-served__map img {

	width: 100%;

	height: 100%;

	object-fit: cover;

	display: block;

}



/* Right column — form card */

.waitlist-card {

	background: #F9F9FB;

	border-radius: 16px;

	padding: 40px;

}

.waitlist-card__title {


	font-size: 24px;

	font-weight: 500;

	color: #0D0D0D;

	margin: 0 0 40px;

	line-height: 1.2;

}

.waitlist-card__field {

	margin-bottom: 16px;

}




.waitlist-card__consent {

	display: flex;

	align-items: flex-start;

	gap: 10px;

	margin: 4px 0 24px;

}

.waitlist-card__consent input[type="checkbox"] {

	width: 16px;

	height: 16px;

	margin: 1px 0 0;

	flex-shrink: 0;

	accent-color: #1F6A2E;

	border: 1px solid #8F8F90;

	border-radius: 4px;

}

.waitlist-card__consent label {

	font-size: 14px;

	color: #808080;

	line-height: 1.5;

}

.waitlist-card__consent a {

	color: #178626;

	font-weight: 600;

	text-decoration: none;

}

.waitlist-card__consent a:hover {

	text-decoration: underline;

}



.waitlist-card__submit {

	display: inline-flex;

	align-items: center;

	gap: 8px;

	background: #1F6A2E;

	color: #FFFFFF;

	font-size: 15px;

	font-weight: 600;

	border: none;

	border-radius: 999px;

	padding: 12px 24px;

	cursor: pointer;

	transition: background .2s ease;

}

.waitlist-card__submit:hover {

	background: #17552A;

}

.waitlist-card__submit:focus-visible {

	outline: 2px solid #1F6A2E;

	outline-offset: 2px;

}

.waitlist-card__submit svg {

	width: 16px;

	height: 16px;

}



@media (max-width: 860px) {

	.areas-served__grid {

		grid-template-columns: 1fr;

	}

	.areas-served__title {
		font-size: 28px;
	}

}

.faq {
	padding: 56px 0 80px;
	background: #FFFFFF;
}
.faq .sec-heading .sec__title {
	color: #084414 !important;
}

.faq .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.faq__eyebrow {
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #1F6A2E;
	margin: 0 0 8px;
	font-family: var(--font-body);
}



/* Tabs */
.faq__tabs {
	display: flex;
	background: #FBFBFB;
	border-radius: 10px;
	margin-bottom: 32px;
}

.faq__tab {
	flex: 1;
	text-align: center;
	padding: 0;	
	font-size: 20px;
	font-weight: 400;
	color: #8A8A85;
	background: none;
	border: none;
	border-bottom: 1px solid #CAC4D0;	
	cursor: pointer;	
	transition: color .2s ease;
}
.faq__tab span{
	display: inline-block;
	padding: 16px 0 13px;
	border-bottom: 2px solid transparent;
}

.faq__tab.is-active span {
	color: #0D0D0D;
	border-bottom-color: #1F6A2E;
}

.faq__tab:focus-visible {
	outline: 2px solid #1F6A2E;
	outline-offset: -2px;
}

/* Tab panels */
.faq__tabpanel {
	display: none;
}

.faq__tabpanel.is-active {
	display: block;
}

/* Body grid */
.faq__grid {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 32px;
}

/* Sidebar */
.faq__sidebar {
	display: flex;
	flex-direction: column;
}

.faq__cat {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	background: none;
	border: none;
	padding: 16px 0;
	font-size: 24px;
	font-weight: 400;
	color: #0D0D0D;
	cursor: pointer;
	text-align: left;
}

.faq__cat svg {
	width: 18px;
	height: 18px;
	color: #C9C9C4;
	flex-shrink: 0;
	transition: color .2s ease, transform .2s ease;
}
.faq__cat.is-active{
	color: #1F6A2E;
}
.faq__cat.is-active svg {
	color: #1F6A2E;
}

.faq__cat:hover svg {
	color: #1F6A2E;
}

.faq__cat:focus-visible {
	outline: 2px solid #1F6A2E;
	outline-offset: 2px;
}

/* Category panels (accordion groups) */
.faq__catpanel {
	display: none;
}

.faq__catpanel.is-active {
	display: block;
}

/* Accordion */
.faq__accordion {
	display: flex;
	flex-direction: column;
}

.faq__item {
	border-bottom: 1px solid #E3E3DF;
}

.faq__item:first-child {
	border-top: 1px solid #E3E3DF;
}

.faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	background: none;
	border: none;
	padding: 28px 0;
	text-align: left;
	cursor: pointer;
	gap: 16px;
}

.faq__q-text {
	font-size: 24px;
	font-weight: 400;
	color: #0D0D0D;
}

.faq__item.is-open .faq__q-text {
	font-weight: 700;
}

.faq__q-icon {
	width: 20px;
	height: 20px;
	color: #1F6A2E;
	flex-shrink: 0;
}

.faq__q-icon .icon-plus-v {
	transition: opacity .15s ease;
}

.faq__item.is-open .faq__q-icon .icon-plus-v {
	opacity: 0;
}

.faq__a {
	display: none;
	font-size: 15px;
	color: #808080;
	line-height: 1.7;
	max-width: 620px;
	padding: 0 0 22px;
}

.faq__item.is-open .faq__a {
	display: block;
}


.embed-map-frame {
	width: 100% !important;
	height: 100% !important;
}