.about-description-wrapper {
	margin-left: 48px;
}

@media (max-width: 991px) {
	.about-description-wrapper {
		margin-left: 0px;
	}
}

.banner {
	display: flex;
	flex-direction: column;
	position: relative;
	isolation: isolate;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.banner__content {
	padding: 80px 0px;
	margin-top: auto;
	margin-bottom: auto;
}

@media (max-width: 575px) {
	.banner__content {
		padding: 40px 0px;
	}
}

.about-banner {
	padding: 30px 15px;
	background-color: hsl(var(--base) / 0.7);
}

@media screen and (min-width: 375px) {
	.about-banner {
		padding: 30px;
	}
}

@media screen and (min-width: 1200px) {
	.about-banner {
		padding: 36px;
	}
}

.about-banner__title {
	margin: 0;
	text-align: center;
	color: hsl(var(--white));
	font-size: clamp(1rem, 1.8vw + 1rem, 1.5rem);
}

.banner::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: hsl(var(--black) / 0.7);
	mix-blend-mode: darken;
	z-index: -1;
}

.section__subtitle {
	display: inline-block;
	position: relative;
	font-size: 0.875rem;
	letter-spacing: 0.3em;
	color: hsl(var(--base)) !important;
	font-weight: 500;
}

.section__title {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

@media (max-width: 991px) {
	.section__title {
		font-size: 1.5rem;
	}
}

/*---------------------------------------
    Counter Card
-----------------------------------------*/
.counter-section__container {
	border-radius: 10px;
	border: 1px solid hsl(var(--border) / 0.5);
	box-shadow: 0 0 10px hsl(var(--base) / 0.06);
	background: hsl(var(--white));
	padding: 15px 0px;
}

.counter-list {
	--gap: 0;
}

@media (max-width: 575px) {
	.counter-section__container .counter-list {
		display: flex;
		margin: 0;
		flex-wrap: wrap;
		padding: 0;
		list-style: none;
		gap: 0px;
		flex-direction: row;
	}

	.counter-list li {
		width: 50%;
	}
}

@media screen and (min-width: 576px) {
	.counter-list {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-around;
	}
}

@media screen and (min-width: 992px) {
	.counter-list li:last-child::after {
		display: none;
	}
}

@media screen and (min-width: 576px) {
	.counter-list li {
		width: calc(50% - 1.5rem);
	}
}

@media screen and (min-width: 992px) {
	.counter-list li {
		width: calc(25% - 1rem);
		position: relative;
		isolation: isolate;
	}

	.counter-list li::after {
		content: "";
		width: 1px;
		height: 50px;
		position: absolute;
		top: 50%;
		right: -0.5rem;
		transform: translateY(-50%);
		background: hsl(var(--black) / 0.2);
	}
}

.counter-list__card {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	flex-shrink: 0;
	padding: 15px;
}

.counter-list__card-head {
	text-align: center;
}

.counter-list__card-head img {
	width: 35px !important;
	height: 35px !important;
	margin-bottom: 20px;
}

.counter-list__card-img {
	flex-shrink: 0;
}

.counter-list__card-title {
	display: block;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1;
	color: hsl(var(--heading-color));
}

@media screen and (max-width: 767px) {
	.counter-list__card-title {
		font-size: 1.125rem;
	}
}

@media screen and (max-width: 1199px) {
	.counter-list__card-title {
		font-size: 1.5rem;
	}
}

.counter-list__card-body {
	display: block;
	font-weight: 500;
	line-height: 1;
	text-align: center;
}

@media (max-width: 575px) {
	.counter-list__card-body {
		font-size: 0.75rem;
	}

	.counter-list__card-title {
		font-size: 1rem;
	}
}

@media screen and (min-width: 1400px) {
	.counter-list__card-body {
		margin-top: 0.5rem;
	}
}

/*---------------------------------------
    Testimonial
-----------------------------------------*/

.testimonial {
	position: relative;
	isolation: isolate;
	background: hsl(var(--light-2));
}

@media (max-width: 767px) {
	.testimonial {
		padding: 40px 0px;
	}
}

.testimonial__img {
	max-height: 420px;
	object-fit: contain;
}

.testimonial__content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.testimonial__quote {
	width: 60px;
	height: 60px;
	line-height: 1;
	object-fit: contain;
}

.testimonial__text {
	margin-bottom: 0;
	font-size: 1.125rem;
}

@media (max-width: 767px) {
	.testimonial__text {
		font-size: 0.875rem;
	}
}

.testimonial__title {
	margin-top: 0;
	margin-bottom: 0.5rem;
}

@media (max-width: 767px) {
	.testimonial__title {
		font-size: 1.125rem;
	}
}

@media (max-width: 575px) {
	.testimonial__title {
		font-size: 1.25rem;
	}
}

.testimonial__cite {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1;
}

/*---------------------------------------
    Feature Card
-----------------------------------------*/
.feature-card {
	display: grid;
	gap: 1rem;
	padding: 30px;
	border: 1px solid hsl(var(--border) / 0.8);
	border-radius: 5px;
	background: hsl(var(--white));
	height: 100%;
}

@media (max-width: 575px) {
	.feature-card {
		padding: 20px !important;
	}
}

.feature-card--list li {
	padding: 0px;
}

@media screen and (min-width: 768px) {
	.feature-card--list {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.feature-card--list li {
		width: calc(50% - 1rem);
		flex-shrink: 0;
		flex-grow: 1;
	}
}

@media screen and (min-width: 992px) {
	.feature-card--list {
		flex-direction: column;
	}

	.feature-card--list li {
		width: 100%;
	}
}

.feature-card__head {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.feature-card__icon {
	width: 40px;
	height: 40px;
	display: grid;
	place-content: center;
	flex-shrink: 0;
	border-radius: 50%;
	background: hsl(var(--base));
	color: hsl(var(--white));
	line-height: 1;
}

.feature-card__title {
	margin: 0;
	flex-grow: 1;
}

.section__head {
	padding-bottom: clamp(20px, 1vw, 30px);
}

/* Premium about page */
.about-page {
	background: #f7f9f4;
	color: #24301d;
}

.about-hero {
	min-height: auto;
	display: flex;
	align-items: center;
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background: #15200f;
}

.about-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(90deg, #172410 0%, #213619 58%, #f7f9f4 58%, #f7f9f4 100%);
}

.about-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(24px, 4vw, 52px);
	align-items: center;
	min-height: 0;
	padding: 42px 0;
}

.about-hero__content {
	max-width: 720px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 42px 0;
	color: #fff;
	animation: aboutFadeUp 0.75s ease both;
}

.about-hero__content span,
.about-story__copy > span,
.about-section-head span,
.about-care__panel > div:first-child span {
	display: block;
	margin-bottom: 8px;
	color: #d8efc9;
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.about-hero__content h1 {
	max-width: 620px;
	margin: 0;
	color: #fff;
	font-size: clamp(2rem, 4vw, 3.45rem);
	line-height: 1.06;
}

.about-hero__content p {
	max-width: 460px;
	margin: 12px 0 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.9rem;
	line-height: 1.6;
}

.about-hero__image {
	align-self: center;
	justify-self: end;
	width: min(100%, 620px);
	aspect-ratio: 686 / 528;
	min-height: 0;
	max-height: none;
	overflow: hidden;
	border: 1px solid rgba(104, 139, 74, 0.18);
	border-radius: 16px;
	background: transparent;
	box-shadow: 0 24px 60px rgba(4, 12, 2, 0.24);
	animation: aboutFadeInRight 0.85s ease 0.12s both;
}

.about-hero__image img {
	width: 100% !important;
	height: 100% !important;
	display: block;
	object-fit: fill !important;
}

.about-story,
.about-proof,
.about-values,
.about-care,
.about-quote {
	padding: 18px 0;
}

.about-story {
	padding-top: 42px;
}

.about-story__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
	gap: clamp(18px, 3vw, 34px);
	align-items: start;
}

.about-story__media {
	position: sticky;
	top: 92px;
	aspect-ratio: 1 / 0.9;
	overflow: hidden;
	border: 1px solid rgba(104, 139, 74, 0.16);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 16px 36px rgba(24, 38, 13, 0.1);
	animation: aboutFadeUp 0.7s ease both;
}

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

.about-story__copy {
	padding: clamp(18px, 2.5vw, 26px);
	border: 1px solid rgba(104, 139, 74, 0.16);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 16px 36px rgba(24, 38, 13, 0.07);
	animation: aboutFadeUp 0.7s ease 0.08s both;
}

.about-story__copy > span,
.about-section-head span,
.about-care__panel > div:first-child span {
	color: #7b896f;
}

.about-story__copy h2,
.about-section-head h2,
.about-care__panel h2 {
	margin: 0;
	color: #24301d;
	font-size: clamp(1.35rem, 2.35vw, 1.85rem);
	line-height: 1.16;
}

.about-story__text,
.about-story__copy p {
	margin-top: 12px;
	color: #65735d;
	font-size: 0.86rem;
	line-height: 1.65;
}

.about-story__accordion {
	position: relative;
	margin-top: 12px;
}

.about-story__accordion .about-story__text {
	max-height: 238px;
	margin-top: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}

.about-story__accordion:not(.is-open)::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 46px;
	left: 0;
	height: 58px;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 78%);
}

