/* =========================================================
   About Page — page-about.php
   ========================================================= */

/* ---- Hero ------------------------------------------------ */
.about-hero {
	background: var(--color-navy);
	position: relative;
	overflow: hidden;
	padding: 7rem 0 6rem;
}

.about-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
	background-size: 52px 52px;
	-webkit-mask-image: radial-gradient(ellipse 90% 100% at 50% 50%, black 10%, transparent 80%);
	mask-image: radial-gradient(ellipse 90% 100% at 50% 50%, black 10%, transparent 80%);
	pointer-events: none;
}

.about-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
}

.about-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-coral);
	margin-bottom: 1.5rem;
}

.about-hero__eyebrow-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--color-coral);
	flex-shrink: 0;
}

.about-hero__h1 {
	font-family: var(--font-heading);
	font-size: clamp(2.75rem, 6vw, 5.5rem);
	color: var(--color-white);
	line-height: 1.05;
	margin-bottom: 1.75rem;
}

.about-hero__h1 span {
	color: var(--color-teal);
}

.about-hero__sub {
	font-size: clamp(1.125rem, 1.6vw, 1.375rem);
	font-weight: 500;
	color: rgba(255,255,255,0.72);
	line-height: 1.75;
	max-width: 62ch;
	margin: 0 auto;
}

/* ---- Problem band (coral) -------------------------------- */
.about-problem {
	background: var(--color-coral);
	padding: 4.5rem 0;
}

.about-problem__inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	text-align: center;
}

.about-stat__number {
	font-family: var(--font-heading);
	font-size: clamp(3rem, 5vw, 5rem);
	color: var(--color-white);
	line-height: 1;
	display: block;
}

.about-stat__label {
	font-size: 1rem;
	font-weight: 600;
	color: rgba(255,255,255,0.85);
	line-height: 1.5;
	margin-top: 0.5rem;
	display: block;
}

/* ---- Story section --------------------------------------- */
.about-story {
	padding: 6rem 0;
	background: var(--color-white);
}

.about-story__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}

.about-story__label {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-teal);
	display: block;
	margin-bottom: 1.25rem;
}

.about-story__h2 {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 3vw, 3.25rem);
	color: var(--color-navy);
	line-height: 1.1;
	margin-bottom: 1.5rem;
}

.about-story__body p {
	font-size: 1.0625rem;
	font-weight: 500;
	color: #3a4a5c;
	line-height: 1.8;
	margin-bottom: 1.25rem;
}

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

/* Visual card on the right */
.about-story__card {
	background: var(--color-navy);
	border-radius: 20px;
	padding: 2.5rem;
	position: relative;
	overflow: hidden;
}

.about-story__card::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
	background-size: 32px 32px;
	pointer-events: none;
}

.about-card__quote {
	position: relative;
	z-index: 1;
	font-family: var(--font-heading);
	font-size: clamp(1.5rem, 2.5vw, 2.25rem);
	color: var(--color-white);
	line-height: 1.25;
	margin-bottom: 2rem;
}

.about-card__quote span {
	color: var(--color-teal);
}

.about-card__pillars {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}

.about-card__pillar {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.9375rem;
	font-weight: 600;
	color: rgba(255,255,255,0.88);
}

.about-card__pillar-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--color-coral);
	flex-shrink: 0;
}

/* ---- How we work (3 steps) ------------------------------- */
.about-how {
	background: #f7f9fb;
	padding: 6rem 0;
}

.about-how__hd {
	text-align: center;
	margin-bottom: 4rem;
}

.about-how__eyebrow {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-teal);
	display: block;
	margin-bottom: 1rem;
}

.about-how__h2 {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 3vw, 3.25rem);
	color: var(--color-navy);
	line-height: 1.1;
}

.about-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.about-step {
	background: var(--color-white);
	border-radius: 16px;
	padding: 2.5rem 2rem;
	border-top: 4px solid var(--color-teal);
	box-shadow: 0 2px 4px rgba(1,33,65,0.04), 0 8px 24px rgba(1,33,65,0.07);
	position: relative;
}

