.inner-page {
	background: var(--color-white, #ffffff);
}

.inner-hero {
	background: var(--color-primary, #0f0f0f);
	color: var(--color-white, #ffffff);
	min-height: 58svh;
	overflow: hidden;
	position: relative;
}

.inner-hero__media,
.inner-hero__overlay {
	inset: 0;
	position: absolute;
}

.inner-hero__media {
	background: linear-gradient(45deg, #171717, #8c7a54, #292929);
	margin: 0;
}

.inner-hero__overlay {
	background: linear-gradient(90deg, rgba(15, 15, 15, 0.94), rgba(15, 15, 15, 0.68), rgba(15, 15, 15, 0.34));
}

.inner-hero__inner {
	display: grid;
	gap: 1rem;
	min-height: 58svh;
	padding-bottom: clamp(4rem, 8vw, 7rem);
	padding-top: clamp(8rem, 14vw, 12rem);
	place-content: end start;
	position: relative;
	z-index: 1;
}

.inner-hero__eyebrow {
	color: var(--color-gold, #d4af37);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	margin: 0;
	text-transform: uppercase;
}

.inner-hero h1 {
	font-size: clamp(3rem, 8vw, 7rem);
	max-width: 12ch;
}

.inner-hero p:not(.inner-hero__eyebrow) {
	color: rgba(255, 255, 255, 0.76);
	font-size: clamp(1.05rem, 2vw, 1.3rem);
	max-width: 44rem;
}

.page-section {
	padding-bottom: clamp(4rem, 8vw, 7rem);
	padding-top: clamp(4rem, 8vw, 7rem);
}

.page-section--light {
	background: var(--color-light, #f5f5f5);
}

.page-section--dark {
	background: var(--color-dark, #171717);
	color: var(--color-white, #ffffff);
}

.split-layout,
.form-layout,
.contact-layout {
	display: grid;
	gap: clamp(2rem, 6vw, 5rem);
}

.rich-copy {
	display: grid;
	gap: 1rem;
}

.rich-copy p {
	color: rgba(15, 15, 15, 0.72);
	font-size: 1.05rem;
}

.page-section--dark .rich-copy p {
	color: rgba(255, 255, 255, 0.72);
}

.two-card-grid,
.feature-grid,
.capability-grid,
.leadership-grid {
	display: grid;
	gap: 1rem;
}

.premium-panel,
.feature-card,
.capability-card,
.role-card,
.contact-email-panel {
	background: var(--color-white, #ffffff);
	border: 1px solid rgba(15, 15, 15, 0.08);
	display: grid;
	gap: 1rem;
	padding: clamp(1.35rem, 3vw, 2.25rem);
}

.premium-panel span,
.role-card span {
	color: var(--color-gold, #d4af37);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.premium-panel h2,
.feature-card h2,
.contact-email-panel h2 {
	font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.premium-panel p,
.feature-card p,
.role-card p {
	color: rgba(15, 15, 15, 0.68);
}

.page-section--dark .capability-card {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.14);
}

.capability-card h3 {
	font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.role-card {
	grid-template-columns: 5rem 1fr;
}

.role-card__image {
	background: linear-gradient(135deg, #d4af37, #171717);
	height: 5rem;
	width: 5rem;
}

.process-list {
	counter-reset: process;
	display: grid;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.process-list li {
	background: var(--color-light, #f5f5f5);
	counter-increment: process;
	display: grid;
	gap: 0.35rem;
	padding: 1.25rem;
}

.process-list li::before {
	color: var(--color-gold, #d4af37);
	content: counter(process, decimal-leading-zero);
	font-family: var(--font-heading, Georgia, serif);
	font-size: 1.5rem;
	font-weight: 700;
}

.process-list span {
	color: rgba(15, 15, 15, 0.68);
}

.form-placeholder,
.map-placeholder {
	align-items: center;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: rgba(255, 255, 255, 0.72);
	display: flex;
	justify-content: center;
	min-height: 22rem;
	padding: 2rem;
	text-align: center;
}

.page-section:not(.page-section--dark) .form-placeholder {
	background: var(--color-light, #f5f5f5);
	border-color: rgba(15, 15, 15, 0.1);
	color: rgba(15, 15, 15, 0.62);
}

.contact-email-panel a {
	color: rgba(15, 15, 15, 0.78);
	font-weight: 700;
}

.contact-email-panel a:hover {
	color: var(--color-gold, #d4af37);
}

.map-section {
	background: var(--color-light, #f5f5f5);
	padding-bottom: clamp(4rem, 8vw, 7rem);
}

.map-placeholder {
	background: linear-gradient(135deg, #dedede, #bdb6a8);
	border-color: rgba(15, 15, 15, 0.1);
	color: var(--color-primary, #0f0f0f);
	min-height: 26rem;
}

@media (min-width: 48rem) {
	.two-card-grid,
	.feature-grid,
	.capability-grid,
	.leadership-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 64rem) {
	.split-layout,
	.form-layout,
	.contact-layout {
		grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
	}

	.capability-grid,
	.feature-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.leadership-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}


.service-index-grid {
	display: grid;
	gap: 1rem;
}

.service-index-card,
.service-feature-card {
	min-height: 16rem;
}

.service-index-card {
	background: var(--color-white, #ffffff);
	border: 1px solid rgba(15, 15, 15, 0.08);
	display: grid;
	gap: 1rem;
	padding: clamp(1.35rem, 3vw, 2.25rem);
}

.service-index-card h2 {
	font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.service-index-card p,
.service-placeholder-copy p {
	color: rgba(15, 15, 15, 0.68);
}

.service-benefits-grid .capability-card {
	min-height: 10rem;
}

@media (min-width: 48rem) {
	.service-index-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 64rem) {
	.service-index-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}


.inner-hero__media .theme-media__image,
.inner-hero__media .theme-media__fallback {
	min-height: 58svh;
}

.page-hero__media.theme-media {
	min-height: 22rem;
}


.team-grid,
.partner-card-grid,
.project-card-grid {
	display: grid;
	gap: 1rem;
}

.team-card,
.partner-card,
.project-showcase-card,
.licence-panel {
	background: var(--color-white, #ffffff);
	border: 1px solid rgba(15, 15, 15, 0.08);
	display: grid;
	gap: 1rem;
	overflow: hidden;
}

.team-card__image {
	aspect-ratio: 4 / 5;
	background: var(--color-dark, #171717);
	margin: 0;
	overflow: hidden;
}

.team-card__image img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.team-card__body,
.partner-card,
.project-showcase-card > div,
.licence-panel {
	padding: clamp(1.35rem, 3vw, 2.25rem);
}

.team-card__body span,
.project-showcase-card span,
.licence-panel span {
	color: var(--color-gold, #d4af37);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.team-card__body h2,
.partner-card h2,
.project-showcase-card h2 {
	font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.team-card__body p,
.partner-card p,
.project-showcase-card p {
	color: rgba(15, 15, 15, 0.68);
}

.partner-card__logo {
	align-items: center;
	aspect-ratio: 16 / 9;
	background: var(--color-light, #f5f5f5);
	border: 1px solid rgba(15, 15, 15, 0.08);
	display: flex;
	justify-content: center;
	margin-bottom: 0.5rem;
	max-height: 10rem;
	padding: 1rem;
}

.partner-card__logo span {
	color: var(--color-primary, #0f0f0f);
	font-family: var(--font-heading, Georgia, serif);
	font-size: clamp(2rem, 5vw, 4rem);
	font-weight: 700;
}

.partner-card a {
	color: var(--color-primary, #0f0f0f);
	font-weight: 800;
	text-decoration: underline;
	text-decoration-color: var(--color-gold, #d4af37);
	text-underline-offset: 0.25em;
}

.project-showcase-card__image {
	aspect-ratio: 16 / 9;
	background: linear-gradient(135deg, #d4af37, #171717);
}

.licence-panel {
	align-content: center;
	background: var(--color-primary, #0f0f0f);
	color: var(--color-white, #ffffff);
}

.licence-panel strong {
	font-family: var(--font-heading, Georgia, serif);
	font-size: clamp(3rem, 7vw, 6rem);
	line-height: 1;
}

.map-embed {
	border: 0;
	display: block;
	min-height: 26rem;
	width: 100%;
}

@media (min-width: 48rem) {
	.team-grid,
	.partner-card-grid,
	.project-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 64rem) {
	.team-grid,
	.partner-card-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.project-card-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}


.services-index .inner-hero {
	min-height: clamp(34rem, 66svh, 46rem);
}

.services-index .inner-hero__inner {
	align-content: center;
	gap: 1.15rem;
	min-height: clamp(34rem, 66svh, 46rem);
	padding-bottom: clamp(3rem, 7vw, 5.5rem);
	padding-top: clamp(7rem, 11vw, 9rem);
	place-content: center start;
}

.services-index .inner-hero h1 {
	font-size: clamp(2.85rem, 6.4vw, 6.25rem);
	line-height: 1;
	max-width: 13.5ch;
}

.services-index .inner-hero p:not(.inner-hero__eyebrow) {
	max-width: 42rem;
}

.services-introduction {
	padding-bottom: clamp(3rem, 6vw, 5rem);
}

.services-categories {
	padding-top: clamp(3rem, 6vw, 5rem);
}

.services-index .service-index-grid {
	align-items: stretch;
}

.services-index .service-index-card {
	align-content: start;
	gap: 0.85rem;
	min-height: 13rem;
}

.services-index .service-index-card h2 {
	line-height: 1.08;
	overflow-wrap: anywhere;
}

.services-index .service-index-card p {
	line-height: 1.7;
	margin: 0;
}

.services-consultation-cta .component-button {
	white-space: normal;
}

@media (max-width: 47.98rem) {
	.services-index .inner-hero {
		min-height: 32rem;
	}

	.services-index .inner-hero__inner {
		min-height: 32rem;
		padding-bottom: 3rem;
		padding-top: 6.5rem;
	}

	.services-index .inner-hero h1 {
		font-size: clamp(2.45rem, 12vw, 4rem);
		max-width: 12ch;
	}

	.services-index .service-index-card {
		min-height: auto;
	}
}