.about-story__accordion.is-open .about-story__text {
	max-height: 1200px;
}

.about-story__toggle {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 12px;
	padding: 0;
	border: 0;
	background: transparent;
	color: hsl(var(--base));
	font-size: 0.78rem;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.about-story__toggle i {
	font-size: 0.92rem;
	transition: transform 0.25s ease;
}

.about-story__toggle [data-less-text],
.about-story__accordion.is-open .about-story__toggle [data-more-text] {
	display: none;
}

.about-story__accordion.is-open .about-story__toggle [data-less-text] {
	display: inline;
}

.about-story__accordion.is-open .about-story__toggle i {
	transform: rotate(180deg);
}

.about-story__text p {
	margin-bottom: 14px;
}

.about-story__text ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin: 16px 0;
	padding: 0;
	list-style: none;
}

.about-story__text li {
	min-height: 36px;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 10px;
	border: 1px solid rgba(104, 139, 74, 0.14);
	border-radius: 9px;
	background: #f7f9f4;
	color: #4f6047;
	font-size: 0.76rem;
	font-weight: 700;
	line-height: 1.35;
}

.about-story__text li::before {
	content: "\f00c";
	font-family: "Line Awesome Free";
	font-weight: 900;
	color: hsl(var(--base));
	font-size: 0.8rem;
}

