/* ==========================================================================
   Esteem Landing Blocks – Shared Frontend Styles
   ========================================================================== */

:root {
	--esteem-navy: #153028;
	--esteem-pink: #ff8b98;
	--esteem-gold: #a68a50;
	--esteem-soft: #fffafb;
	--esteem-line: rgba(30, 41, 59, 0.05);
}

/* ---------- Typography ---------- */

.esteem-block {
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.6;
	color: #1e293b;
	box-sizing: border-box;
}
.esteem-block *,
.esteem-block *::before,
.esteem-block *::after {
	box-sizing: border-box;
}
.esteem-block .font-serif {
	font-family: 'Shippori Mincho', serif;
}
.esteem-block ::selection {
	background: rgba(255, 139, 152, 0.3);
}

/* ---------- Responsive Utility ---------- */

.esteem-block .mobile-only-br {
	display: block;
}
.esteem-block .desktop-only-br {
	display: none;
}
@media (min-width: 768px) {
	.esteem-block .mobile-only-br {
		display: none;
	}
	.esteem-block .desktop-only-br {
		display: block;
	}
}

/* ---------- Utility ---------- */

.esteem-block .keep-phrase {
	display: inline-block;
	word-break: keep-all;
	overflow-wrap: break-word;
}
.esteem-block .pink-underline {
	background: linear-gradient(transparent 65%, rgba(255, 139, 152, 0.35) 65%);
	display: inline;
}
.esteem-block .bg-number {
	font-family: 'Shippori Mincho', serif;
	color: rgba(255, 139, 152, 0.1);
	font-size: 8rem;
	line-height: 1;
	position: absolute;
	top: -1.5rem;
	left: -1rem;
	z-index: 0;
	user-select: none;
}

/* ---------- Buttons ---------- */

.esteem-block .btn-primary {
	display: inline-block;
	background-color: var(--esteem-navy);
	color: #fff;
	padding: 1rem 2.5rem;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	transition: background-color 0.2s, transform 0.2s;
	box-shadow: 0 8px 24px rgba(21, 48, 40, 0.18);
	text-decoration: none;
	text-align: center;
	width: 100%;
}
.esteem-block .btn-primary:hover {
	background-color: #000;
	transform: translateY(-1px);
}

.esteem-block .btn-secondary {
	display: inline-block;
	background-color: transparent;
	color: var(--esteem-navy);
	padding: 0.875rem 2rem;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	border: 1.5px solid var(--esteem-navy);
	transition: background-color 0.2s, color 0.2s, transform 0.2s;
	text-decoration: none;
	text-align: center;
	width: 100%;
}
.esteem-block .btn-secondary:hover {
	background-color: var(--esteem-navy);
	color: #fff;
	transform: translateY(-1px);
}

@media (min-width: 640px) {
	.esteem-block .btn-primary,
	.esteem-block .btn-secondary {
		width: auto;
	}
}

.esteem-block .btn-white {
	display: inline-block;
	background-color: #fff;
	color: var(--esteem-navy);
	padding: 1rem 2.5rem;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	transition: background-color 0.3s, transform 0.2s;
	text-decoration: none;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	text-align: center;
	width: 100%;
}
.esteem-block .btn-white:hover {
	background-color: var(--esteem-pink);
	color: #fff;
	transform: translateY(-1px);
}

.esteem-block .btn-ghost-white {
	display: inline-block;
	background-color: transparent;
	color: #fff;
	padding: 0.875rem 2rem;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	border: 1.5px solid rgba(255, 255, 255, 0.5);
	transition: border-color 0.2s, background-color 0.2s, transform 0.2s;
	text-decoration: none;
	text-align: center;
	width: 100%;
}
.esteem-block .btn-ghost-white:hover {
	border-color: #fff;
	background-color: rgba(255, 255, 255, 0.08);
	transform: translateY(-1px);
}

@media (min-width: 640px) {
	.esteem-block .btn-white,
	.esteem-block .btn-ghost-white {
		width: auto;
	}
}

/* ---------- Animation ---------- */

