/* ==========================================================================
   About page hero
   ========================================================================== */

.about-hero {
	position: relative;
	width: 100%;
	min-height: 600px;
	overflow: hidden;
	background-color: #ded8ce;
	background-image: var(--about-hero-background);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	isolation: isolate;
}

.about-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(
			90deg,
			rgb(246 240 231 / 91%) 0%,
			rgb(246 240 231 / 82%) 25%,
			rgb(246 240 231 / 44%) 46%,
			rgb(246 240 231 / 5%) 69%,
			transparent 100%
		);
	pointer-events: none;
}

.about-hero__container {
	position: relative;
	z-index: 2;
	width: min(calc(100% - 80px), 1660px);
	min-height: inherit;
	margin-inline: auto;
}

.about-hero__content {
	width: min(940px, 61%);
	padding-top: 100px;
	padding-left: 70px;
}

.about-hero__content-frame {
	position: relative;
	padding-left: 30px;
}

/*
 * The vertical line now begins beside the heading
 * and continues below the paragraphs.
 */
.about-hero__vertical-line {
	position: absolute;
	top: 72px;
	bottom: 0;
	left: 0;
	width: 2px;
	background: #929a9b;
	transform: scaleY(0);
	transform-origin: top center;
	transition:
		transform 1100ms cubic-bezier(0.65, 0, 0.35, 1);
}

.about-hero.is-visible .about-hero__vertical-line {
	transform: scaleY(1);
	transition-delay: 130ms;
}

.about-hero__heading-wrap {
	position: relative;
	padding-bottom: 28px;
}

.about-hero__title {
	margin: 0;
	color: #006737;
	font-size: clamp(50px, 4vw, 60px);
	font-weight: 500;
	line-height: 1.22;
	letter-spacing: -0.025em;
}