.about-story__text p:last-child {
	margin-bottom: 0;
}

.about-story__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin-top: 18px;
}

.about-story__actions .btn {
	border-radius: 8px;
	font-weight: 800;
}

.about-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #4c5d42;
	font-size: 0.88rem;
	font-weight: 800;
	text-decoration: none;
}

.about-link:hover {
	color: hsl(var(--base));
}

.about-proof__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.about-proof article,
.about-values article,
.about-care__panel,
.about-quote blockquote {
	border: 1px solid rgba(104, 139, 74, 0.16);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 14px 32px rgba(24, 38, 13, 0.065);
}

.about-proof article {
	min-height: 118px;
	padding: 16px;
	animation: aboutFadeUp 0.65s ease both;
}

.about-proof img {
	width: 28px;
	height: 28px;
	object-fit: contain;
	margin-bottom: 12px;
}

.about-proof strong {
	display: block;
	color: #24301d;
	font-size: 1.55rem;
	line-height: 1;
}

.about-proof p {
	margin: 6px 0 0;
	color: #75816d;
	font-size: 0.72rem;
	line-height: 1.5;
}

.about-section-head {
	max-width: 560px;
	margin-bottom: 14px;
}

.about-values__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.about-values article {
	padding: 16px;
	animation: aboutFadeUp 0.65s ease both;
}

.about-proof article:nth-child(2),
.about-values article:nth-child(2) {
	animation-delay: 0.06s;
}

.about-proof article:nth-child(3),
.about-values article:nth-child(3) {
	animation-delay: 0.12s;
}

.about-proof article:nth-child(4),
.about-values article:nth-child(4) {
	animation-delay: 0.18s;
}

.about-values img,
.about-values i {
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	margin-bottom: 14px;
	border-radius: 10px;
	background: #f0f6ea;
	color: hsl(var(--base));
	object-fit: contain;
	font-size: 1.1rem;
}

.about-values h3 {
	margin: 0;
	color: #24301d;
	font-size: 0.9rem;
	line-height: 1.3;
}

.about-values p {
	margin: 6px 0 0;
	color: #75816d;
	font-size: 0.76rem;
	line-height: 1.55;
}

.about-care__panel {
	display: grid;
	grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
	gap: 18px;
	padding: clamp(18px, 3vw, 26px);
	animation: aboutFadeUp 0.7s ease both;
}

.about-care__steps {
	display: grid;
	gap: 10px;
}

.about-care__steps > div {
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr);
	gap: 3px 10px;
	align-items: start;
	padding: 10px;
	border: 1px solid rgba(104, 139, 74, 0.14);
	border-radius: 10px;
	background: #f7f9f4;
}