@keyframes esteemFadeInUp {
	from {
		opacity: 0;
		transform: translateY(15px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.esteem-block .animate-reveal {
	animation: esteemFadeInUp 0.8s ease-out forwards;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.esteem-hero {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #fff;
}
.esteem-hero__bg {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}
.esteem-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.esteem-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.85);
}
.esteem-hero__inner {
	max-width: 80rem;
	margin: 0 auto;
	padding: 2rem 1.5rem 4rem;
	width: 100%;
	position: relative;
	z-index: 10;
}
.esteem-hero__content {
	width: 100%;
}
.esteem-hero__tagline-wrap {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}
.esteem-hero__tagline-line {
	width: 2.5rem;
	height: 1px;
	background: var(--esteem-pink);
}
.esteem-hero__tagline {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--esteem-pink);
	letter-spacing: 0.3em;
	text-transform: uppercase;
}
.esteem-hero__heading {
	font-family: 'Shippori Mincho', serif;
	font-weight: 700;
	color: var(--esteem-navy);
	line-height: 1.7;
	margin-bottom: 2rem;
	letter-spacing: -0.025em;
	font-size: 26px;
}
.esteem-hero__heading-block {
	display: block;
}
.esteem-hero__heading-block--top {
	margin-bottom: 0.5rem;
}
.esteem-hero__heading-highlight {
	display: inline;
	color: var(--esteem-pink);
	background: linear-gradient(transparent 65%, rgba(255, 139, 152, 0.35) 65%);
	margin-right: 0.25rem;
}
.esteem-hero__desc-wrap {
	max-width: 36rem;
	margin-bottom: 2.5rem;
}
.esteem-hero__desc {
	font-size: 0.9375rem;
	color: #1e293b;
	line-height: 2;
	font-weight: 500;
	border-left: 2px solid rgba(255, 139, 152, 0.6);
	padding-left: 1.25rem;
	text-align: justify;
}
.esteem-hero__buttons {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: flex-start;
	width: 100%;
}

@media (min-width: 640px) {
	.esteem-hero__inner {
		padding: 2rem 2.5rem 4rem;
	}
	.esteem-hero__heading {
		font-size: 2.25rem;
	}
	.esteem-hero__buttons {
		flex-direction: row;
	}
}
@media (min-width: 768px) {
	.esteem-hero {
		min-height: 85vh;
		display: flex;
		align-items: center;
	}
	.esteem-hero__overlay {
		background: transparent;
		background-image: linear-gradient(to right, #fff, rgba(255,255,255,0.9), transparent);
	}
	.esteem-hero__inner {
		padding: 3rem 2.5rem;
	}
	.esteem-hero__heading {
		line-height: 1.2;
		font-size: 3rem;
	}
	.esteem-hero__heading-block--top {
		margin-bottom: 0.75rem;
	}
	.esteem-hero__desc {
		font-size: 1.125rem;
		color: rgb(100, 116, 139);
		line-height: 1.625;
		font-weight: 300;
		border-left-color: rgba(255, 139, 152, 0.4);
	}
	.esteem-hero__desc-wrap {
		margin-bottom: 3rem;
	}
}
@media (min-width: 1024px) {
	.esteem-hero__bg {
		width: 55%;
	}
	.esteem-hero__overlay {
		background-image: linear-gradient(to right, #fff, rgba(255,255,255,0.05), transparent);
	}
	.esteem-hero__inner {
		padding-left: 4rem;
		padding-right: 4rem;
	}
	.esteem-hero__content {
		width: 65%;
	}
	.esteem-hero__heading {
		font-size: 4.5rem;
	}
}

/* ==========================================================================
   Problem
   ========================================================================== */

.esteem-problem {
	padding: 4rem 0;
	background: #fff;
}
.esteem-problem__inner {
	max-width: 80rem;
	margin: 0 auto;
	padding: 0 1.5rem;
}
.esteem-problem__header {
	max-width: 56rem;
	margin-bottom: 4rem;
}
.esteem-problem__tag {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--esteem-gold);
	letter-spacing: 0.3em;
	margin-bottom: 1rem;
	text-transform: uppercase;
}
.esteem-problem__heading {
	font-size: 1.5rem;
	font-family: 'Shippori Mincho', serif;
	font-weight: 700;
	color: var(--esteem-navy);
	line-height: 1.6;
	letter-spacing: -0.025em;
}
.esteem-problem__heading-highlight {
	color: var(--esteem-pink);
}
.esteem-problem__grid {
	display: grid;
	gap: 2.5rem;
}
.esteem-problem__card {
	position: relative;
	padding-top: 3rem;
}
.esteem-problem__card-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--esteem-navy);
	margin-bottom: 1rem;
	position: relative;
	z-index: 10;
	font-family: 'Shippori Mincho', serif;
	transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.esteem-problem__card:hover .esteem-problem__card-title {
	color: var(--esteem-pink);
}
.esteem-problem__card-desc {
	color: rgb(100, 116, 139);
	line-height: 1.625;
	font-size: 0.875rem;
	font-weight: 300;
	position: relative;
	z-index: 10;
}

@media (min-width: 768px) {
	.esteem-problem {
		padding: 6rem 0;
	}
	.esteem-problem__heading {
		font-size: 2.25rem;
		line-height: 1.5;
	}
	.esteem-problem__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (min-width: 1024px) {
	.esteem-problem__inner {
		padding: 0 4rem;
	}
	.esteem-problem__grid {
		gap: 3.5rem;
	}
}

/* ==========================================================================
   Achievement
   ========================================================================== */

.esteem-achievement {
	position: relative;
	padding: 6rem 0;
	overflow: hidden;
	background: var(--esteem-navy);
}
.esteem-achievement__bg {
	position: absolute;
	inset: 0;
}
.esteem-achievement__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.esteem-achievement__bg-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(21,48,40,0.85) 0%, rgba(21,48,40,0.92) 100%);
}
.esteem-achievement__inner {
	max-width: 80rem;
	margin: 0 auto;
	padding: 0 1.5rem;
	position: relative;
	z-index: 10;
}
.esteem-achievement__header {
	text-align: center;
	margin-bottom: 4rem;
}
.esteem-achievement__tag {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--esteem-pink);
	letter-spacing: 0.4em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}