.about-step:nth-child(2) { border-top-color: var(--color-coral); }
.about-step:nth-child(3) { border-top-color: var(--color-gold); }

.about-step__num {
	font-family: var(--font-heading);
	font-size: 3.5rem;
	line-height: 1;
	color: rgba(1,33,65,0.06);
	position: absolute;
	top: 1rem;
	right: 1.25rem;
}

.about-step__icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(2,138,134,0.1);
	color: var(--color-teal);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.about-step:nth-child(2) .about-step__icon {
	background: rgba(223,116,74,0.1);
	color: var(--color-coral);
}

.about-step:nth-child(3) .about-step__icon {
	background: rgba(220,178,57,0.12);
	color: var(--color-gold);
}

.about-step__title {
	font-family: var(--font-heading);
	font-size: 1.625rem;
	color: var(--color-navy);
	margin-bottom: 0.875rem;
	line-height: 1.15;
}

.about-step__body {
	font-size: 1rem;
	font-weight: 500;
	color: #3a4a5c;
	line-height: 1.75;
}

/* ---- Values ---------------------------------------------- */
.about-values {
	padding: 6rem 0;
	background: var(--color-navy);
	position: relative;
	overflow: hidden;
}

.about-values::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
	background-size: 52px 52px;
	pointer-events: none;
}

.about-values__hd {
	text-align: center;
	margin-bottom: 4rem;
	position: relative;
	z-index: 1;
}

.about-values__eyebrow {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-teal);
	display: block;
	margin-bottom: 1rem;
}

.about-values__h2 {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 3vw, 3.25rem);
	color: var(--color-white);
	line-height: 1.1;
}

.about-values__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	position: relative;
	z-index: 1;
}

.about-value {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 14px;
	padding: 2rem 2rem 2rem 1.75rem;
	border-left: 4px solid var(--color-teal);
}

.about-value:nth-child(2) { border-left-color: var(--color-coral); }
.about-value:nth-child(3) { border-left-color: var(--color-gold); }
.about-value:nth-child(4) { border-left-color: var(--color-teal); }

.about-value__title {
	font-family: var(--font-heading);
	font-size: 1.375rem;
	color: var(--color-white);
	margin-bottom: 0.625rem;
	line-height: 1.2;
}

.about-value__body {
	font-size: 0.9375rem;
	font-weight: 500;
	color: rgba(255,255,255,0.65);
	line-height: 1.75;
}

/* ---- Founder --------------------------------------------- */
.about-founder {
	padding: 6rem 0;
	background: #f7f9fb;
}

.about-founder__inner {
	display: grid;
	grid-template-columns: 420px 1fr;
	gap: 5rem;
	align-items: start;
}

.about-founder__photo-wrap {
	position: relative;
}

.about-founder__photo {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: top center;
	border-radius: 20px;
	display: block;
	box-shadow: 0 8px 40px rgba(1,33,65,0.14);
}

.about-founder__badge {
	position: absolute;
	bottom: -1.25rem;
	left: 1.5rem;
	right: 1.5rem;
	background: var(--color-navy);
	border-radius: 12px;
	padding: 1rem 1.25rem;
	display: flex;
	align-items: center;
	gap: 0.875rem;
	box-shadow: 0 4px 24px rgba(1,33,65,0.25);
}

.about-founder__badge-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(2,138,134,0.2);
	color: var(--color-teal);
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-founder__badge-text {
	display: flex;
	flex-direction: column;
}

.about-founder__badge-title {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--color-white);
	line-height: 1.3;
}

.about-founder__badge-sub {
	font-size: 0.75rem;
	font-weight: 500;
	color: rgba(255,255,255,0.55);
	margin-top: 0.125rem;
}

.about-founder__content {
	padding-top: 0.5rem;
}

.about-founder__label {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-teal);
	display: block;
	margin-bottom: 1rem;
}

.about-founder__name {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 3vw, 3rem);
	color: var(--color-navy);
	line-height: 1.05;
	margin-bottom: 0.5rem;
}