.about-hero__title-line {
	display: block;
	opacity: 0;
	filter: blur(5px);
	transform: translate3d(-55px, 0, 0);
	transition:
		opacity 850ms ease,
		filter 700ms ease,
		transform 1000ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-hero.is-visible .about-hero__title-line {
	opacity: 1;
	filter: blur(0);
	transform: translate3d(0, 0, 0);
}

.about-hero.is-visible .about-hero__title-line--first {
	transition-delay: 80ms;
}

.about-hero.is-visible .about-hero__title-line--second {
	transition-delay: 210ms;
}

/*
 * Horizontal line immediately beneath the heading.
 */
.about-hero__horizontal-line {
	position: absolute;
	bottom: 0;
	left: -30px;
	display: block;
	width: 138px;
	height: 2px;
	background: #929a9b;
	transform: scaleX(0);
	transform-origin: left center;
	transition:
		transform 700ms cubic-bezier(0.65, 0, 0.35, 1);
}

.about-hero.is-visible .about-hero__horizontal-line {
	transform: scaleX(1);
	transition-delay: 870ms;
}

.about-hero__description {
	max-width: 720px;
	padding-top: 27px;
	color: #5b5b5b;
}

.about-hero__paragraph {
	margin: 0;
	font-size: clamp(25px, 2vw, 30px);
	font-weight: 300;
	line-height: 1.24;
	letter-spacing: -0.01em;
	opacity: 0;
	filter: blur(4px);
	transform: translate3d(38px, 20px, 0);
	transition:
		opacity 800ms ease,
		filter 700ms ease,
		transform 950ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-hero__paragraph--first {
	max-width: 650px;
	margin-bottom: 22px;
}

.about-hero__paragraph--second {
	max-width: 720px;
}

.about-hero.is-visible .about-hero__paragraph {
	opacity: 1;
	filter: blur(0);
	transform: translate3d(0, 0, 0);
}

.about-hero.is-visible .about-hero__paragraph--first {
	transition-delay: 570ms;
}

.about-hero.is-visible .about-hero__paragraph--second {
	transition-delay: 720ms;
}

.about-hero__brand {
	position: absolute;
	right: 58px;
	bottom: 24px;
	z-index: 3;
	opacity: 0;
	filter: blur(4px);
	transform: translate3d(28px, 16px, 0);
	transition:
		opacity 750ms ease,
		filter 650ms ease,
		transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-hero.is-visible .about-hero__brand {
	opacity: 1;
	filter: blur(0);
	transform: translate3d(0, 0, 0);
	transition-delay: 950ms;
}

.about-hero__brand-logo {
	display: block;
	width: clamp(165px, 12vw, 230px);
	height: auto;
}

@media (max-width: 1500px) {
	.about-hero {
		min-height: 700px;
	}

	.about-hero__content {
		width: min(820px, 61%);
		padding-top: 120px;
		padding-left: 45px;
	}

	.about-hero__title {
		font-size: clamp(46px, 4vw, 66px);
	}

	.about-hero__paragraph {
		font-size: clamp(22px, 2vw, 29px);
	}
}

@media (max-width: 1100px) {
	.about-hero {
		min-height: 670px;
		background-position: 62% center;
	}

	.about-hero__overlay {
		background:
			linear-gradient(
				90deg,
				rgb(246 240 231 / 96%) 0%,
				rgb(246 240 231 / 87%) 44%,
				rgb(246 240 231 / 35%) 73%,
				transparent 100%
			);
	}

	.about-hero__container {
		width: min(calc(100% - 50px), 1350px);
	}

	.about-hero__content {
		width: 70%;
		padding-top: 110px;
		padding-left: 20px;
	}

	.about-hero__content-frame {
		padding-left: 26px;
	}

	.about-hero__title {
		font-size: 48px;
	}

	.about-hero__paragraph {
		font-size: 23px;
	}

	.about-hero__vertical-line {
		top: 56px;
	}

	.about-hero__horizontal-line {
		left: -26px;
		width: 120px;
	}

	.about-hero__brand {
		right: 30px;
		bottom: 20px;
	}
}

@media (max-width: 767px) {
	.about-hero {
		min-height: 720px;
		background-position: 68% center;
	}

	.about-hero__overlay {
		background:
			linear-gradient(
				to bottom,
				rgb(246 240 231 / 96%) 0%,
				rgb(246 240 231 / 91%) 49%,
				rgb(246 240 231 / 50%) 73%,
				rgb(0 0 0 / 8%) 100%
			);
	}

	.about-hero__container {
		width: calc(100% - 36px);
	}

	.about-hero__content {
		width: 100%;
		padding-top: 76px;
		padding-left: 0;
	}

	.about-hero__content-frame {
		padding-left: 19px;
	}

	.about-hero__heading-wrap {
		padding-bottom: 20px;
	}

	.about-hero__title {
		font-size: clamp(34px, 9vw, 46px);
		line-height: 1.16;
	}

	.about-hero__vertical-line {
		top: 40px;
		width: 1px;
	}

	.about-hero__horizontal-line {
		left: -19px;
		width: 74px;
		height: 1px;
	}

	.about-hero__description {
		padding-top: 23px;
	}

	.about-hero__paragraph {
		max-width: 96%;
		font-size: 19px;
		line-height: 1.4;
	}

	.about-hero__paragraph--first {
		margin-bottom: 18px;
	}

	.about-hero__brand {
		right: 20px;
		bottom: 20px;
	}

	.about-hero__brand-logo {
		width: 150px;
	}
}

@media (max-width: 480px) {
	.about-hero {
		min-height: 690px;
	}

	.about-hero__content {
		padding-top: 65px;
	}

	.about-hero__title {
		font-size: 34px;
	}

	.about-hero__paragraph {
		font-size: 17px;
	}

	.about-hero__brand-logo {
		width: 132px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.about-hero__title-line,
	.about-hero__paragraph,
	.about-hero__brand {
		opacity: 1;
		filter: none;
		transform: none;
		transition: none;
	}

	.about-hero__vertical-line,
	.about-hero__horizontal-line {
		transform: scale(1);
		transition: none;
	}
}
/* ==========================================================================
   About Futurearth introduction
   ========================================================================== */

.about-introduction {
	position: relative;
	display: block;
	width: 100%;
	padding: 82px 0 70px;
	overflow: hidden;
	background: #ffffff;
	visibility: visible;
}

.about-introduction__container {
	width: min(calc(100% - 80px), 1320px);
	margin-inline: auto;
}

.about-introduction__grid {
	display: grid;
	grid-template-columns: 536px minmax(0, 1fr);
	align-items: start;
	gap: 42px;
}

.about-introduction__visual,
.about-introduction__content {
	min-width: 0;
}

/* ==========================================================================
   Image
   ========================================================================== */

.about-introduction__image-frame {
	position: relative;
	width: 100%;
	overflow: hidden;
	aspect-ratio: 536 / 630;
	background: #ece9e2;
}

.about-introduction__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.about-introduction__image-shine {
	position: absolute;
	top: 0;
	left: -130%;
	width: 48%;
	height: 100%;
	background:
		linear-gradient(
			90deg,
			transparent,
			rgb(255 255 255 / 22%),
			transparent
		);
	pointer-events: none;
	transform: skewX(-18deg);
}

/* ==========================================================================
   Content
   ========================================================================== */

.about-introduction__content {
	padding-top: 7px;
}

.about-introduction__header {
	margin-bottom: 8px;
}

.about-introduction__title {
	margin: 0 0 14px;
	color: #bb8727;
	font-size: 30px;
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: -0.015em;
}

.about-introduction__subtitle {
	max-width: 520px;
	margin: 0;
	color: #c89331;
	font-size: 22px;
	font-weight: 300;
	line-height: 1.23;
	letter-spacing: 0.015em;
}

.about-introduction__description {
	margin-top: 8px;
	color: #575757;
}

.about-introduction__paragraph {
	margin: 0 0 18px;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.28;
	letter-spacing: -0.005em;
}

.about-introduction__paragraph:last-child {
	margin-bottom: 0;
}

/* ==========================================================================
   Animation initial state
   Only applies when JavaScript confirms it is active
   ========================================================================== */

html.has-js .about-introduction:not(.is-visible)
.about-introduction__image-frame {
	clip-path: inset(100% 0 0 0);
}

html.has-js .about-introduction:not(.is-visible)
.about-introduction__image {
	opacity: 0;
	filter: brightness(0.9);
	transform: scale(1.08);
}

html.has-js .about-introduction:not(.is-visible)
.about-introduction__title {
	opacity: 0;
	filter: blur(5px);
	transform: translate3d(55px, 0, 0);
}

html.has-js .about-introduction:not(.is-visible)
.about-introduction__subtitle {
	opacity: 0;
	filter: blur(4px);
	transform: translate3d(45px, 14px, 0);
}

html.has-js .about-introduction:not(.is-visible)
.about-introduction__paragraph {
	opacity: 0;
	filter: blur(3px);
	transform: translate3d(0, 26px, 0);
}

/* ==========================================================================
   Animation transitions
   ========================================================================== */

.about-introduction__image-frame {
	transition:
		clip-path 1050ms cubic-bezier(0.76, 0, 0.24, 1),
		box-shadow 400ms ease,
		transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-introduction__image {
	transition:
		opacity 700ms ease 160ms,
		transform 1400ms cubic-bezier(0.22, 1, 0.36, 1) 120ms,
		filter 900ms ease 160ms;
}

.about-introduction__title {
	transition:
		opacity 800ms ease 180ms,
		filter 700ms ease 180ms,
		transform 950ms cubic-bezier(0.22, 1, 0.36, 1) 180ms;
}

.about-introduction__subtitle {
	transition:
		opacity 750ms ease 300ms,
		filter 650ms ease 300ms,
		transform 900ms cubic-bezier(0.22, 1, 0.36, 1) 300ms;
}

.about-introduction__paragraph {
	transition:
		opacity 700ms ease,
		filter 600ms ease,
		transform 850ms cubic-bezier(0.22, 1, 0.36, 1);

	transition-delay:
		calc(410ms + (var(--paragraph-index, 0) * 105ms));
}

/* ==========================================================================
   Visible state
   ========================================================================== */

.about-introduction.is-visible
.about-introduction__image-frame {
	clip-path: inset(0);
}

.about-introduction.is-visible
.about-introduction__image,
.about-introduction.is-visible
.about-introduction__title,
.about-introduction.is-visible
.about-introduction__subtitle,
.about-introduction.is-visible
.about-introduction__paragraph {
	opacity: 1;
	visibility: visible;
	filter: none;
	transform: none;
}

.about-introduction.is-visible
.about-introduction__image-shine {
	animation:
		about-introduction-shine
		1050ms
		cubic-bezier(0.22, 1, 0.36, 1)
		850ms
		both;
}

@keyframes about-introduction-shine {
	from {
		left: -130%;
	}

	to {
		left: 155%;
	}
}

/* ==========================================================================
   Image hover
   ========================================================================== */

@media (hover: hover) and (pointer: fine) {
	.about-introduction__image-frame:hover {
		box-shadow: 0 24px 48px rgb(0 0 0 / 13%);
		transform: translateY(-5px);
	}

	.about-introduction__image-frame:hover
	.about-introduction__image {
		transform: scale(1.035);
	}
}

/* ==========================================================================
   Smaller desktop
   ========================================================================== */

@media (max-width: 1250px) {
	.about-introduction__container {
		width: min(calc(100% - 60px), 1200px);
	}

	.about-introduction__grid {
		grid-template-columns: minmax(390px, 46%) minmax(0, 1fr);
		gap: 38px;
	}

	.about-introduction__title {
		font-size: 31px;
	}

	.about-introduction__subtitle {
		font-size: 23px;
	}

	.about-introduction__paragraph {
		font-size: 14px;
		line-height: 1.35;
	}
}

/* ==========================================================================
   Tablet
   ========================================================================== */

@media (max-width: 991px) {
	.about-introduction {
		padding: 65px 0;
	}

	.about-introduction__container {
		width: calc(100% - 50px);
	}

	.about-introduction__grid {
		grid-template-columns: minmax(300px, 42%) minmax(0, 1fr);
		gap: 30px;
	}

	.about-introduction__title {
		font-size: 28px;
	}

	.about-introduction__subtitle {
		font-size: 21px;
	}

	.about-introduction__paragraph {
		margin-bottom: 14px;
		font-size: 13px;
	}
}

/* ==========================================================================
   Mobile
   ========================================================================== */

@media (max-width: 767px) {
	.about-introduction {
		padding: 48px 0 54px;
	}

	.about-introduction__container {
		width: calc(100% - 36px);
	}

	.about-introduction__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.about-introduction__visual {
		width: 100%;
		max-width: 520px;
		margin-inline: auto;
	}

	.about-introduction__image-frame {
		aspect-ratio: 4 / 4.8;
	}

	.about-introduction__content {
		padding-top: 0;
	}

	.about-introduction__title {
		margin-bottom: 10px;
		font-size: 28px;
	}

	.about-introduction__subtitle {
		max-width: 100%;
		font-size: 21px;
		line-height: 1.3;
	}

	.about-introduction__description {
		margin-top: 15px;
	}

	.about-introduction__paragraph {
		margin-bottom: 17px;
		font-size: 14px;
		line-height: 1.48;
	}
}

@media (max-width: 480px) {
	.about-introduction__title {
		font-size: 25px;
	}

	.about-introduction__subtitle {
		font-size: 19px;
	}
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
	.about-introduction__image-frame {
		clip-path: inset(0) !important;
		transition: none;
	}

	.about-introduction__image,
	.about-introduction__title,
	.about-introduction__subtitle,
	.about-introduction__paragraph {
		opacity: 1 !important;
		visibility: visible !important;
		filter: none !important;
		transform: none !important;
		transition: none;
	}

	.about-introduction__image-shine {
		display: none;
	}
}
/* ==========================================================================
   Mission and Vision section
   ========================================================================== */

.about-purpose {
	--purpose-gold: #bd8724;
	--purpose-line-color: #cccccc;
	--purpose-heading-color: #303030;
	--purpose-text-color: #575757;

	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
	background-color: #f1f1f1;
}

.about-purpose__container {
	position: relative;
	width: min(calc(100% - 80px), 1280px);
	min-height: 510px;
	margin-inline: auto;
}

/* ==========================================================================
   Decorative line wrapper
   ========================================================================== */

.about-purpose__lines {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: block;
	overflow: visible;
	pointer-events: none;
}

.about-purpose__line {
	position: absolute;
	z-index: 1;
	display: block;
	background-color: var(--purpose-line-color);
	opacity: 1;
	will-change: transform;
	backface-visibility: hidden;
}

/* ==========================================================================
   Decorative line positions
   These class names exactly match mission-vision.php
   ========================================================================== */

/*
 * Main centre vertical line.
 * Draws downward from the top.
 */

.about-purpose__line--main-vertical {
	top: 0;
	left: 52.5%;
	width: 1.5px;
	height: 100%;
	transform: scaleY(1);
	transform-origin: top center;
	transition:
		transform 1400ms cubic-bezier(0.65, 0, 0.35, 1);
}

/*
 * Vision horizontal line.
 * Draws from the centre towards the right.
 */

.about-purpose__line--vision-horizontal {
	top: 100px;
	left: 52.5%;
	width: 31%;
	height: 1.5px;
	transform: scaleX(1);
	transform-origin: left center;
	transition:
		transform 800ms cubic-bezier(0.65, 0, 0.35, 1);
}

/*
 * Main Mission horizontal line.
 * Draws from the centre towards the left.
 */

.about-purpose__line--mission-main-horizontal {
	top: 222px;
	left: 0;
	width: 52.5%;
	height: 1.5px;
	transform: scaleX(1);
	transform-origin: right center;
	transition:
		transform 950ms cubic-bezier(0.65, 0, 0.35, 1);
}

/*
 * Mission vertical branch.
 * Draws downward.
 */

.about-purpose__line--mission-vertical {
	top: 222px;
	left: 16.2%;
	width: 1.5px;
	height: 56px;
	transform: scaleY(1);
	transform-origin: top center;
	transition:
		transform 550ms cubic-bezier(0.65, 0, 0.35, 1);
}

/*
 * Mission short horizontal branch.
 * Draws from right to left.
 */

.about-purpose__line--mission-small-horizontal {
	top: 276px;
	left: 8.2%;
	width: 8%;
	height: 1.5px;
	transform: scaleX(1);
	transform-origin: right center;
	transition:
		transform 550ms cubic-bezier(0.65, 0, 0.35, 1);
}

/*
 * Bottom centre vertical branch.
 * Uses top instead of bottom, so it draws downward only.
 */

.about-purpose__line--bottom-vertical {
	top: 414px;
	left: 52.5%;
	width: 1.5px;
	height: 96px;
	transform: scaleY(1);
	transform-origin: top center;
	transition:
		transform 650ms cubic-bezier(0.65, 0, 0.35, 1);
}

/*
 * Bottom horizontal branch.
 * Draws from right to left.
 */

.about-purpose__line--bottom-horizontal {
	top: 508px;
	right: 47.5%;
	width: 8%;
	height: 1.5px;
	transform: scaleX(1);
	transform-origin: right center;
	transition:
		transform 550ms cubic-bezier(0.65, 0, 0.35, 1);
}

/* ==========================================================================
   Zero-length starting state
   JavaScript adds purpose-lines-ready before the section enters the viewport
   ========================================================================== */

.about-purpose.purpose-lines-ready:not(.purpose-lines-visible)
.about-purpose__line--main-vertical,
.about-purpose.purpose-lines-ready:not(.purpose-lines-visible)
.about-purpose__line--mission-vertical,
.about-purpose.purpose-lines-ready:not(.purpose-lines-visible)
.about-purpose__line--bottom-vertical {
	transform: scaleY(0);
}

.about-purpose.purpose-lines-ready:not(.purpose-lines-visible)
.about-purpose__line--vision-horizontal,
.about-purpose.purpose-lines-ready:not(.purpose-lines-visible)
.about-purpose__line--mission-main-horizontal,
.about-purpose.purpose-lines-ready:not(.purpose-lines-visible)
.about-purpose__line--mission-small-horizontal,
.about-purpose.purpose-lines-ready:not(.purpose-lines-visible)
.about-purpose__line--bottom-horizontal {
	transform: scaleX(0);
}

/* ==========================================================================
   Line drawing sequence
   JavaScript adds purpose-lines-visible when the user enters the section
   ========================================================================== */

.about-purpose.purpose-lines-visible
.about-purpose__line--main-vertical {
	transform: scaleY(1);
	transition-delay: 0ms;
}

.about-purpose.purpose-lines-visible
.about-purpose__line--vision-horizontal {
	transform: scaleX(1);
	transition-delay: 400ms;
}

.about-purpose.purpose-lines-visible
.about-purpose__line--mission-main-horizontal {
	transform: scaleX(1);
	transition-delay: 550ms;
}

.about-purpose.purpose-lines-visible
.about-purpose__line--bottom-vertical {
	transform: scaleY(1);
	transition-delay: 800ms;
}

.about-purpose.purpose-lines-visible
.about-purpose__line--mission-vertical {
	transform: scaleY(1);
	transition-delay: 900ms;
}

.about-purpose.purpose-lines-visible
.about-purpose__line--bottom-horizontal {
	transform: scaleX(1);
	transition-delay: 1100ms;
}

.about-purpose.purpose-lines-visible
.about-purpose__line--mission-small-horizontal {
	transform: scaleX(1);
	transition-delay: 1200ms;
}

/* ==========================================================================
   Main heading
   ========================================================================== */

.about-purpose__heading {
	position: absolute;
	top: 56px;
	left: 2.2%;
	z-index: 2;
	width: 43%;
}

.about-purpose__eyebrow {
	margin: 0;
	color: var(--purpose-gold);
	font-size: clamp(38px, 3.5vw, 38px);
	font-weight: 300;
	line-height: 1.08;
	letter-spacing: 0.01em;
}

.about-purpose__title {
	margin: 7px 0 0;
	color: var(--purpose-gold);
	font-size: clamp(38px, 3.7vw, 38px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.02em;
}

/* ==========================================================================
   Mission and Vision section
   ========================================================================== */

.about-purpose {
	--purpose-gold: #bd8724;
	--purpose-line-color: #cccccc;
	--purpose-heading-color: #303030;
	--purpose-text-color: #575757;

	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
	background-color: #f1f1f1;
}

.about-purpose__container {
	position: relative;
	width: min(calc(100% - 80px), 1280px);
	min-height: 510px;
	margin-inline: auto;
}

/* ==========================================================================
   Decorative lines
   JavaScript controls their movement directly
   ========================================================================== */

.about-purpose__lines {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: block;
	overflow: visible;
	pointer-events: none;
}

.about-purpose__line {
	position: absolute;
	z-index: 1;
	display: block;
	background-color: #bd8724;
	opacity: 1;
	backface-visibility: hidden;
	will-change: transform, opacity;
}

/* Main centre vertical line */

.about-purpose__line--main-vertical {
	top: 0;
	left: 52.5%;
	width: 1.5px;
	height: 100%;
	transform-origin: top center;
}

/* Vision horizontal line */

.about-purpose__line--vision-horizontal {
	top: 100px;
	left: 52.5%;
	width: 31%;
	height: 1.5px;
	transform-origin: left center;
}

/* Main Mission horizontal line */

.about-purpose__line--mission-main-horizontal {
	top: 222px;
	left: 0;
	width: 52.5%;
	height: 1.5px;
	transform-origin: right center;
}

/* Mission vertical branch */

.about-purpose__line--mission-vertical {
	top: 222px;
	left: 16.2%;
	width: 1.5px;
	height: 56px;
	transform-origin: top center;
}

/* Mission short horizontal branch */

.about-purpose__line--mission-small-horizontal {
	top: 276px;
	left: 8.2%;
	width: 8%;
	height: 1.5px;
	transform-origin: right center;
}

/* Bottom vertical branch */

.about-purpose__line--bottom-vertical {
	top: 414px;
	left: 52.5%;
	width: 1.5px;
	height: 96px;
	transform-origin: top center;
}

/* Bottom horizontal branch */

.about-purpose__line--bottom-horizontal {
	top: 508px;
	right: 47.5%;
	width: 8%;
	height: 1.5px;
	transform-origin: right center;
}

/* ==========================================================================
   Main heading
   ========================================================================== */

.about-purpose__heading {
	position: absolute;
	top: 56px;
	left: 2.2%;
	z-index: 2;
	width: 43%;
}

.about-purpose__eyebrow {
	margin: 0;
	color: var(--purpose-gold);
	font-size: clamp(38px, 3.5vw, 38px);
	font-weight: 300;
	line-height: 1.08;
	letter-spacing: 0.01em;
}

.about-purpose__title {
	margin: 7px 0 0;
	color: var(--purpose-gold);
	font-size: clamp(38px, 3.7vw, 38px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.02em;
}

/* ==========================================================================
   Mission and Vision content
   ========================================================================== */

.about-purpose__item {
	position: absolute;
	z-index: 2;
	color: var(--purpose-heading-color);
}

.about-purpose__item--mission {
	top: 250px;
	left: 18.3%;
	width: 36%;
	max-width: 480px;
}

.about-purpose__item--vision {
	top: 145px;
	left: 56%;
	width: 39%;
	max-width: 500px;
}

/* ==========================================================================
   Item header and image icons
   ========================================================================== */

.about-purpose__item-header {
	display: flex;
	align-items: center;
	gap: 17px;
	margin-bottom: 21px;
}

.about-purpose__icon {
	display: inline-flex;
	flex: 0 0 66px;
	align-items: center;
	justify-content: center;
	width: 66px;
	height: 66px;
}

.about-purpose__icon-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

/* ==========================================================================
   Typography
   ========================================================================== */

.about-purpose__item-title {
	margin: 0;
	color: var(--purpose-heading-color);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	transition: color 250ms ease;
}

.about-purpose__item-heading {
	max-width: 450px;
	margin: 0 0 15px;
	color: var(--purpose-heading-color);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.22;
}

.about-purpose__item-text {
	max-width: 420px;
	margin: 0;
	color: var(--purpose-text-color);
	font-size: 17px;
	font-weight: 400;
	line-height: 1.35;
}

/* ==========================================================================
   Hover effects
   ========================================================================== */

@media (hover: hover) and (pointer: fine) {
	.about-purpose__icon-image {
		transition:
			transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
	}

	.about-purpose__item:hover
	.about-purpose__icon-image {
		transform: translateY(-3px) scale(1.05);
	}

	.about-purpose__item:hover
	.about-purpose__item-title {
		color: var(--purpose-gold);
	}
}

/* ==========================================================================
   Smaller desktop
   ========================================================================== */

@media (max-width: 1100px) {
	.about-purpose__container {
		width: min(calc(100% - 50px), 1100px);
		min-height: 540px;
	}

	.about-purpose__heading {
		left: 1%;
	}

	.about-purpose__eyebrow {
		font-size: 43px;
	}

	.about-purpose__title {
		font-size: 47px;
	}

	.about-purpose__item--mission {
		left: 13%;
		width: 39%;
	}

	.about-purpose__item--vision {
		left: 56%;
		width: 41%;
	}

	.about-purpose__line--bottom-vertical {
		top: 444px;
		height: 96px;
	}

	.about-purpose__line--bottom-horizontal {
		top: 538px;
	}

	.about-purpose__item-heading {
		font-size: 17px;
	}

	.about-purpose__item-text {
		font-size: 15px;
	}
}

/* ==========================================================================
   Tablet
   ========================================================================== */

@media (max-width: 900px) {
	.about-purpose__container {
		min-height: 560px;
	}

	.about-purpose__heading {
		top: 48px;
		width: 47%;
	}

	.about-purpose__eyebrow {
		font-size: 38px;
	}

	.about-purpose__title {
		font-size: 43px;
	}

	.about-purpose__item--mission {
		top: 255px;
		left: 11%;
		width: 41%;
	}

	.about-purpose__item--vision {
		top: 142px;
		left: 56%;
		width: 42%;
	}

	.about-purpose__line--bottom-vertical {
		top: 464px;
		height: 96px;
	}

	.about-purpose__line--bottom-horizontal {
		top: 558px;
	}

	.about-purpose__icon {
		flex-basis: 58px;
		width: 58px;
		height: 58px;
	}

	.about-purpose__item-title {
		font-size: 21px;
	}

	.about-purpose__item-heading {
		font-size: 16px;
	}

	.about-purpose__item-text {
		font-size: 14px;
		line-height: 1.42;
	}
}

/* ==========================================================================
   Mobile
   ========================================================================== */

@media (max-width: 767px) {
	.about-purpose {
		padding: 50px 0 58px;
	}

	.about-purpose__container {
		display: flex;
		flex-direction: column;
		width: calc(100% - 36px);
		min-height: 0;
	}

	.about-purpose__lines {
		display: none;
	}

	.about-purpose__heading,
	.about-purpose__item {
		position: relative;
		inset: auto;
		width: 100%;
		max-width: none;
		opacity: 1 !important;
		transform: none !important;
	}

	.about-purpose__heading {
		margin-bottom: 42px;
		padding-bottom: 25px;
		border-bottom: 1px solid var(--purpose-line-color);
	}

	.about-purpose__eyebrow {
		font-size: clamp(34px, 10vw, 44px);
	}

	.about-purpose__title {
		font-size: clamp(38px, 11vw, 49px);
	}

	.about-purpose__item {
		padding-left: 23px;
		border-left: 1px solid var(--purpose-line-color);
	}

	.about-purpose__item--mission {
		order: 2;
		margin-bottom: 45px;
	}

	.about-purpose__item--vision {
		order: 3;
	}

	.about-purpose__item-header {
		gap: 14px;
		margin-bottom: 18px;
	}

	.about-purpose__icon {
		flex-basis: 56px;
		width: 56px;
		height: 56px;
	}

	.about-purpose__item-title {
		font-size: 22px;
	}

	.about-purpose__item-heading {
		font-size: 17px;
		line-height: 1.3;
	}

	.about-purpose__item-text {
		font-size: 15px;
		line-height: 1.5;
	}
}

/* ==========================================================================
   Small mobile
   ========================================================================== */

@media (max-width: 480px) {
	.about-purpose {
		padding: 42px 0 50px;
	}

	.about-purpose__heading {
		margin-bottom: 35px;
	}

	.about-purpose__eyebrow {
		font-size: 31px;
	}

	.about-purpose__title {
		font-size: 38px;
	}

	.about-purpose__item {
		padding-left: 18px;
	}

	.about-purpose__item-header {
		align-items: flex-start;
	}

	.about-purpose__icon {
		flex-basis: 50px;
		width: 50px;
		height: 50px;
	}

	.about-purpose__item-title {
		padding-top: 8px;
		font-size: 20px;
	}

	.about-purpose__item-heading {
		font-size: 16px;
	}

	.about-purpose__item-text {
		font-size: 14px;
	}
}
/* ==========================================================================
   Core Values section
   ========================================================================== */

.about-values {
	--values-gold: #bd8724;
	--values-line: #cfcfcf;
	--values-heading: #303030;
	--values-text: #575757;

	position: relative;
	width: 100%;
	overflow: hidden;
	background-color: #f1f1f1;
}

.about-values__container {
	position: relative;
	width: min(calc(100% - 80px), 1280px);
	min-height: 620px;
	margin-inline: auto;
	padding: 7px 0 72px 105px;
}

/* ==========================================================================
   Left animated line
   ========================================================================== */

.about-values__line {
	position: absolute;
	top: 75px;
	bottom: 0;
	left: 0;
	width: 2px;
	background-color: #bd8724;
	transform: scaleY(1);
	transform-origin: top center;
	will-change: transform;
}

/*
 * JavaScript applies this class immediately.
 * It prevents the full line from appearing before the entrance animation.
 */

.about-values.is-values-ready
.about-values__line {
	transform: scaleY(0);
}

/*
 * JavaScript applies this when the section enters the viewport.
 */

.about-values.is-values-visible
.about-values__line {
	transform: scaleY(1);
	transition:
		transform 1450ms cubic-bezier(0.65, 0, 0.35, 1);
}

/* ==========================================================================
   Section heading
   ========================================================================== */

.about-values__header {
	position: relative;
	z-index: 2;
	margin-bottom: 42px;
	text-align: center;
}

.about-values__title {
	margin: 0;
	color: var(--values-heading);
	font-size: clamp(29px, 2vw, 38px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

/* ==========================================================================
   Values grid
   ========================================================================== */

.about-values__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: clamp(72px, 8vw, 145px);
	row-gap: 65px;
}

.about-values__item {
	min-width: 0;
}

.about-values__icon {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 82px;
	height: 82px;
	margin-bottom: 11px;
}

.about-values__icon-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: left center;
}

.about-values__item-title {
	margin: 0 0 10px;
	color: var(--values-heading);
	font-size: clamp(24px, 1.55vw, 30px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.025em;
}

.about-values__description {
	max-width: 445px;
	margin: 0;
	color: var(--values-text);
	font-size: clamp(18px, 1.25vw, 20px);
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: -0.01em;
}

/* ==========================================================================
   Content entrance state
   ========================================================================== */

.about-values.is-values-ready
[data-values-reveal] {
	opacity: 0;
	filter: blur(3px);
	transform: translate3d(0, 34px, 0);
}

.about-values.is-values-visible
[data-values-reveal] {
	opacity: 1;
	filter: none;
	transform: translate3d(0, 0, 0);
	transition:
		opacity 800ms ease,
		filter 700ms ease,
		transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   Icon hover
   ========================================================================== */

@media (hover: hover) and (pointer: fine) {
	.about-values__icon-image {
		transition:
			transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
	}

	.about-values__item:hover
	.about-values__icon-image {
		transform: translateY(-4px) scale(1.04);
	}
}

/* ==========================================================================
   Medium desktop
   ========================================================================== */

@media (max-width: 1300px) {
	.about-values__container {
		width: min(calc(100% - 60px), 1200px);
		padding-left: 80px;
	}

	.about-values__grid {
		column-gap: 70px;
	}

	.about-values__description {
		font-size: 19px;
	}
}

/* ==========================================================================
   Tablet
   ========================================================================== */

@media (max-width: 1024px) {
	.about-values__container {
		min-height: 0;
		padding-left: 60px;
	}

	.about-values__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 60px;
		row-gap: 55px;
	}

	.about-values__line {
		left: 0;
	}

	.about-values__description {
		max-width: 390px;
	}
}

/* ==========================================================================
   Mobile
   ========================================================================== */

@media (max-width: 767px) {
	.about-values__container {
		width: calc(100% - 36px);
		padding: 48px 0 55px 29px;
	}

	.about-values__line {
		top: 48px;
		left: 0;
		width: 2px;
	}

	.about-values__header {
		margin-bottom: 40px;
		text-align: left;
	}

	.about-values__title {
		font-size: 30px;
	}

	.about-values__grid {
		grid-template-columns: 1fr;
		row-gap: 42px;
	}

	.about-values__icon {
		width: 68px;
		height: 68px;
		margin-bottom: 10px;
	}

	.about-values__item-title {
		margin-bottom: 8px;
		font-size: 23px;
	}

	.about-values__description {
		max-width: 100%;
		font-size: 17px;
		line-height: 1.4;
	}
}

/* ==========================================================================
   Small mobile
   ========================================================================== */

@media (max-width: 480px) {
	.about-values__container {
		padding-left: 24px;
	}

	.about-values__title {
		font-size: 27px;
	}

	.about-values__icon {
		width: 62px;
		height: 62px;
	}

	.about-values__item-title {
		font-size: 21px;
	}

	.about-values__description {
		font-size: 16px;
	}
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
	.about-values__line,
	.about-values [data-values-reveal] {
		opacity: 1 !important;
		filter: none !important;
		transform: none !important;
		transition: none !important;
	}
}
/* ==========================================================================
   Leadership section
   ========================================================================== */

.about-leadership {
	--leadership-gold: #bd8724;
	--leadership-line-grey: #d0d0d0;
	--leadership-heading: #303030;
	--leadership-text: #666666;
	--leadership-background: #ffffff;

	position: relative;
	width: 100%;
	overflow: hidden;
	background-color: var(--leadership-background);
	padding-top: 50px;
}

.about-leadership__container {
	position: relative;
	width: min(calc(100% - 70px), 1280px);
	min-height: 1250px;
	margin-inline: auto;
	padding: 0 0 80px;
}

/* ==========================================================================
   Header
   ========================================================================== */

.about-leadership__header {
	position: relative;
	z-index: 3;
	margin-bottom: 55px;
	text-align: center;
}

.about-leadership__title {
	margin: 0;
	color: var(--leadership-gold);
	font-size: clamp(33px, 2.8vw, 38px);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.025em;
}

.about-leadership__subtitle {
	margin: 4px 0 0;
	color: #777777;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.4;
}

/* ==========================================================================
   Decorative line layer
   ========================================================================== */

.about-leadership__lines {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

.about-leadership__line {
	position: absolute;
	display: block;
	opacity: 1;
	backface-visibility: hidden;
	will-change: transform, opacity;
}

/*
 * Gold horizontal line between the first and second leaders.
 * Starts at the left edge and moves to the right.
 */

.about-leadership__line--first-horizontal {
	top: 454px;
	left: calc((100vw - 100%) / -2);
	width: calc(50% + ((100vw - 100%) / 2));
	height: 2px;
	background-color: var(--leadership-gold);
	transform-origin: left center;
}

/*
 * Gold vertical drop touching the second portrait.
 */

.about-leadership__line--first-vertical {
	top: 454px;
	left: 9%;
	width: 2px;
	height: 48px;
	background-color: var(--leadership-gold);
	transform-origin: top center;
}

/*
 * Long grey line on the far right.
 * Starts beside the first biography and moves downward.
 */

.about-leadership__line--right-vertical {
	top: 273px;
	right: 0;
	width: 2px;
	height: 475px;
	background-color: var(--leadership-line-grey);
	transform-origin: top center;
}

/*
 * Short grey vertical segment above the third row.
 */

.about-leadership__line--third-right-vertical {
	top: 850px;
	left: 57.5%;
	width: 2px;
	height: 60px;
	background-color: var(--leadership-line-grey);
	transform-origin: top center;
}

/*
 * Grey horizontal line leading towards the third portrait.
 * Starts at the right endpoint and moves left.
 */

.about-leadership__line--third-horizontal {
	top: 888px;
	left: 16.5%;
	width: 41%;
	height: 2px;
	background-color: var(--leadership-line-grey);
	transform-origin: right center;
}

/*
 * Grey vertical segment dropping onto the third portrait.
 */

.about-leadership__line--third-left-vertical {
	top: 888px;
	left: 16.5%;
	width: 2px;
	height: 47px;
	background-color: var(--leadership-line-grey);
	transform-origin: top center;
}

/* ==========================================================================
   Leader list
   ========================================================================== */

.about-leadership__list {
	position: relative;
	z-index: 2;
}

.about-leadership__leader {
	position: relative;
	display: grid;
	grid-template-columns: 250px minmax(0, 1fr);
	column-gap: 60px;
	align-items: start;
}

.about-leadership__leader--1 {
	margin-bottom: 98px;
}

.about-leadership__leader--2 {
	margin-bottom: 98px;
	padding-left: 0;
}

.about-leadership__leader--3 {
	padding-left: 0;
}

/* ==========================================================================
   Portraits
   ========================================================================== */

.about-leadership__portrait {
	position: relative;
	width: 250px;
	height: 312px;
	overflow: hidden;
	background-color: #333333;
}

.about-leadership__portrait-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

/* Image alignment matching the reference */

.about-leadership__leader--1
.about-leadership__portrait {
	margin-left: 22px;
}

.about-leadership__leader--2
.about-leadership__portrait,
.about-leadership__leader--3
.about-leadership__portrait {
	margin-left: 0;
}

/* ==========================================================================
   Leader content
   ========================================================================== */

.about-leadership__content {
	padding-top: 10px;
}

.about-leadership__leader-header {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 13px;
}

.about-leadership__arrow {
	position: relative;
	flex: 0 0 20px;
	width: 20px;
	height: 14px;
	margin-top: 10px;
}

.about-leadership__arrow::before {
	position: absolute;
	top: 6px;
	left: 0;
	width: 18px;
	height: 2px;
	background-color: var(--leadership-gold);
	content: "";
}

.about-leadership__arrow::after {
	position: absolute;
	top: 2px;
	right: 0;
	width: 8px;
	height: 8px;
	border-top: 2px solid var(--leadership-gold);
	border-right: 2px solid var(--leadership-gold);
	content: "";
	transform: rotate(45deg);
}

.about-leadership__name {
	margin: 0;
	color: var(--leadership-heading);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.15;
}

.about-leadership__designation {
	margin: 2px 0 0;
	color: var(--leadership-heading);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
}

.about-leadership__biography {
	padding-left: 40px;
}

.about-leadership__biography p {
	max-width: 845px;
	margin: 0 0 18px;
	color: var(--leadership-text);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.28;
}

.about-leadership__biography p:last-child {
	margin-bottom: 0;
}

/* ==========================================================================
   Entrance animation safety
   Content is visible by default if JavaScript does not load
   ========================================================================== */

.about-leadership [data-leadership-reveal] {
	opacity: 1;
	filter: none;
	transform: none;
}

/* ==========================================================================
   Hover
   ========================================================================== */

@media (hover: hover) and (pointer: fine) {
	.about-leadership__portrait-image {
		transition:
			transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
	}

	.about-leadership__leader:hover
	.about-leadership__portrait-image {
		transform: scale(1.035);
	}
}

/* ==========================================================================
   Medium desktop
   ========================================================================== */

@media (max-width: 1200px) {
	.about-leadership__container {
		width: min(calc(100% - 50px), 1100px);
	}

	.about-leadership__leader {
		grid-template-columns: 220px minmax(0, 1fr);
		column-gap: 45px;
	}

	.about-leadership__portrait {
		width: 220px;
		height: 288px;
	}

	.about-leadership__biography p {
		font-size: 13px;
	}

	.about-leadership__line--first-horizontal {
		top: 430px;
	}

	.about-leadership__line--first-vertical {
		top: 430px;
	}

	.about-leadership__line--right-vertical {
		top: 255px;
		height: 460px;
	}

	.about-leadership__line--third-right-vertical {
		top: 790px;
	}

	.about-leadership__line--third-horizontal {
		top: 848px;
	}

	.about-leadership__line--third-left-vertical {
		top: 848px;
	}
}

/* ==========================================================================
   Tablet
   ========================================================================== */

@media (max-width: 900px) {
	.about-leadership__container {
		min-height: 0;
		padding-bottom: 60px;
	}

	.about-leadership__header {
		margin-bottom: 45px;
	}

	.about-leadership__leader {
		grid-template-columns: 190px minmax(0, 1fr);
		column-gap: 32px;
	}

	.about-leadership__portrait {
		width: 190px;
		height: 250px;
	}

	.about-leadership__leader--1
	.about-leadership__portrait {
		margin-left: 0;
	}

	.about-leadership__leader--1,
	.about-leadership__leader--2 {
		margin-bottom: 75px;
	}

	.about-leadership__biography {
		padding-left: 0;
	}

	.about-leadership__biography p {
		font-size: 12px;
		line-height: 1.35;
	}

	.about-leadership__line--first-horizontal {
		top: 400px;
	}

	.about-leadership__line--first-vertical {
		top: 400px;
		left: 8%;
		height: 35px;
	}

	.about-leadership__line--right-vertical {
		display: none;
	}

	.about-leadership__line--third-right-vertical {
		top: 760px;
	}

	.about-leadership__line--third-horizontal {
		top: 808px;
		left: 12%;
		width: 44%;
	}

	.about-leadership__line--third-left-vertical {
		top: 808px;
		left: 12%;
		height: 35px;
	}
}

/* ==========================================================================
   Mobile
   ========================================================================== */

@media (max-width: 767px) {
	.about-leadership {
		padding: 50px 0 58px;
	}

	.about-leadership__container {
		width: calc(100% - 36px);
		padding: 0;
	}

	.about-leadership__header {
		margin-bottom: 42px;
	}

	.about-leadership__title {
		font-size: 32px;
	}

	.about-leadership__subtitle {
		max-width: 320px;
		margin: 8px auto 0;
		font-size: 13px;
	}

	.about-leadership__lines {
		display: none;
	}

	.about-leadership__leader {
		display: block;
		padding-left: 22px;
		border-left: 2px solid var(--leadership-line-grey);
	}

	.about-leadership__leader--1,
	.about-leadership__leader--2 {
		margin-bottom: 58px;
	}

	.about-leadership__portrait,
	.about-leadership__leader--1
	.about-leadership__portrait {
		width: min(100%, 310px);
		height: auto;
		aspect-ratio: 310 / 386;
		margin: 0 0 28px;
	}

	.about-leadership__content {
		padding-top: 0;
	}

	.about-leadership__leader-header {
		gap: 13px;
	}

	.about-leadership__biography {
		padding-left: 33px;
	}

	.about-leadership__name {
		font-size: 18px;
	}

	.about-leadership__designation {
		font-size: 15px;
	}

	.about-leadership__biography p {
		max-width: none;
		margin-bottom: 15px;
		font-size: 14px;
		line-height: 1.5;
	}
}

/* ==========================================================================
   Small mobile
   ========================================================================== */

@media (max-width: 480px) {
	.about-leadership__title {
		font-size: 28px;
	}

	.about-leadership__leader {
		padding-left: 17px;
	}

	.about-leadership__biography {
		padding-left: 0;
	}

	.about-leadership__leader-header {
		gap: 10px;
	}

	.about-leadership__arrow {
		flex-basis: 18px;
		width: 18px;
	}

	.about-leadership__name {
		font-size: 17px;
	}

	.about-leadership__designation {
		font-size: 14px;
	}

	.about-leadership__biography p {
		font-size: 13px;
	}
}