.esteem-achievement__title {
	font-size: 1.5rem;
	font-family: 'Shippori Mincho', serif;
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.025em;
}
.esteem-achievement__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}
.esteem-achievement__item {
	text-align: center;
}
.esteem-achievement__value-wrap {
	margin-bottom: 1rem;
}
.esteem-achievement__value {
	font-family: 'Shippori Mincho', serif;
	font-weight: 700;
	font-size: 3rem;
	color: #fff;
	transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.esteem-achievement__item:hover .esteem-achievement__value {
	color: var(--esteem-pink);
}
.esteem-achievement__unit {
	font-family: 'Shippori Mincho', serif;
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--esteem-pink);
	margin-left: 0.25rem;
}
.esteem-achievement__label {
	font-weight: 700;
	color: var(--esteem-pink);
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
	font-family: 'Shippori Mincho', serif;
	text-transform: uppercase;
}
.esteem-achievement__desc {
	color: rgb(203, 213, 225);
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 1.625;
	max-width: 280px;
	margin: 0 auto;
}

@media (min-width: 768px) {
	.esteem-achievement {
		padding: 8rem 0;
	}
	.esteem-achievement__header {
		margin-bottom: 5rem;
	}
	.esteem-achievement__title {
		font-size: 2.25rem;
	}
	.esteem-achievement__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 4rem;
	}
	.esteem-achievement__value {
		font-size: 4.5rem;
	}
	.esteem-achievement__unit {
		font-size: 1.5rem;
	}
}
@media (min-width: 1024px) {
	.esteem-achievement__inner {
		padding: 0 4rem;
	}
}

/* CountUp observer animation */
.esteem-achievement__value[data-countup] {
	display: inline-block;
}

/* ==========================================================================
   Methodology
   ========================================================================== */