.about-care__steps i {
	width: 36px;
	height: 36px;
	display: grid;
	grid-row: span 2;
	place-items: center;
	border-radius: 10px;
	color: hsl(var(--base));
	background: #fff;
	font-size: 1.12rem;
}

.about-care__steps strong {
	color: #24301d;
	font-size: 0.84rem;
}

.about-care__steps p {
	margin: 0;
	color: #75816d;
	font-size: 0.74rem;
	line-height: 1.45;
}

.about-quote {
	padding: 16px 0 34px;
}

.about-quote__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	align-items: stretch;
	max-width: 1120px;
	margin: 0 auto;
	overflow: visible;
	border: 0;
	border-radius: 0;
	background: #efefee;
	box-shadow: none;
}

.about-quote__grid.has-image {
	grid-template-columns: minmax(180px, 290px) minmax(0, 1fr);
	min-height: 270px;
	max-height: 270px;
}

.about-quote__image {
	position: relative;
	overflow: visible;
	border: 0;
	border-radius: 0;
	background: #fff;
	box-shadow: none;
	animation: aboutFadeUp 0.7s ease both;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.about-quote__image::after {
	content: none;
}

.about-quote__image img {
	width: auto;
	max-width: 100%;
	height: 260px;
	display: block;
	object-fit: contain;
	object-position: center bottom;
}

.about-quote blockquote {
	position: relative;
	margin: 0;
	padding: 34px clamp(30px, 6vw, 96px);
	border: 0;
	border-radius: 0;
	background: #efefee;
	box-shadow: none;
	animation: aboutFadeUp 0.7s ease both;
	align-content: center;
}

.about-quote blockquote::before {
	content: none;
}

@keyframes aboutFadeUp {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes aboutFadeInRight {
	from {
		opacity: 0;
		transform: translateX(26px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: translateX(0) scale(1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.about-hero__content,
	.about-hero__image,
	.about-story__media,
	.about-story__copy,
	.about-proof article,
	.about-values article,
	.about-care__panel,
	.about-quote__image,
	.about-quote blockquote {
		animation: none !important;
	}
}

.about-quote i {
	color: hsl(var(--base));
	font-size: 2.4rem;
	line-height: 1;
}

.about-quote p {
	max-width: 760px;
	margin: 14px 0 0;
	color: #263021;
	font-size: clamp(0.92rem, 1.08vw, 1.02rem);
	line-height: 1.52;
}

.about-quote footer {
	margin-top: 16px;
	padding-top: 0;
	border-top: 0;
}

.about-quote strong,
.about-quote span {
	display: block;
}

.about-quote strong {
	color: #13210f;
	font-size: clamp(1.08rem, 1.55vw, 1.34rem);
	line-height: 1.1;
}

.about-quote span {
	margin-top: 6px;
	color: #68745f;
	font-size: 0.76rem;
	font-weight: 700;
}

@media (max-width: 991px) {
	.about-hero::before {
		background: linear-gradient(180deg, #172410 0%, #213619 62%, #f7f9f4 62%, #f7f9f4 100%);
	}

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

	.about-story__grid,
	.about-care__panel,
	.about-quote__grid,
	.about-quote__grid.has-image {
		grid-template-columns: 1fr;
	}

	.about-quote__image {
		height: 240px;
		max-height: none;
	}

	.about-quote__grid.has-image {
		max-height: none;
	}

	.about-story__media {
		position: relative;
		top: auto;
	}

	.about-proof__grid,
	.about-values__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 575px) {
	.about-hero {
		min-height: auto;
	}

	.about-hero__grid {
		min-height: auto;
		padding: 42px 0;
	}

	.about-hero__content {
		padding: 0;
	}

	.about-hero__image {
		width: 100%;
		aspect-ratio: 686 / 528;
		min-height: 0;
		max-height: none;
		height: auto;
	}

	.about-story {
		padding-top: 36px;
	}

	.about-story,
	.about-proof,
	.about-values,
	.about-care,
	.about-quote {
		padding-block: 18px;
	}

	.about-proof__grid,
	.about-values__grid {
		grid-template-columns: 1fr;
	}

	.about-story__text ul {
		grid-template-columns: 1fr;
	}

	.about-care__steps > div {
		grid-template-columns: 36px minmax(0, 1fr);
	}

	.about-care__steps i {
		width: 36px;
		height: 36px;
	}
}
