/* Selfhood Section */
.selfhood-section {
	position: relative;
	width: 100%;
	padding: clamp(90px, 8vw, 140px) 0 clamp(210px, 16vw, 280px);
	background-color: #F0F3EF;
	overflow: hidden;
}

.selfhood-section::after {
	content: "";
    position: absolute;
    left: 50%;
    bottom: -140px;
    width: 190vw;
    max-width: none;
    height: 520px;
    background: url("../images/Path 4208.png") no-repeat;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 1;
    background-position: bottom;
}

.selfhood-bg-title {
	position: absolute;
	inset: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: none;
	z-index: 0;
}

.selfhood-bg-title img {
	width: min(1400px, 88vw);
	opacity: 0.09;
	filter: grayscale(1);
	mix-blend-mode: multiply;
}

.selfhood-inner {
	position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(321px, 850px) 1fr;
    margin: 0 auto;
    align-items: center;
}

.selfhood-copy {
	max-width: 640px;
}

.selfhood-heading {
	font-family: 'Playfair Display', serif;
	font-size: clamp(38px, 4.4vw, 42px);
	color: var(--dark-purple);
	line-height: 1.08;
	margin-bottom: 18px;
    z-index: 2;
}

.selfhood-kicker {
    margin-left: -30px;
    margin-bottom: -30px;
    max-width: 500px;
}
.selfhood-kicker img {
    max-width: 100%;
}

.selfhood-body {
	font-size: 18px;
	line-height: 1.7;
	color: var(--text-light);
	margin-bottom: 22px;
	max-width: 620px;
}

.selfhood-points {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
	display: grid;
	gap: 14px;
}

.selfhood-points li {
	position: relative;
	padding-left: 28px;
	font-size: 16px;
	color: var(--text-dark);
	line-height: 1.55;
    background: url("../images/Group220.png") no-repeat;
    background-position-y: 10px;
}

.selfhood-cta {
	display: flex;
	gap: 14px;
	align-items: center;
}

.selfhood-btn {
	display: inline-block;
	padding: 14px 28px;
	background: linear-gradient(90deg, #e8a611 0%, #d19205 100%);
	color: #fff;
	font-weight: 700;
	letter-spacing: 0.4px;
	text-decoration: none;
	border-radius: 999px;
	box-shadow: 0 16px 34px rgba(216, 150, 17, 0.38);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.selfhood-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 38px rgba(216, 150, 17, 0.48);
}

.selfhood-visual {
	position: relative;
    min-height: clamp(520px, 70vh, 760px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: #E8A611;
    box-shadow: 0 32px 60px rgba(0, 0, 0, 0.2);
    border-top-right-radius: 380px;
    border-bottom-right-radius: 380px;
    overflow: hidden;
    height: 105%;
}

.selfhood-person {
	position: relative;
	max-height: clamp(560px, 75vh, 760px);
	width: auto;
	z-index: 2;
	filter: drop-shadow(0 26px 35px rgba(0, 0, 0, 0.25));
}

.selfhood-person-info {
	position: absolute;
	bottom: 80px;
	left: 50%;
	transform: translateX(-50%);
	background: #2E3092;
	padding: 16px 28px;
	border-radius: 40px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
	text-align: center;
	z-index: 3;
	backdrop-filter: blur(10px);
	min-width: 280px;
}

.selfhood-person-name {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 4px 0;
	font-family: 'Be Vietnam Pro', sans-serif;
    position: relative;
}

.selfhood-person-name::after {
    content: "";
    border-bottom: 1px solid #ccc;
    opacity: 0.4;
    position: absolute;
    bottom: 0;
    height: 1px;
    background-color: #ccc;
    width: 100%;
    left: 0;
}

.selfhood-person-title {
	font-size: 14px;
	color: #fff;
	margin: 0;
	font-style: italic;
}

@media (max-width: 1200px) {
	.selfhood-section {
		padding: 90px 5vw 200px;
	}

	.selfhood-inner {
		grid-template-columns: 1fr;
		gap: 70px;
		padding: 0;
	}

	.selfhood-copy {
		max-width: none;
		text-align: center;
	}

	.selfhood-cta {
		justify-content: center;
	}

	.selfhood-visual {
		min-height: 520px;
		justify-content: center;
		padding-right: 0;
	}

	.selfhood-accent {
		width: 72%;
		height: 72%;
		left: 14%;
		bottom: 70px;
	}
}

@media (max-width: 768px) {
	.selfhood-section {
		padding: 70px 20px 180px;
	}

	.selfhood-heading {
		font-size: clamp(30px, 7vw, 40px);
	}

	.selfhood-body {
		font-size: 16px;
	}

	.selfhood-points li {
		font-size: 15px;
		padding-left: 24px;
	}

	.selfhood-accent {
		width: 82%;
		height: 70%;
		left: 9%;
		bottom: 60px;
		transform: skew(-4deg);
	}

	.selfhood-person {
		max-height: 520px;
	}

	.selfhood-section::after {
		bottom: -140px;
		height: 420px;
	}
}

@media (max-width: 540px) {
	.selfhood-section {
		padding: 60px 16px 160px;
	}

	.selfhood-kicker {
		letter-spacing: 4px;
	}

	.selfhood-inner {
		gap: 50px;
	}

	.selfhood-person {
		max-height: 460px;
		transform: none;
	}

	.selfhood-section::after {
		width: 200vw;
	}
}

@media (min-width: 1440px) {
	.selfhood-inner {
		padding: 0;
		gap: 7vw;
	}

	.selfhood-bg-title img {
		width: min(1600px, 88vw);
	}
}