.about-founder__role {
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-teal);
	margin-bottom: 1.75rem;
}

.about-founder__bio p {
	font-size: 1.0625rem;
	font-weight: 500;
	color: #3a4a5c;
	line-height: 1.8;
	margin-bottom: 1.125rem;
}

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

.about-founder__credentials {
	margin-top: 2.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.about-founder__credential {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem 1.25rem;
	background: var(--color-white);
	border-radius: 10px;
	border-left: 3px solid var(--color-teal);
	box-shadow: 0 1px 4px rgba(1,33,65,0.06);
}

.about-founder__credential:nth-child(2) { border-left-color: var(--color-coral); }
.about-founder__credential:nth-child(3) { border-left-color: var(--color-gold); }
.about-founder__credential:nth-child(4) { border-left-color: var(--color-navy); }

.about-credential__role {
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--color-navy);
	line-height: 1.3;
}

.about-credential__company {
	font-size: 0.875rem;
	font-weight: 500;
	color: #5a6a7a;
	margin-top: 0.125rem;
}

.about-credential__duration {
	font-size: 0.75rem;
	font-weight: 600;
	color: #8a9ab0;
	margin-top: 0.25rem;
}

/* ---- Location -------------------------------------------- */
.about-location {
	padding: 5rem 0;
	background: var(--color-white);
}

.about-location__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-location__label {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-teal);
	display: block;
	margin-bottom: 1rem;
}

.about-location__h2 {
	font-family: var(--font-heading);
	font-size: clamp(1.875rem, 3vw, 3rem);
	color: var(--color-navy);
	line-height: 1.1;
	margin-bottom: 1.25rem;
}

.about-location__body {
	font-size: 1.0625rem;
	font-weight: 500;
	color: #3a4a5c;
	line-height: 1.8;
	margin-bottom: 1.75rem;
}

.about-location__details {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.about-location__detail {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--color-navy);
}

.about-location__detail svg {
	color: var(--color-teal);
	flex-shrink: 0;
}

.about-location__map {
	background: #e8eef4;
	border-radius: 20px;
	height: 340px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(1,33,65,0.1);
}

.about-location__map iframe {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

/* ---- CTA band -------------------------------------------- */
.about-cta {
	background: var(--color-coral);
	padding: 5.5rem 0;
}

.about-cta__inner {
	text-align: center;
	max-width: 680px;
	margin: 0 auto;
}

.about-cta__h2 {
	font-family: var(--font-heading);
	font-size: clamp(2.25rem, 4vw, 3.75rem);
	color: var(--color-white);
	line-height: 1.08;
	margin-bottom: 1.125rem;
}

.about-cta__sub {
	font-size: 1.125rem;
	font-weight: 500;
	color: rgba(255,255,255,0.85);
	line-height: 1.7;
	margin-bottom: 2.25rem;
}

.btn-white {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	background: var(--color-white);
	color: var(--color-coral);
	font-weight: 700;
	font-size: 1.0625rem;
	padding: 1rem 2.25rem;
	border-radius: 8px;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-white:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

/* ---- Responsive ------------------------------------------ */
@media (max-width: 1000px) {
	.about-story__inner,
	.about-location__inner  { gap: 3rem; }
}

@media (max-width: 860px) {
	.about-story__inner,
	.about-location__inner  { grid-template-columns: 1fr; }
	.about-steps            { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
	.about-values__grid     { grid-template-columns: 1fr; }
	.about-problem__inner   { grid-template-columns: 1fr; gap: 2.5rem; }
	.about-location__map    { height: 260px; }
	.about-founder__inner   { grid-template-columns: 1fr; gap: 3rem; }
	.about-founder__photo-wrap { max-width: 380px; }
}

@media (max-width: 600px) {
	.about-hero             { padding: 4rem 0 3.5rem; }
	.about-story,
	.about-how,
	.about-values,
	.about-location,
	.about-cta              { padding: 4rem 0; }
	.about-problem          { padding: 3rem 0; }
}