.esteem-methodology {
	padding: 4rem 0;
	background: var(--esteem-navy);
	color: #fff;
	overflow: hidden;
}
.esteem-methodology__inner {
	max-width: 80rem;
	margin: 0 auto;
	padding: 0 1.5rem;
}
.esteem-methodology__wrap {
	display: flex;
	flex-direction: column;
	gap: 4rem;
	align-items: flex-start;
}
.esteem-methodology__left {
	width: 100%;
}
.esteem-methodology__tag {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--esteem-pink);
	letter-spacing: 0.3em;
	margin-bottom: 2rem;
	text-transform: uppercase;
}
.esteem-methodology__heading {
	font-size: 1.5rem;
	font-family: 'Shippori Mincho', serif;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 2rem;
	letter-spacing: -0.025em;
}
.esteem-methodology__heading-highlight {
	color: var(--esteem-pink);
}
.esteem-methodology__desc {
	color: rgb(203, 213, 225);
	font-size: 1rem;
	line-height: 1.625;
	font-weight: 300;
}
.esteem-methodology__right {
	width: 100%;
	display: grid;
	gap: 3rem;
}
.esteem-methodology__card {
	border-left: 1px solid rgba(255, 255, 255, 0.1);
	padding-left: 1.5rem;
	transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
}
.esteem-methodology__card:hover {
	border-left-color: var(--esteem-pink);
}
.esteem-methodology__card-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	font-family: 'Shippori Mincho', serif;
	letter-spacing: -0.025em;
	color: #fff;
}
.esteem-methodology__card-detail {
	color: rgb(148, 163, 184);
	line-height: 1.625;
	font-size: 0.875rem;
	font-weight: 300;
}

@media (min-width: 640px) {
	.esteem-methodology__right {
		grid-template-columns: repeat(2, 1fr);
		column-gap: 2rem;
	}
}
@media (min-width: 768px) {
	.esteem-methodology {
		padding: 6rem 0;
	}
	.esteem-methodology__heading {
		font-size: 3rem;
	}
}
@media (min-width: 1024px) {
	.esteem-methodology__inner {
		padding: 0 4rem;
	}
	.esteem-methodology__wrap {
		flex-direction: row;
	}
	.esteem-methodology__left {
		width: 45%;
	}
	.esteem-methodology__right {
		width: 55%;
	}
}

/* ==========================================================================
   Service
   ========================================================================== */

.esteem-service {
	padding: 4rem 0;
	background: var(--esteem-soft);
}
.esteem-service__inner {
	max-width: 80rem;
	margin: 0 auto;
	padding: 0 1.5rem;
}
.esteem-service__header {
	text-align: center;
	margin-bottom: 4rem;
}
.esteem-service__tag {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--esteem-navy);
	letter-spacing: 0.4em;
	margin-bottom: 1rem;
	text-transform: uppercase;
}
.esteem-service__title {
	font-size: 1.5rem;
	font-family: 'Shippori Mincho', serif;
	font-weight: 700;
	color: var(--esteem-navy);
	letter-spacing: -0.025em;
}
.esteem-service__grid {
	display: grid;
	gap: 2rem;
}
.esteem-service__card {
	background: #fff;
	padding: 1.5rem;
	border-radius: 2rem;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
	border: 1px solid var(--esteem-line);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.esteem-service__card-tag {
	font-weight: 700;
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	display: block;
	margin-bottom: 0.5rem;
}
.esteem-service__card-tag--pink {
	color: var(--esteem-pink);
}
.esteem-service__card-tag--gold {
	color: var(--esteem-gold);
}
.esteem-service__card-heading {
	font-size: 1.25rem;
	font-family: 'Shippori Mincho', serif;
	font-weight: 700;
	color: var(--esteem-navy);
}
.esteem-service__card-header {
	margin-bottom: 1.5rem;
}
.esteem-service__card-list {
	list-style: none;
	padding: 0;
	margin: 0 0 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.esteem-service__item-title {
	font-weight: 700;
	color: var(--esteem-navy);
	font-size: 0.875rem;
	margin-bottom: 0.25rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.esteem-service__item-dot {
	width: 0.25rem;
	height: 0.25rem;
	border-radius: 50%;
	flex-shrink: 0;
}
.esteem-service__item-dot--pink {
	background: var(--esteem-pink);
}
.esteem-service__item-dot--gold {
	background: var(--esteem-gold);
}
.esteem-service__item-desc {
	color: rgb(100, 116, 139);
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 1.625;
	padding-left: 0.75rem;
}
.esteem-service__card-btn {
	text-align: center;
}

@media (min-width: 768px) {
	.esteem-service {
		padding: 6rem 0;
	}
	.esteem-service__title {
		font-size: 1.875rem;
	}
	.esteem-service__card {
		padding: 2.5rem;
		border-radius: 2.5rem;
	}
}
@media (min-width: 1024px) {
	.esteem-service__inner {
		padding: 0 4rem;
	}
	.esteem-service__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ==========================================================================
   Profile
   ========================================================================== */

.esteem-profile {
	padding: 4rem 0;
	background: #fff;
}
.esteem-profile__inner {
	max-width: 80rem;
	margin: 0 auto;
	padding: 0 1.5rem;
}
.esteem-profile__card {
	background: var(--esteem-soft);
	border-radius: 2rem;
	padding: 1.5rem;
	border: 1px solid rgba(255, 139, 152, 0.1);
	position: relative;
	overflow: hidden;
}
.esteem-profile__wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.5rem;
	position: relative;
	z-index: 10;
}
.esteem-profile__image-wrap {
	width: 100%;
	flex-shrink: 0;
}
.esteem-profile__image-wrap img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: 1rem;
	box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
	filter: grayscale(0.1);
}
.esteem-profile__body {
	flex: 1;
	width: 100%;
}
.esteem-profile__header {
	margin-bottom: 2rem;
	text-align: center;
}
.esteem-profile__tag {
	color: var(--esteem-gold);
	font-weight: 700;
	font-size: 0.75rem;
	letter-spacing: 0.4em;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}
.esteem-profile__name {
	font-size: 1.875rem;
	font-family: 'Shippori Mincho', serif;
	font-weight: 700;
	color: var(--esteem-navy);
	margin-bottom: 0.5rem;
}
.esteem-profile__role {
	color: var(--esteem-pink);
	font-weight: 700;
	font-size: 0.75rem;
	letter-spacing: 0.1em;
}
.esteem-profile__bio {
	color: rgb(71, 85, 105);
	line-height: 1.625;
	margin-bottom: 2rem;
	font-size: 0.875rem;
	font-weight: 300;
	text-align: justify;
}
.esteem-profile__qualifications {
	border-top: 1px solid var(--esteem-line);
	padding-top: 2rem;
}
.esteem-profile__qual-title {
	font-weight: 700;
	color: var(--esteem-navy);
	font-size: 0.75rem;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	display: inline-block;
}
.esteem-profile__qual-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	color: rgb(100, 116, 139);
	font-size: 0.875rem;
	font-weight: 300;
}
.esteem-profile__qual-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
}
.esteem-profile__qual-dot {
	width: 0.375rem;
	height: 0.375rem;
	margin-top: 0.375rem;
	flex-shrink: 0;
	background: var(--esteem-pink);
	border-radius: 50%;
}

