/* ==========================================================================
   About Page
   ========================================================================== */

.about-page {
	background: var(--wf-cream);
}


/* ==========================================================================
   Hero
   ========================================================================== */

.about-hero {
	padding: clamp(6rem, 10vw, 9rem) 0;
	background: #fff;
}

.about-hero__inner {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.about-hero__eyebrow,
.about-story__eyebrow,
.about-beliefs__eyebrow,
.about-community__eyebrow,
.about-cta__eyebrow {
	margin: 0 0 1rem;
	color: var(--wf-pink);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.about-hero__title {
	max-width: 820px;
	margin: 0 auto 1.5rem;
	font-size: clamp(2.75rem, 5vw, 5rem);
	line-height: 1.05;
}

.about-hero__intro {
	max-width: 680px;
	margin: 0 auto;
	color: #666;
	font-size: clamp(1.1rem, 1.8vw, 1.35rem);
	line-height: 1.7;
}


/* ==========================================================================
   Story
   ========================================================================== */

.about-story {
	padding: clamp(5rem, 8vw, 7rem) 0;
}

.about-story__inner {
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
}

.about-story__title {
	max-width: 760px;
	margin: 0 auto 2rem;
	font-size: clamp(2.25rem, 4.5vw, 4rem);
	line-height: 1.08;
}

.about-story__text {
	max-width: 700px;
	margin: 0 auto;
	color: var(--wf-dark);
	font-size: clamp(1rem, 1.3vw, 1.15rem);
	line-height: 1.8;
}

.about-story__text p {
	margin: 0 0 1.4rem;
}

.about-story__text p:last-child {
	margin-bottom: 0;
}


/* ==========================================================================
   Beliefs
   ========================================================================== */

.about-beliefs {
	padding: clamp(5rem, 8vw, 7rem) 0;
	background: #fff;
}

.about-beliefs__header {
	max-width: 720px;
	margin: 0 auto 3.5rem;
	text-align: center;
}

.about-beliefs__title {
	margin: 0;
	font-size: clamp(2.25rem, 4.5vw, 4rem);
	line-height: 1.08;
}

.about-beliefs__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2rem;
}

.about-belief {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 2.25rem;
	background: var(--wf-cream);
	border-radius: 1.5rem;
	box-shadow: var(--shadow);
}

.about-belief__title {
	margin: 0 0 1rem;
	font-size: 1.6rem;
}

.about-belief p {
	margin: 0;
	line-height: 1.75;
}


/* ==========================================================================
   Community
   ========================================================================== */

.about-community {
	padding: clamp(5rem, 8vw, 7rem) 0;
	background: var(--wf-cream);
}

.about-community__inner {
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
}

.about-community__title {
	max-width: 760px;
	margin: 0 auto 2rem;
	font-size: clamp(2.25rem, 4.5vw, 4rem);
	line-height: 1.08;
}

.about-community__text {
	max-width: 700px;
	margin: 0 auto;
	font-size: clamp(1rem, 1.3vw, 1.15rem);
	line-height: 1.8;
}

.about-community__text p {
	margin: 0 0 1.4rem;
}

.about-community__text p:last-child {
	margin-bottom: 0;
	font-weight: 600;
}


/* ==========================================================================
   CTA
   ========================================================================== */

.about-cta {
	padding: clamp(5rem, 8vw, 7rem) 0;
	background: #fff;
}

.about-cta__inner {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}

.about-cta__title {
	max-width: 760px;
	margin: 0 auto 2rem;
	font-size: clamp(2.25rem, 4.5vw, 4rem);
	line-height: 1.08;
}

.about-cta__text {
	max-width: 620px;
	margin: 0 auto 2.5rem;
	color: #666;
	font-size: clamp(1rem, 1.3vw, 1.15rem);
	line-height: 1.75;
}

.about-cta__actions {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem;
}


/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {

	.about-beliefs__grid {
		grid-template-columns: 1fr;
	}

}

@media (max-width: 800px) {

	.about-hero,
	.about-story,
	.about-beliefs,
	.about-community,
	.about-cta {
		padding: 5rem 0;
	}

	.about-cta__actions {
		flex-direction: column;
		align-items: center;
	}

	.about-cta__actions .btn {
		width: 100%;
		max-width: 320px;
	}

}