@media (min-width: 640px) {
	.esteem-profile__image-wrap {
		width: 66.6667%;
	}
}
@media (min-width: 768px) {
	.esteem-profile {
		padding: 6rem 0;
	}
	.esteem-profile__card {
		padding: 4rem;
		border-radius: 3rem;
	}
}
@media (min-width: 1024px) {
	.esteem-profile__inner {
		padding: 0 4rem;
	}
	.esteem-profile__wrap {
		flex-direction: row;
		align-items: flex-start;
		gap: 4rem;
	}
	.esteem-profile__image-wrap {
		width: 30%;
	}
	.esteem-profile__header {
		text-align: left;
	}
}

/* ==========================================================================
   CTA
   ========================================================================== */

.esteem-cta {
	padding: 5rem 0;
	background: var(--esteem-navy);
	color: #fff;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.esteem-cta__inner {
	max-width: 56rem;
	margin: 0 auto;
	padding: 0 1.5rem;
	position: relative;
	z-index: 10;
}
.esteem-cta__heading {
	font-size: 1.5rem;
	font-family: 'Shippori Mincho', serif;
	font-weight: 700;
	margin-bottom: 2.5rem;
	line-height: 1.6;
	letter-spacing: -0.025em;
	color: #fff;
}
.esteem-cta__heading-highlight {
	color: var(--esteem-pink);
}
.esteem-cta__desc {
	color: rgb(203, 213, 225);
	margin-bottom: 3rem;
	font-size: 0.875rem;
	font-weight: 300;
	max-width: 36rem;
	margin-left: auto;
	margin-right: auto;
}
.esteem-cta__buttons {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: center;
	align-items: center;
}

@media (min-width: 640px) {
	.esteem-cta__buttons {
		flex-direction: row;
	}
}
@media (min-width: 768px) {
	.esteem-cta {
		padding: 8rem 0;
	}
	.esteem-cta__heading {
		font-size: 2.25rem;
		line-height: 1.4;
	}
	.esteem-cta__desc {
		font-size: 1rem;
	}
}
