/*
 * LeLaboDigital Custom: structural styles.
 * Keep component-specific styles near their template parts as the system grows.
 */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	font-size: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--lld-color-paper);
	color: var(--lld-color-ink);
	font-family: var(--lld-font-body);
	font-size: 1.125rem;
	line-height: 1.6;
	text-rendering: auto;
	overflow-x: clip;
}

body.menu-is-open {
	overflow: hidden;
}

img,
svg,
video {
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--lld-color-focus);
}

button,
input,
select,
textarea {
	font: inherit;
}

textarea,
input[type="text"],
input[type="email"],
input[type="url"] {
	width: 100%;
	max-width: 100%;
}

:where(a, button, input, select, textarea):focus-visible {
	outline: 3px solid var(--lld-color-lime);
	outline-offset: 4px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	top: 1rem;
	left: 1rem;
	z-index: 100;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	margin: 0;
	overflow: visible;
	clip: auto;
	background: var(--lld-color-lime);
	color: var(--lld-color-ink);
	white-space: normal;
}

.lld-container {
	width: min(100% - (2 * var(--lld-gutter)), var(--lld-container));
	margin-inline: auto;
}

.site-header {
	background: var(--lld-color-surface);
	color: var(--lld-color-ink);
}

.site-footer {
	background: #2d2d2d;
	color: var(--lld-color-surface);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: var(--lld-z-header);
	border-bottom: 1px solid transparent;
	transition: border-color 180ms ease-out;
}

body.has-scrolled .site-header {
	border-bottom-color: var(--lld-color-line);
}

.site-header .lld-container,
.site-cta .lld-container,
.site-footer .lld-container {
	width: min(calc(100% - (2 * var(--lld-gutter))), var(--lld-container-wide));
}

.site-header__inner,
.site-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--lld-space-4);
}

.site-header__inner {
	min-height: 102px;
	padding-block: 36px;
}

.site-branding,
.site-branding a {
	display: inline-flex;
	align-items: center;
	color: inherit;
	font-family: var(--lld-font-body);
	font-size: clamp(1.2rem, 2vw, 1.65rem);
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
}

.custom-logo {
	display: block;
	width: 150px;
	height: 30px;
	max-width: 45vw;
	object-fit: contain;
}

.primary-navigation .menu,
.footer-navigation .menu {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 2.5vw, 2.5rem);
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-navigation a,
.footer-navigation a {
	color: inherit;
	font-family: var(--lld-font-body);
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
}

.primary-navigation .menu-item {
	position: relative;
}

.primary-navigation .menu-item.current-menu-item > a,
.primary-navigation .menu-item.current_page_item > a,
.primary-navigation .menu-item > a:hover,
.primary-navigation .menu-item > a:focus-visible {
	color: var(--lld-color-lime);
}

.primary-navigation .sub-menu {
	position: absolute;
	top: calc(100% + 0.75rem);
	left: -1rem;
	display: none;
	min-width: 13rem;
	padding: 0.75rem 1rem;
	margin: 0;
	background: var(--lld-color-surface);
	color: var(--lld-color-ink);
	list-style: none;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.primary-navigation .menu-item:hover > .sub-menu,
.primary-navigation .menu-item:focus-within > .sub-menu,
.primary-navigation .menu-item.is-submenu-open > .sub-menu {
	display: block;
}

.primary-navigation .sub-menu a {
	display: block;
	padding-block: 0.5rem;
}

.primary-navigation .submenu-toggle {
	display: none;
}

.menu-toggle {
	display: none;
	position: relative;
	width: 92px;
	min-height: 30px;
	border: 0;
	padding: 0;
	background: transparent;
	color: inherit;
	font-size: 0;
	cursor: pointer;
}

.menu-toggle::after {
	position: absolute;
	top: 50%;
	right: 0;
	width: 28px;
	height: 14px;
	border-top: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	content: "";
	transform: translateY(-50%);
}

.menu-toggle::before {
	position: absolute;
	top: 50%;
	right: 0;
	width: 28px;
	border-top: 2px solid currentColor;
	content: "";
}

.menu-overlay {
	position: fixed;
	inset: 0;
	z-index: calc(var(--lld-z-menu) - 1);
	border: 0;
	background: rgba(0, 0, 0, 0.38);
	cursor: pointer;
}

[hidden] {
	display: none !important;
}

.lld-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 43px;
	padding: 0.7rem 1.9rem;
	border: 1px solid transparent;
	border-radius: var(--lld-radius);
	font-family: var(--lld-font-body);
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: background-color 180ms ease-out, color 180ms ease-out, border-color 180ms ease-out;
}

.lld-button--accent {
	background: var(--lld-color-lime);
	color: var(--lld-color-ink);
}

.lld-button--accent:hover,
.lld-button--accent:focus-visible {
	background: var(--lld-color-ink);
	color: var(--lld-color-lime);
}

.lld-button--outline-light {
	border-color: var(--lld-color-surface);
	color: var(--lld-color-surface);
}

.lld-button--outline-light:hover,
.lld-button--outline-light:focus-visible {
	background: var(--lld-color-surface);
	color: var(--lld-color-ink);
}

.site-main {
	min-height: 50vh;
}

.lld-placeholder {
	padding-block: clamp(7rem, 18vw, 13rem);
	background: var(--lld-color-ink);
	color: var(--lld-color-surface);
}

.lld-placeholder__eyebrow {
	margin: 0 0 var(--lld-space-3);
	color: var(--lld-color-lime);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.lld-placeholder h1,
.entry-title,
.archive-title {
	max-width: 14ch;
	margin: 0;
	font-family: var(--lld-font-display);
	font-size: clamp(2.75rem, 8vw, 7rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 0.98;
	text-wrap: balance;
}

.lld-placeholder__copy {
	max-width: 52ch;
	margin: var(--lld-space-5) 0 0;
	color: #e7e7e2;
	font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.entry-content,
.archive-header,
.singular-content,
.content-area {
	width: min(100% - (2 * var(--lld-gutter)), var(--lld-container));
	margin-inline: auto;
}

.singular-content,
.content-area {
	padding-block: var(--lld-space-8);
}

.entry-content {
	max-width: 75ch;
}

.entry-content > * {
	margin-inline: 0;
}

.entry-content > * + * {
	margin-top: var(--lld-space-4);
}

.archive-header {
	padding-block: var(--lld-space-8) var(--lld-space-6);
}

.archive-title {
	max-width: 20ch;
	font-size: clamp(2.5rem, 7vw, 5.5rem);
}

.entry-meta {
	margin-top: var(--lld-space-2);
	color: var(--lld-color-muted);
	font-size: 0.9rem;
}

.entry-meta .updated {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

.entry-summary {
	max-width: 70ch;
}

.post-thumbnail {
	display: block;
	margin: 0 0 var(--lld-space-4);
}

.post-thumbnail img {
	display: block;
	width: 100%;
}

.site-footer__inner {
	align-items: flex-start;
	padding-block: 4.5rem;
	gap: clamp(2rem, 7vw, 7rem);
	background: #2d2d2d;
	color: var(--lld-color-surface);
}

.site-footer__brand,
.site-footer__contact {
	flex: 1 1 0;
}

.site-footer__mark {
	display: block;
	width: 96px;
	height: auto;
	margin-bottom: 1.5rem;
}

.social-navigation__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.social-navigation a {
	color: var(--lld-color-surface);
	font-size: 0.8rem;
	font-weight: 700;
	text-decoration: none;
}

.social-navigation__mark {
	display: inline-flex;
	width: 1.1rem;
	height: 1.1rem;
	align-items: center;
	justify-content: center;
}

.social-navigation__mark svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.social-navigation__mark--instagram svg {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
}

.social-navigation__mark--instagram .social-navigation__dot {
	fill: currentColor;
	stroke: none;
}

.footer-navigation {
	flex: 0 1 12rem;
}

.footer-navigation .menu {
	align-items: flex-start;
	flex-direction: column;
	gap: 0.55rem;
}

.site-footer__contact h2 {
	margin: 0 0 1rem;
	font-family: var(--lld-font-display);
	font-size: 1.75rem;
	line-height: 1;
}

.site-footer__note,
.site-cta__note {
	max-width: 28ch;
	margin: 0;
	color: #d0d0ca;
	font-size: 0.9rem;
}

.site-footer__credit {
	padding-block: 1rem;
	background: #2d2d2d;
	color: #b5b5ae;
	font-size: 0.8rem;
}

.site-footer__credit .lld-container {
	display: flex;
	justify-content: space-between;
	gap: var(--lld-space-3);
	border-top: 1px solid #4a4a45;
	padding-top: 1rem;
}

.site-footer__credit a {
	color: inherit;
}

.no-results {
	padding-block: var(--lld-space-8);
}

.site-cta {
	background: #2d2d2d;
	color: var(--lld-color-surface);
}

.site-cta__inner {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 2rem;
	padding-block: clamp(4rem, 9vw, 7rem);
}

.site-cta__title {
	display: flex;
	flex-direction: column;
	margin: 0;
	font-family: var(--lld-font-display);
	font-size: clamp(2.25rem, 5vw, 4.5rem);
	font-weight: 400;
	letter-spacing: -0.03em;
	line-height: 0.98;
	text-wrap: balance;
}

.site-cta__accent {
	color: var(--lld-color-lime);
}

.site-cta__note {
	max-width: 34ch;
	margin: 0;
}

/* Homepage visual system. */
body.home .site-header {
	position: absolute;
	width: 100%;
	background: transparent;
	border-bottom-color: transparent;
}

body.home.has-scrolled .site-header {
	position: fixed;
	background: rgba(255, 255, 255, 0.97);
	border-bottom-color: var(--lld-color-line);
}

body.home .site-header {
	transition: border-color 180ms ease-out, transform 220ms ease-out;
}

body.home.site-header-is-hidden .site-header {
	transform: translateY(-105%);
}

body.home .site-main {
	padding-top: 102px;
	background: var(--lld-color-surface);
}

.home-page {
	background: var(--lld-color-surface);
}

.home-hero {
	position: relative;
	height: min(100svh, 75rem);
	min-height: 42rem;
	overflow: hidden;
	background: var(--lld-color-lime);
}

.home-hero__media,
.home-hero__media::after,
.home-hero__media img {
	position: absolute;
	inset: 0;
}

.home-hero__media::after {
	background: rgba(215, 223, 37, 0.68);
	content: "";
}

.home-hero__media img {
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center;
}

.home-hero__slides,
.home-hero__slide {
	position: absolute;
	inset: 0;
}

.home-hero__slide {
	display: none;
}

.home-hero__slide.is-active {
	display: block;
}

.home-hero__content {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding-block: 5rem 8rem;
	text-align: center;
}

.home-hero__content h1 {
	max-width: 12ch;
	margin: 0;
	font-family: var(--lld-font-display);
	font-size: clamp(3.5rem, 7vw, 6.25rem);
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1;
	text-wrap: balance;
}

.home-hero__content p {
	max-width: 48rem;
	margin: 1.5rem 0 0;
	font-size: clamp(1.05rem, 1.6vw, 1.35rem);
	line-height: 1.35;
}

.home-hero__content .lld-button {
	margin-top: 2rem;
}

.home-hero__controls {
	position: absolute;
	right: 0;
	bottom: 2rem;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.home-hero__arrow,
.home-hero__dot {
	border: 0;
	background: transparent;
	color: var(--lld-color-ink);
	cursor: pointer;
}

.home-hero__arrow {
	display: grid;
	width: 3rem;
	height: 3rem;
	place-items: center;
	font-size: 1.8rem;
	line-height: 1;
}

.home-hero__dots {
	display: flex;
	gap: 0.6rem;
}

.home-hero__dot {
	width: 0.75rem;
	height: 0.75rem;
	padding: 0;
	border: 1px solid var(--lld-color-ink);
	border-radius: 50%;
}

.home-hero__dot.is-active {
	background: var(--lld-color-ink);
}

.home-section {
	padding-block: clamp(5rem, 10vw, 9rem);
	background: var(--lld-color-surface);
}

.home-section-heading__title,
.home-services h2,
.home-stats__heading h2 {
	margin: 0;
	font-family: var(--lld-font-display);
	font-size: clamp(3rem, 5.2vw, 4.7rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1;
	text-wrap: balance;
}

.home-section-heading__intro,
.home-section-heading__lead,
.home-services__copy p,
.home-stats__heading > p {
	max-width: 40rem;
	margin: 1.5rem 0 0;
	font-size: clamp(1.1rem, 1.8vw, 1.45rem);
	line-height: 1.35;
}

.home-section-heading__lead {
	font-family: var(--lld-font-display);
	font-size: clamp(1.6rem, 2.5vw, 2.3rem);
	line-height: 1.05;
}

.home-section-heading .lld-button,
.home-why__intro .lld-button,
.home-services__copy .lld-button,
.home-stats__heading .lld-button {
	margin-top: 2rem;
}

.lld-button--outline-dark {
	border-color: var(--lld-color-ink);
	color: var(--lld-color-ink);
}

.lld-button--outline-dark:hover,
.lld-button--outline-dark:focus-visible {
	background: var(--lld-color-ink);
	color: var(--lld-color-surface);
}

.lld-button--dark {
	background: var(--lld-color-ink);
	color: var(--lld-color-surface);
}

.lld-button--dark:hover,
.lld-button--dark:focus-visible {
	background: var(--lld-color-surface);
	color: var(--lld-color-ink);
}

.lld-button.is-placeholder {
	opacity: 0.72;
	cursor: default;
}

.home-why {
	background: var(--lld-color-surface);
}

.home-why > .lld-container {
	display: grid;
	grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.5fr);
	gap: clamp(3rem, 7vw, 8rem);
}

.home-why__intro {
	align-self: start;
}

.home-why__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 3rem 2rem;
}

.home-feature {
	min-width: 0;
}

.home-feature__icon {
	display: block;
	width: 4.4rem;
	height: 4.4rem;
	margin-bottom: 1.5rem;
	object-fit: contain;
}

.home-feature h3,
.home-stat h3,
.home-card h3 {
	margin: 0;
	font-family: var(--lld-font-display);
	font-size: clamp(1.35rem, 2vw, 1.9rem);
	font-weight: 700;
	line-height: 1.05;
	text-wrap: balance;
}

.home-feature p,
.home-stat p:not(.home-stat__value) {
	margin: 0.9rem 0 0;
	font-size: 1rem;
	line-height: 1.45;
}

.home-stats {
	background: var(--lld-color-surface);
}

.home-stats > .lld-container {
	display: grid;
	grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1.6fr);
	gap: clamp(3rem, 8vw, 8rem);
	align-items: start;
}

.home-stats__heading h2 {
	display: flex;
	flex-direction: column;
	font-size: clamp(3rem, 5vw, 4.7rem);
}

.home-stats__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 4rem 2rem;
}

.home-stat__value {
	margin: 0;
	font-family: var(--lld-font-display);
	font-size: clamp(3.5rem, 6vw, 5.8rem);
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 0.9;
}

.home-stat h3 {
	margin-top: 1.25rem;
}

.home-showcase {
	background: var(--lld-color-surface);
}

.home-showcase .lld-container {
	max-width: var(--lld-container-wide);
}

.home-section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 3rem;
}

.home-section-heading__intro {
	margin-left: auto;
}

.home-card-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.home-card {
	min-width: 0;
	background: var(--lld-color-paper);
}

.home-card__media {
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: #deded8;
}

.home-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	transition: transform 220ms ease-out;
}

.home-card:hover .home-card__media img {
	transform: scale(1.03);
}

.home-card__body {
	padding: 1.4rem 1.25rem 1.6rem;
}

.home-card__link {
	text-decoration: none;
}

.home-card__meta {
	margin: 1rem 0 0;
	color: var(--lld-color-muted);
	font-size: 0.8rem;
}

.home-matterport {
	position: relative;
	height: 805px;
	background: #101112;
}

.home-matterport__placeholder {
	position: relative;
	display: grid;
	height: 100%;
	place-items: center;
	text-align: center;
}

.home-matterport__poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center;
	filter: brightness(0.78);
}

.home-matterport__placeholder::after {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.18);
	content: "";
}

.home-matterport__placeholder > .lld-container {
	position: relative;
	z-index: 1;
	color: var(--lld-color-surface);
}

.home-matterport__placeholder .home-section-kicker {
	color: var(--lld-color-lime);
}

.home-section-kicker {
	margin: 0 0 1.5rem;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.home-matterport__frame {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.home-clients {
	min-height: 701px;
	padding-bottom: 0;
	padding-top: 36px;
}

.home-clients__logos {
	margin-top: 36px;
	padding-block: 72px;
	background: var(--lld-color-paper);
	overflow: hidden;
}

.home-clients__logo-grid {
	display: flex;
	flex-wrap: nowrap;
	gap: 72px;
	overflow: hidden;
	align-items: center;
}

.home-client-logo {
	display: grid;
	flex: 0 0 130px;
	min-height: 66px;
	place-items: center;
	background: transparent;
}

.home-client-logo img {
	width: 130px;
	height: 66px;
	object-fit: contain;
}

.home-services {
	background: var(--lld-color-lime);
	min-height: 528px;
}

.home-services__inner {
	display: grid;
	grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(3rem, 8vw, 9rem);
	align-items: start;
}

.home-services__copy p {
	margin-top: 0;
}

.home-insights {
	padding-bottom: clamp(6rem, 12vw, 10rem);
}

body.home .site-cta__inner {
	min-height: 39.75rem;
}

body.home .site-footer__inner {
	min-height: 27rem;
}

.comments-area {
	width: min(100% - (2 * var(--lld-gutter)), 75ch);
	margin-inline: auto;
	padding-bottom: var(--lld-space-8);
}

.comments-title {
	font-family: var(--lld-font-display);
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	line-height: 1;
}

.comment-list {
	padding-left: 1.5rem;
}

.comment-list li + li {
	margin-top: var(--lld-space-4);
}

@media (max-width: 959px) {
	.site-header__inner {
		min-height: 84px;
		padding-block: 27px;
	}

	.menu-toggle {
		display: inline-block;
	}

	.primary-navigation {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: var(--lld-z-menu);
		display: none;
		width: calc(100vw - 45px);
		max-width: 24rem;
		padding: 102px 36px 2rem;
		background: var(--lld-color-surface);
		color: var(--lld-color-ink);
		visibility: hidden;
		transform: translateX(100%);
		transition: transform 220ms ease-out, visibility 220ms ease-out;
	}

	.primary-navigation.is-open {
		display: block;
		visibility: visible;
		transform: translateX(0);
	}

	.primary-navigation .menu {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.primary-navigation li + li {
		border-top: 1px solid #3a3a35;
	}

	.primary-navigation a {
		display: block;
		padding-block: 0.9rem;
		font-size: 1rem;
	}

	.primary-navigation .sub-menu {
		position: static;
		display: none;
		min-width: 0;
		padding: 0 0 0.5rem 1rem;
		box-shadow: none;
	}

	.primary-navigation .menu-item.is-submenu-open > .sub-menu {
		display: block;
	}

	.primary-navigation .submenu-toggle {
		position: absolute;
		top: 0.45rem;
		right: 0;
		display: block;
		width: 2.5rem;
		height: 2.5rem;
		border: 0;
		background: transparent;
		color: currentColor;
		cursor: pointer;
	}

	.primary-navigation .submenu-toggle::before {
		content: "+";
		font-size: 1.5rem;
		line-height: 1;
	}

	.primary-navigation .submenu-toggle[aria-expanded="true"]::before {
		content: "−";
	}

	.site-cta__inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.site-footer__inner {
		padding-block: 3.5rem;
	}
}

@media (max-width: 639px) {
	.site-footer__inner,
	.site-footer__credit .lld-container {
		flex-direction: column;
	}

	.site-footer__inner {
		gap: var(--lld-space-5);
	}

	.site-footer__brand,
	.site-footer__contact {
		width: 100%;
	}

	.footer-navigation .menu {
		align-items: flex-start;
		flex-direction: column;
		gap: var(--lld-space-2);
	}

	.site-footer__credit .lld-container {
		align-items: flex-start;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

/* Final ordering overrides for internal and native post families. */
.lld-page-hero {
	min-height: var(--lld-page-hero-height);
}

.lld-page-hero__media::after {
	background: rgba(215, 223, 37, var(--lld-overlay-lime-opacity));
}

.lld-page-hero > .lld-container {
	padding-block: 4rem;
}

.lld-page-hero h1 {
	max-width: none;
	font-size: 75px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 90px;
}

.lld-page-hero__intro {
	margin-top: 28px;
	font-size: 30px;
	line-height: 36px;
}

.lld-page-hero__cta {
	margin-top: 30px;
}

.lld-page-hero--compact {
	min-height: 300px;
}

.lld-section-heading h2,
.lld-section-heading h1,
.lld-related-services h2,
.lld-related-cases h2,
.lld-readable-content h2,
.lld-readable-content h3 {
	letter-spacing: 0;
}

.lld-service-card__title,
.lld-case-card__title,
.lld-post-card__title {
	font-family: var(--lld-font-body);
	font-weight: 700;
	letter-spacing: 0;
}

.lld-service-card__title,
.lld-case-card__title {
	font-size: 30px;
	line-height: 30px;
}

.lld-post-card__title {
	font-size: 20px;
	line-height: 24px;
}

.lld-breadcrumbs {
	font-size: 16px;
}

@media (max-width: 959px) {
	.lld-page-hero {
		min-height: 420px;
	}

	.lld-page-hero h1 {
		font-size: clamp(3.2rem, 8vw, 5rem);
		line-height: 1;
	}

	.lld-page-hero__intro {
		font-size: 24px;
		line-height: 30px;
	}
}

@media (max-width: 639px) {
	.lld-page-hero {
		min-height: 420px;
	}

	.lld-page-hero--compact {
		min-height: 260px;
	}

	.lld-page-hero h1 {
		max-width: 12ch;
		font-size: 46px;
		line-height: 48px;
	}

	.lld-page-hero__intro {
		font-size: 20px;
		line-height: 26px;
	}
}

/* Earlier detail-page overrides retained for cascade compatibility. */
.lld-blog-single-hero,
.lld-case-single-hero {
	min-height: 720px;
}

.lld-service-single-hero {
	min-height: 552px;
}

.lld-blog-single-hero h1,
.lld-case-single-hero h1 {
	max-width: 1128px;
	font-size: 100px;
	line-height: 120px;
}

.lld-service-single-hero h1 {
	max-width: 1128px;
	font-size: 100px;
	line-height: 120px;
}

@media (max-width: 959px) {
	.lld-blog-single-hero,
	.lld-case-single-hero {
		min-height: 560px;
	}

	.lld-service-single-hero {
		min-height: 552px;
	}

	.lld-blog-single-hero h1,
	.lld-case-single-hero h1 {
		font-size: clamp(3.5rem, 9vw, 6.25rem);
		line-height: 1;
	}
}

@media (max-width: 639px) {
	.lld-blog-single-hero,
	.lld-case-single-hero {
		min-height: 540px;
	}

	.lld-service-single-hero {
		min-height: 540px;
	}

	.lld-blog-single-hero h1,
	.lld-case-single-hero h1 {
		max-width: 100%;
		font-size: 48px;
		line-height: 52px;
	}

	.lld-service-single-hero h1 {
		max-width: 100%;
		font-size: 48px;
		line-height: 52px;
	}
}

/* Editorial detail heroes use the same image-led first viewport as production. */
.lld-blog-single-hero,
.lld-case-single-hero {
	min-height: 720px;
}

.lld-blog-single-hero h1,
.lld-case-single-hero h1 {
	max-width: 1128px;
	font-size: 100px;
	line-height: 120px;
}

@media (max-width: 959px) {
	.lld-blog-single-hero,
	.lld-case-single-hero {
		min-height: 560px;
	}

	.lld-blog-single-hero h1,
	.lld-case-single-hero h1 {
		font-size: clamp(3.5rem, 9vw, 6.25rem);
		line-height: 1;
	}
}

@media (max-width: 639px) {
	.lld-blog-single-hero,
	.lld-case-single-hero {
		min-height: 540px;
	}

	.lld-blog-single-hero h1,
	.lld-case-single-hero h1 {
		max-width: 100%;
		font-size: 48px;
		line-height: 52px;
	}
}

/* Contact is a split map/copy composition in the public reference. */
.lld-contact-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: calc(100svh - var(--lld-header-height));
}

.lld-contact-hero__map,
.lld-contact-hero__copy {
	min-width: 0;
}

.lld-contact-hero__map {
	background: var(--lld-color-paper);
}

.lld-contact-hero__map .lld-map-embed,
.lld-contact-hero__map iframe {
	width: 100%;
	height: 100%;
	min-height: 620px;
}

.lld-contact-hero__map iframe {
	display: block;
	border: 0;
}

.lld-contact-hero__copy {
	padding: 155px clamp(2rem, 5.5vw, 5rem) clamp(4rem, 8vw, 7rem);
	background: var(--lld-color-lime);
}

.lld-contact-hero__copy h1 {
	margin: 0 0 36px;
	font-family: var(--lld-font-display);
	font-size: 75px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 90px;
}

.lld-contact-hero__copy .entry-content {
	width: auto;
	max-width: 35ch;
	margin: 0;
	padding: 0;
}

.lld-contact-hero__copy .entry-content > * + * {
	margin-top: 28px;
}

.lld-contact-hero__copy .entry-content p,
.lld-contact-hero__copy .entry-content li {
	font-size: 20px;
	line-height: 32px;
}

.lld-contact-hero__copy .entry-content h2 {
	margin-top: 40px;
	font-family: var(--lld-font-body);
	font-size: 28px;
	line-height: 32px;
}

@media (max-width: 959px) {
	.lld-contact-hero__copy h1 {
		font-size: 58px;
		line-height: 64px;
	}
}

@media (max-width: 639px) {
	.lld-contact-hero {
		grid-template-columns: 1fr;
	}

	.lld-contact-hero__map .lld-map-embed,
	.lld-contact-hero__map iframe {
		min-height: 330px;
	}

	.lld-contact-hero__copy {
		padding: 64px var(--lld-gutter);
	}

	.lld-contact-hero__copy h1 {
		font-size: 48px;
		line-height: 54px;
	}
}

/*
 * Visual-parity pass A: measured shell and type corrections. Keep this block
 * near the end while the older scaffold rules are retired section by section.
 */
.site-header .lld-container,
.site-cta .lld-container,
.site-footer .lld-container {
	width: min(calc(100% - (2 * var(--lld-gutter))), var(--lld-container-wide));
}

.site-header__inner {
	min-height: var(--lld-header-height);
	padding-block: 0;
	justify-content: flex-start;
}

.primary-navigation .menu {
	gap: 0;
}

@media (min-width: 960px) {
	.primary-navigation {
		margin-left: auto;
	}

	.header-social-navigation {
		margin-left: 24px;
	}
}

.primary-navigation a {
	display: inline-flex;
	min-height: var(--lld-header-height);
	align-items: center;
	padding-inline: 14px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
}

.header-social-navigation {
	flex: 0 0 auto;
}

.header-social-navigation__list {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.header-social-navigation a {
	display: grid;
	width: 20px;
	height: 20px;
	place-items: center;
	color: var(--lld-color-ink);
	text-decoration: none;
}

.header-social-navigation__mark {
	display: block;
	position: relative;
	width: 18px;
	height: 18px;
	font-size: 0;
	font-weight: 700;
	line-height: 1;
	text-align: center;
}

.header-social-navigation__mark::before {
	display: block;
	font-size: 15px;
	line-height: 18px;
}

.header-social-navigation__mark--facebook::before {
	content: "f";
}

.header-social-navigation__mark--x::before {
	font-size: 18px;
	font-weight: 400;
	content: "×";
}

.header-social-navigation__mark--instagram::before {
	font-size: 16px;
	font-weight: 400;
	content: "◎";
}

.header-social-navigation__mark--linkedin::before {
	font-size: 12px;
	content: "in";
}

.header-social-navigation__mark--facebook {
	font-size: 0;
}

.header-social-navigation__mark--instagram {
	font-size: 0;
}

.lld-button {
	min-height: 53px;
	padding: 16px 39px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
}

.site-main {
	font-size: 18px;
}

body.home .site-header {
	background: var(--lld-color-surface);
}

body.home .site-main {
	padding-top: var(--lld-header-height);
}

.home-hero {
	height: 720px;
	min-height: 720px;
}

.home-hero__media::after {
	background: rgba(215, 223, 37, var(--lld-overlay-lime-opacity));
}

.home-hero__content {
	flex-direction: column;
	padding-block: 8rem 2rem;
}

.home-hero__content h1 {
	max-width: none;
	font-size: clamp(4.25rem, 7.8vw, 6.25rem);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1;
}

.home-hero__content p {
	margin-top: 28px;
	font-size: 30px;
	line-height: 36px;
}

.home-hero .lld-button--accent {
	background: var(--lld-color-ink);
	color: var(--lld-color-surface);
}

.home-hero .lld-button--accent:hover,
.home-hero .lld-button--accent:focus-visible {
	background: var(--lld-color-surface);
	color: var(--lld-color-ink);
}

.home-section {
	padding-block: 96px;
}

.home-section-heading__title,
.home-services h2,
.home-stats__heading h2 {
	font-size: 75px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 90px;
}

.home-section-heading__lead {
	font-size: 30px;
	line-height: 36px;
}

.home-section-heading__intro,
.home-services__copy p,
.home-stats__heading > p {
	font-size: 18px;
	line-height: 29px;
}

.home-why > .lld-container,
.home-stats > .lld-container {
	grid-template-columns: 392px minmax(0, 1fr);
	gap: 36px;
}

.home-why {
	background: linear-gradient(to right, var(--lld-color-lime) 0 33.333%, var(--lld-color-surface) 33.333% 100%);
	padding-block: 72px;
	min-height: 940px;
}

@media (min-width: 1400px) {
	.home-why > .lld-container {
		width: min(calc(100% - 140px), 1300px);
	}

	.home-why > .lld-container {
		grid-template-columns: 446px minmax(0, 1fr);
	}
}

/* Third parity pass: the public shell is full-width; content containers are
 * reserved for page content and are not used to size the header. */
:root {
	--lld-header-gutter: 36px;
	--lld-header-social-width: 162px;
}

.site-header__inner {
	width: calc(100% - (2 * var(--lld-header-gutter)));
	max-width: none;
	margin-inline: auto;
	min-height: calc(var(--lld-header-height) - 1px);
}

.header-social-navigation__mark {
	width: 18px;
	height: 18px;
	font-size: 0;
}

.header-social-navigation__mark::before {
	display: none;
}

.header-social-navigation__mark svg {
	display: block;
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.header-social-navigation__mark svg rect,
.header-social-navigation__mark svg circle {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
}

.header-social-navigation__mark svg .header-social-navigation__dot {
	fill: currentColor;
	stroke: none;
}

@media (min-width: 960px) {
	.site-header__inner {
		display: grid;
		grid-template-columns: 150px minmax(0, 1fr) var(--lld-header-social-width);
		gap: 0;
	}

	.primary-navigation {
		display: flex;
		justify-content: flex-end;
		min-width: 0;
		margin-left: 0;
	}

	.primary-navigation .menu {
		justify-content: flex-end;
	}

	.header-social-navigation {
		display: flex;
		justify-content: flex-end;
		width: var(--lld-header-social-width);
		margin-left: 0;
	}

	.header-social-navigation__list {
		width: var(--lld-header-social-width);
		justify-content: space-between;
		gap: 0;
	}

	.header-social-navigation a {
		width: 24px;
		height: var(--lld-header-height);
	}

	body.home .site-main {
		padding-top: calc(var(--lld-header-height) - 1px);
	}

	.home-hero {
		height: 900px;
		min-height: 900px;
	}

	.home-hero__content {
		width: min(calc(100% - (2 * var(--lld-header-gutter))), 1200px);
		max-width: 1200px;
		margin-inline: auto;
	}

	.home-hero__content h1 {
		width: min(100%, 1128px);
		max-width: 1128px;
		font-weight: 900;
	}

	.home-hero__content p {
		font-size: 20px;
		line-height: 20px;
	}

	.home-why {
		min-height: 0;
		padding-block: 0;
		background: var(--lld-color-surface);
	}

	.home-why > .lld-container {
		width: 100%;
		max-width: none;
		margin: 0;
		grid-template-columns: 33.333333% 66.666667%;
		gap: 0;
	}

	.home-why__intro {
		align-self: stretch;
		padding: 72px;
		background: var(--lld-color-lime);
	}

	.home-why__intro .home-section-heading__lead {
		margin-top: 36px;
		font-weight: 600;
		line-height: 36px;
		padding-block: 5px;
	}

	.home-why__intro .home-section-heading__intro {
		margin-top: 36px;
		line-height: 31.5px;
	}

	.home-why__intro .lld-button {
		margin-top: 36px;
	}

	.home-why__grid {
		align-content: start;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 36px;
		padding: 72px;
		background: var(--lld-color-surface);
	}

	.home-feature__icon {
		width: 70px;
		height: 70px;
		margin-bottom: 31px;
	}

	.home-feature h3 {
		font-family: var(--lld-font-display);
		font-size: 30px;
		font-weight: 600;
		line-height: 30px;
		letter-spacing: 0;
		padding-block: 5px;
	}

	.home-feature p {
		margin-top: 18px;
		font-size: 18px;
		line-height: 31.5px;
	}
}

@media (min-width: 1920px) {
	.home-why__intro,
	.home-why__grid {
		padding: 144px;
	}

	.home-why__grid {
		gap: 36px;
	}

	.home-why__intro .home-section-heading__intro {
		width: 420px;
		max-width: none;
	}
}

/* Keep the editorial lead in the measured narrow text rail. The live
 * composition uses a deliberately short line length even when the lime
 * panel itself becomes wide. */
@media (min-width: 960px) {
	.home-why__intro .home-section-heading__lead {
		max-width: none;
		min-height: 133px;
		font-family: var(--lld-font-body);
	}

	.home-why__intro .lld-button {
		margin-top: 37px;
	}
}

@media (max-width: 959px) {
	.site-header__inner {
		width: calc(100% - (2 * var(--lld-gutter)));
		min-height: 83px;
	}

	body.home .site-main {
		padding-top: 83px;
	}

	.home-hero {
		height: clamp(320px, calc(33.6vw + 105px), 363px);
		min-height: clamp(320px, calc(33.6vw + 105px), 363px);
	}

	.home-hero__content h1 {
		max-width: 100%;
		font-weight: 900;
	}

	.home-why > .lld-container {
		display: block;
		width: 100%;
		max-width: none;
	}

	.home-why__intro,
	.home-why__grid {
		width: 100%;
	}

	.home-why__intro {
		padding: 64px var(--lld-gutter);
		background: var(--lld-color-lime);
	}

	.home-why__grid {
		padding: 64px var(--lld-gutter);
		background: var(--lld-color-surface);
	}

	.home-feature h3 {
		font-weight: 600;
		letter-spacing: 0;
	}
}

/* Final responsive alignment adjustment from the paired 768px/390px
 * captures: the lime intro panel ends on the same baseline as production. */
@media (min-width: 640px) and (max-width: 959px) {
	.home-why__intro {
		padding-bottom: 61px;
	}
}

@media (max-width: 639px) {
	.home-why__intro {
		padding-bottom: 60px;
	}

	.home-why__intro .lld-button {
		margin-top: 42px;
	}
}

/* Final measured Why Choose typography and vertical-rhythm corrections. */
@media (min-width: 960px) {
	.home-why__intro .home-section-heading__lead {
		max-width: none;
		min-height: 133px;
		font-family: var(--lld-font-body);
	}

	.home-why__intro .lld-button {
		margin-top: 37px;
	}
}

@media (min-width: 640px) and (max-width: 959px) {
	.home-why__intro .home-section-heading__lead {
		max-width: none;
		min-height: 92px;
		font-family: var(--lld-font-body);
	}

	.home-why__intro {
		padding-bottom: 56px;
	}

	.home-why__intro .lld-button {
		margin-top: 37px;
	}
}

@media (max-width: 639px) {
	.home-why__intro .home-section-heading__lead {
		max-width: none;
		min-height: 133px;
		font-family: var(--lld-font-body);
	}

	.home-why__intro {
		padding-bottom: 61px;
	}

	.home-why__intro .lld-button {
		box-sizing: border-box;
		white-space: nowrap;
		padding-inline: 10px;
		white-space: nowrap;
		padding-inline: 10px;
		white-space: nowrap;
		padding-inline: 10px;
		white-space: nowrap;
		padding-inline: 10px;
		height: 42px;
		min-height: 42px;
		line-height: 15px;
		margin-top: 42px;
	}
}

/* Authoritative homepage final-polish rules. */
@media (min-width: 960px) {
	.home-stats > .lld-container {
		width: min(calc(100% - 144px), 1760px);
		max-width: 1760px;
		margin-inline: auto;
	}

	.home-clients {
		min-height: 324px;
	}

	.home-client-gallery {
		height: 390px;
	}

	.home-client-gallery__track {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 12px;
		height: 100%;
		padding-inline: 10px;
	}

	.home-client-gallery__item {
		height: 100%;
		margin: 0;
		overflow: hidden;
	}

	.home-client-gallery__item img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}

	.home-client-gallery__controls {
		display: none;
	}
}

@media (min-width: 960px) and (max-width: 1199px) {
	.home-stats__intro-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 36px;
	}

	.home-stats__intro-copy {
		min-width: 0;
		max-width: none;
	}

	.home-stats__intro-copy p {
		max-width: 100%;
	}

	.home-stats__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		column-gap: 36px;
	}

	.home-card-grid--case-studies,
	.home-card-grid--insights {
		grid-auto-columns: calc((100% - 72px) / 3);
		gap: 36px;
	}
}

@media (max-width: 959px) {
	.home-stats > .lld-container {
		width: calc(100% - (2 * var(--lld-gutter)));
		max-width: none;
	}

	.home-stats__intro-row {
		text-align: center;
	}

	.home-stats__heading h2 {
		align-items: center;
	}

	.home-stats__intro-copy {
		padding-top: 0;
	}

	.home-stats__intro-copy .lld-button {
		margin-inline: auto;
	}

	.home-client-gallery {
		position: relative;
		height: 389px;
		overflow: hidden;
		background: var(--lld-color-paper);
	}

	.home-client-gallery__track {
		display: flex;
		height: 100%;
		transition: transform 220ms ease-out;
	}

	.home-client-gallery__item {
		flex: 0 0 100%;
		height: 100%;
		margin: 0;
	}

	.home-client-gallery__item img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}

	.home-client-gallery__controls {
		position: absolute;
		bottom: 1.25rem;
		left: 50%;
		display: flex;
		gap: 0.65rem;
		transform: translateX(-50%);
	}

	.home-client-gallery__dot {
		width: 0.7rem;
		height: 0.7rem;
		padding: 0;
		border: 1px solid var(--lld-color-surface);
		border-radius: 50%;
		background: transparent;
		cursor: pointer;
	}

	.home-client-gallery__dot.is-active {
		background: var(--lld-color-surface);
	}
}

@media (max-width: 639px) {
	.home-clients {
		min-height: 340px;
	}

	.home-client-gallery {
		height: 343px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-client-gallery__track {
		transition: none;
	}
}

/* Homepage final-polish corrections: the production stats rail uses a
 * wide editorial frame and the client section is followed by a distinct
 * image rail. Keep the section containers separate from the global content
 * max-width so medium desktop widths cannot overflow. */
@media (min-width: 960px) {
	.home-stats > .lld-container {
		width: min(calc(100% - 144px), 1760px);
		max-width: 1760px;
		margin-inline: auto;
	}

	.home-clients {
		min-height: 324px;
	}

	.home-client-gallery {
		height: 390px;
	}

	.home-client-gallery__track {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 12px;
		height: 100%;
		padding-inline: 10px;
	}

	.home-client-gallery__item {
		height: 100%;
		margin: 0;
		overflow: hidden;
	}

	.home-client-gallery__item img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}

	.home-client-gallery__controls {
		display: none;
	}
}

@media (min-width: 960px) and (max-width: 1199px) {
	.home-stats__intro-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 36px;
	}

	.home-stats__intro-copy {
		min-width: 0;
		max-width: none;
	}

	.home-stats__intro-copy p {
		max-width: 100%;
	}

	.home-stats__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		column-gap: 36px;
	}

	.home-card-grid--case-studies,
	.home-card-grid--insights {
		grid-auto-columns: calc((100% - 72px) / 3);
		gap: 36px;
	}
}

@media (max-width: 959px) {
	.home-stats > .lld-container {
		width: calc(100% - (2 * var(--lld-gutter)));
		max-width: none;
	}

	.home-stats__intro-row {
		text-align: center;
	}

	.home-stats__heading h2 {
		align-items: center;
	}

	.home-stats__intro-copy {
		padding-top: 0;
	}

	.home-stats__intro-copy .lld-button {
		margin-inline: auto;
	}

	.home-client-gallery {
		position: relative;
		height: 389px;
		overflow: hidden;
		background: var(--lld-color-paper);
	}

	.home-client-gallery__track {
		display: flex;
		height: 100%;
		transition: transform 220ms ease-out;
	}

	.home-client-gallery__item {
		flex: 0 0 100%;
		height: 100%;
		margin: 0;
	}

	.home-client-gallery__item img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}

	.home-client-gallery__controls {
		position: absolute;
		bottom: 1.25rem;
		left: 50%;
		display: flex;
		gap: 0.65rem;
		transform: translateX(-50%);
	}

	.home-client-gallery__dot {
		width: 0.7rem;
		height: 0.7rem;
		padding: 0;
		border: 1px solid var(--lld-color-surface);
		border-radius: 50%;
		background: transparent;
		cursor: pointer;
	}

	.home-client-gallery__dot.is-active {
		background: var(--lld-color-surface);
	}
}

@media (max-width: 639px) {
	.home-clients {
		min-height: 340px;
	}

	.home-client-gallery {
		height: 343px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-client-gallery__track {
		transition: none;
	}
}

/* Final measured Why Choose typography and vertical-rhythm corrections. */
@media (min-width: 960px) {
	.home-why__intro .home-section-heading__lead {
		max-width: none;
		min-height: 133px;
		font-family: var(--lld-font-body);
	}

	.home-why__intro .lld-button {
		margin-top: 37px;
	}
}

@media (min-width: 640px) and (max-width: 959px) {
	.home-why__intro .home-section-heading__lead {
		max-width: none;
		min-height: 92px;
		font-family: var(--lld-font-body);
	}

	.home-why__intro {
		padding-bottom: 56px;
	}

	.home-why__intro .lld-button {
		margin-top: 37px;
	}
}

@media (max-width: 639px) {
	.home-why__intro .home-section-heading__lead {
		max-width: none;
		min-height: 133px;
		font-family: var(--lld-font-body);
	}

	.home-why__intro {
		padding-bottom: 61px;
	}

	.home-why__intro .lld-button {
		box-sizing: border-box;
		height: 42px;
		min-height: 42px;
		line-height: 15px;
		margin-top: 42px;
	}
}

@media (min-width: 640px) and (max-width: 959px) {
	.home-why__intro .home-section-heading__lead {
		max-width: none;
		min-height: 92px;
		font-family: var(--lld-font-body);
	}

	.home-why__intro {
		padding-bottom: 56px;
	}

	.home-why__intro .lld-button {
		margin-top: 37px;
	}
}

@media (max-width: 639px) {
	.home-why__intro .home-section-heading__lead {
		max-width: none;
		min-height: 133px;
		font-family: var(--lld-font-body);
	}

	.home-why__intro {
		padding-bottom: 58px;
	}

	.home-why__intro .lld-button {
		box-sizing: border-box;
		height: 42px;
		min-height: 42px;
		line-height: 15px;
		margin-top: 42px;
	}
}

@media (min-width: 640px) and (max-width: 959px) {
	.home-hero {
		height: 363px;
		min-height: 363px;
	}

	.home-why .home-section-heading__title {
		font-size: 50px;
		line-height: 60px;
	}

	.home-why__intro {
		padding-bottom: 61px;
	}

	.home-why__intro .home-section-heading__lead {
		margin-top: 36px;
		font-size: 30px;
		line-height: 36px;
		padding-block: 5px;
	}

	.home-why__intro .home-section-heading__intro {
		margin-top: 36px;
		font-size: 18px;
		line-height: 31.5px;
	}

	.home-why__intro .lld-button {
		margin-top: 36px;
	}
}

@media (max-width: 639px) {
	.home-why .home-section-heading__title {
		font-size: 35px;
		line-height: 42px;
	}

	.home-why__intro .home-section-heading__lead {
		max-width: none;
		margin-top: 36px;
		font-size: 30px;
		line-height: 36px;
		padding-block: 5px;
	}

	.home-why__intro .home-section-heading__intro {
		margin-top: 36px;
		font-size: 18px;
		line-height: 31.5px;
	}

	.home-why__intro .lld-button {
		width: 162px;
		min-height: 42px;
		margin-top: 42px;
		padding: 12px 19px;
	}
}

.home-why__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: 36px;
	row-gap: 52px;
}

.home-feature__icon {
	width: 70px;
	height: 70px;
	margin-bottom: 24px;
}

.home-feature h3,
.home-stat h3 {
	font-family: var(--lld-font-display);
	font-size: 30px;
	font-weight: 400;
	line-height: 30px;
}

.home-feature p,
.home-stat p:not(.home-stat__value) {
	margin-top: 16px;
	font-size: 18px;
	line-height: 27px;
}

.home-stats__grid {
	grid-template-columns: repeat(4, 213px);
	column-gap: 72px;
	row-gap: 72px;
	margin-top: 145px;
}

.home-stats > .lld-container {
	display: block;
}

.home-stats {
	background-image: linear-gradient(rgba(215, 223, 37, 0.78), rgba(215, 223, 37, 0.78)), url("../images/home-hero.webp");
	background-position: center;
	background-size: cover;
	min-height: 893px;
	padding-block: 108px 24px;
}

.home-stats__intro-row {
	display: grid;
	grid-template-columns: 534px 534px;
	gap: 72px;
}

.home-stats__intro-copy {
	padding-top: 27px;
}

.home-stats__intro-copy p {
	max-width: 534px;
	margin: 0;
	font-family: var(--lld-font-body);
	font-size: 30px;
	font-weight: 600;
	line-height: 40px;
}

.home-stats__intro-copy .lld-button {
	margin-top: 19px;
}

.home-stat__value {
	font-size: 75px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 100px;
}

.home-card-grid--case-studies,
.home-card-grid--insights {
	grid-template-columns: none;
	grid-auto-columns: 332px;
	grid-auto-flow: column;
	gap: 72px;
	overflow: hidden;
}

.home-case-studies,
.home-insights {
	padding-block: 36px 104px;
}

.home-insights {
	min-height: 711px;
}

.home-case-studies .home-section-heading,
.home-insights .home-section-heading,
.home-clients .home-section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	margin-bottom: 49px;
}

.home-case-studies .home-section-heading__title,
.home-insights .home-section-heading__title,
.home-clients .home-section-heading__title {
	grid-column: 1;
	grid-row: 1;
}

.home-case-studies .home-section-heading__intro,
.home-insights .home-section-heading__intro,
.home-clients .home-section-heading__intro {
	grid-column: 1;
	grid-row: 2;
	margin: 0;
}

.home-case-studies .home-section-heading > .lld-button,
.home-insights .home-section-heading > .lld-button,
.home-clients .home-section-heading > .lld-button {
	grid-column: 2;
	grid-row: 1 / span 2;
	align-self: center;
}

.home-card {
	background: transparent;
}

.home-card__body {
	padding: 24px 0 0;
}

.home-card h3 {
	font-family: var(--lld-font-body);
	font-size: 20px;
	font-weight: 600;
	line-height: 24px;
}

.home-card__meta {
	margin-top: 10px;
	font-size: 14px;
	line-height: 20px;
}

.lld-page-hero {
	min-height: var(--lld-page-hero-height);
}

.lld-page-hero__media::after {
	background: rgba(215, 223, 37, var(--lld-overlay-lime-opacity));
}

.lld-page-hero > .lld-container {
	padding-block: 4rem;
}

.lld-page-hero h1 {
	max-width: none;
	font-size: 75px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 90px;
}

.lld-page-hero__intro {
	margin-top: 28px;
	font-size: 30px;
	line-height: 36px;
}

.lld-page-hero--compact {
	min-height: 300px;
}

.lld-section-heading h2,
.lld-section-heading h1,
.lld-related-services h2,
.lld-related-cases h2,
.lld-readable-content h2,
.lld-readable-content h3 {
	letter-spacing: 0;
}

.lld-service-card__title,
.lld-case-card__title,
.lld-post-card__title {
	font-family: var(--lld-font-body);
	font-weight: 700;
	letter-spacing: 0;
}

.lld-service-card__title,
.lld-case-card__title {
	font-size: 30px;
	line-height: 30px;
}

.lld-post-card__title {
	font-size: 20px;
	line-height: 24px;
}

.lld-breadcrumbs {
	font-size: 16px;
}

@media (min-width: 960px) {
	.menu-toggle {
		display: none;
	}
}

@media (max-width: 959px) {
	.site-header__inner {
		min-height: 84px;
		padding-block: 0;
	}

	.header-social-navigation {
		display: none;
	}

	.primary-navigation a {
		min-height: 0;
		font-size: 18px;
	}

	body.home .site-main {
		padding-top: 84px;
	}

	.home-hero {
		height: 520px;
		min-height: 520px;
	}

	.home-hero__content h1,
	.lld-page-hero h1 {
		font-size: clamp(3.2rem, 8vw, 5rem);
		line-height: 1;
	}

	.home-hero__content p,
	.lld-page-hero__intro {
		font-size: 24px;
		line-height: 30px;
	}

	.home-why > .lld-container,
	.home-stats > .lld-container {
		grid-template-columns: 1fr;
		gap: 48px;
	}
}

@media (max-width: 639px) {
	.home-hero {
		height: 540px;
		min-height: 540px;
	}

	.home-hero__content {
		padding-block: 4rem 5rem;
	}

	.home-hero__content h1,
	.lld-page-hero h1 {
		max-width: 12ch;
		font-size: 46px;
		line-height: 48px;
	}

	.home-hero__content p,
	.lld-page-hero__intro {
		font-size: 20px;
		line-height: 26px;
	}

	.home-section {
		padding-block: 64px;
	}

	.home-section-heading__title,
	.home-services h2,
	.home-stats__heading h2 {
		font-size: 48px;
		line-height: 54px;
	}

	.home-section-heading__lead {
		font-size: 26px;
		line-height: 31px;
	}

	.home-feature h3,
	.home-stat h3 {
		font-size: 24px;
		line-height: 27px;
	}

	.home-card-grid--case-studies,
	.home-card-grid--insights {
		grid-template-columns: 1fr;
	}

	.lld-page-hero {
		min-height: 420px;
	}

	.lld-page-hero--compact {
		min-height: 260px;
	}
}

@media (max-width: 959px) {
	body.home .site-main {
		padding-top: 84px;
	}

	.home-hero {
		height: 22.8rem;
		min-height: 22.8rem;
	}

	.home-hero__content h1 {
		font-size: clamp(2.2rem, 6.5vw, 3.15rem);
	}

	.home-hero__content p {
		max-width: 34rem;
		font-size: 1.05rem;
	}

	.home-why > .lld-container,
	.home-stats > .lld-container,
	.home-services__inner {
		grid-template-columns: 1fr;
	}

	.home-why__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-stats__grid,
	.home-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-section-heading {
		align-items: start;
	}

	.home-section-heading__intro {
		margin-left: 0;
	}

	body.home .site-cta__inner {
		min-height: 23rem;
	}
}

@media (max-width: 639px) {
	body.home .site-main {
		padding-top: 84px;
	}

	.home-hero {
		height: 20.1rem;
		min-height: 20.1rem;
	}

	.home-hero__content {
		padding-block: 3rem 5rem;
	}

	.home-hero__content h1 {
		max-width: 11ch;
		font-size: 2.2rem;
	}

	.home-hero__content p {
		margin-top: 1rem;
		font-size: 0.95rem;
	}

	.home-hero__content .lld-button {
		margin-top: 1.25rem;
	}

	.home-hero__controls {
		bottom: 1rem;
	}

	.home-hero__arrow {
		width: 2.5rem;
		height: 2.5rem;
	}

	.home-section-heading__title,
	.home-services h2,
	.home-stats__heading h2 {
		font-size: 2.65rem;
	}

	.home-section-heading__lead {
		font-size: 1.6rem;
	}

	.home-why > .lld-container,
	.home-stats > .lld-container {
		gap: 3.5rem;
	}

	.home-why__grid,
	.home-stats__grid,
	.home-card-grid {
		grid-template-columns: 1fr;
	}

	.home-section-heading {
		flex-direction: column;
		gap: 1rem;
		margin-bottom: 2rem;
	}

	.home-section-heading__intro {
		margin-top: 0;
	}

	.home-matterport {
		height: 600px;
	}

	.home-clients__logo-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1rem;
	}

	body.home .site-cta__inner {
		min-height: 18.5rem;
	}

	body.home .site-footer__inner {
		min-height: 39rem;
	}
}

/* Services and Case Studies content system. */
.lld-page-hero {
	position: relative;
	display: grid;
	min-height: 34rem;
	place-items: center;
	overflow: hidden;
	background: var(--lld-color-lime);
	color: var(--lld-color-ink);
}

.lld-page-hero__media,
.lld-page-hero__media::after,
.lld-page-hero__media img {
	position: absolute;
	inset: 0;
}

.lld-page-hero__media::after {
	background: rgba(215, 223, 37, 0.74);
	content: "";
}

.lld-page-hero__media img {
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
}

.lld-page-hero > .lld-container {
	position: relative;
	z-index: 1;
	padding-block: 6rem;
	text-align: center;
}

.lld-page-hero h1 {
	max-width: 14ch;
	margin: 0 auto;
	font-family: var(--lld-font-display);
	font-size: clamp(3.2rem, 7vw, 6.25rem);
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1;
	text-wrap: balance;
}

.lld-page-hero__intro {
	max-width: 48rem;
	margin: 1.5rem auto 0;
	font-size: clamp(1.25rem, 2vw, 1.9rem);
	line-height: 1.2;
	text-wrap: balance;
}

.lld-page-hero--compact {
	min-height: 18rem;
}

.lld-page-hero--compact h1 {
	font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.lld-breadcrumbs {
	margin-bottom: 2.5rem;
	font-size: 0.85rem;
}

.lld-breadcrumbs ol {
	display: flex;
	justify-content: center;
	gap: 0.65rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.lld-breadcrumbs li + li::before {
	margin-right: 0.65rem;
	content: "/";
}

.lld-breadcrumbs li,
.lld-breadcrumbs span,
.lld-breadcrumbs a {
	min-width: 0;
	overflow-wrap: anywhere;
}

.lld-breadcrumbs a {
	text-underline-offset: 0.2em;
}

.lld-content-section {
	padding-block: clamp(5rem, 9vw, 8rem);
	background: var(--lld-color-surface);
}

.lld-section-heading {
	max-width: 55rem;
	margin-bottom: clamp(3rem, 6vw, 5rem);
}

.lld-section-heading h2,
.lld-section-heading h1,
.lld-related-services h2,
.lld-related-cases h2 {
	max-width: 100%;
	margin: 0;
	font-family: var(--lld-font-display);
	font-size: clamp(2.8rem, 5vw, 4.7rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1;
	text-wrap: balance;
	overflow-wrap: anywhere;
}

.lld-section-heading h1 {
	max-width: 14ch;
	margin: 0;
	font-family: var(--lld-font-display);
	font-size: clamp(2.2rem, 8.68vw, 6.25rem);
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1;
	text-wrap: balance;
}

.lld-section-heading p {
	max-width: 50rem;
	margin: 1.5rem 0 0;
	font-size: clamp(1.1rem, 1.8vw, 1.45rem);
	line-height: 1.35;
}

.lld-service-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(4rem, 7vw, 7rem) 2.5rem;
}

.lld-service-card {
	min-width: 0;
}

.lld-service-card__media {
	display: grid;
	width: 4.4rem;
	height: 4.4rem;
	margin-bottom: 1.5rem;
	place-items: center;
}

.lld-service-card__media img {
	display: block;
	width: 4.4rem;
	height: 4.4rem;
	object-fit: contain;
}

.lld-service-card__title {
	max-width: 100%;
	margin: 0;
	font-family: var(--lld-font-display);
	font-size: clamp(1.45rem, 2vw, 1.95rem);
	font-weight: 800;
	line-height: 1.05;
	text-wrap: balance;
	overflow-wrap: anywhere;
}

.lld-service-card__title a {
	text-decoration: none;
}

.lld-service-card p {
	max-width: 34ch;
	margin: 0.9rem 0 0;
	font-size: 1rem;
	line-height: 1.45;
}

.lld-text-link {
	display: inline-block;
	margin-top: 1.25rem;
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
}

.lld-text-link::after {
	margin-left: 0.45rem;
	content: "→";
}

.lld-taxonomy-nav {
	padding-block: 1.25rem;
	background: var(--lld-color-ink);
	color: var(--lld-color-surface);
}

.lld-taxonomy-nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.5rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.lld-taxonomy-nav a {
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
}

.lld-taxonomy-nav a:hover,
.lld-taxonomy-nav a:focus-visible {
	color: var(--lld-color-lime);
}

.lld-case-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(2.5rem, 5vw, 5rem) 1.5rem;
}

.lld-case-card {
	min-width: 0;
}

.lld-case-card__media {
	display: block;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: var(--lld-color-paper);
}

.lld-case-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	transition: transform 220ms ease-out;
}

.lld-case-card__media:hover img,
.lld-case-card__media:focus-visible img {
	transform: scale(1.03);
}

.lld-case-card__media-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: var(--lld-color-line);
}

.lld-case-card__body {
	padding-top: 1.25rem;
}

.lld-case-card__terms,
.lld-case-single__terms {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem 1rem;
	padding: 0;
	margin: 0 0 0.8rem;
	list-style: none;
}

.lld-case-card__terms a,
.lld-case-single__terms a {
	font-size: 0.78rem;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
}

.lld-case-card__title {
	max-width: 100%;
	margin: 0;
	font-family: var(--lld-font-display);
	font-size: clamp(1.45rem, 2vw, 2rem);
	font-weight: 700;
	line-height: 1.05;
	text-wrap: balance;
	overflow-wrap: anywhere;
}

.lld-case-card__title a {
	text-decoration: none;
}

.lld-case-card__date {
	margin: 0.8rem 0 0;
	color: var(--lld-color-muted);
	font-size: 0.85rem;
}

.lld-pagination {
	margin-top: 4rem;
}

.lld-pagination .nav-links,
.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
}

.lld-pagination a,
.lld-pagination span,
.nav-links a,
.nav-links span {
	display: inline-block;
	padding: 0.55rem 0.8rem;
	border: 1px solid var(--lld-color-ink);
	font-size: 0.9rem;
	text-decoration: none;
}

.lld-pagination .current,
.nav-links .current {
	background: var(--lld-color-ink);
	color: var(--lld-color-surface);
}

.lld-case-single__inner {
	padding-block: clamp(4rem, 8vw, 7rem);
}

.lld-case-single__featured {
	max-width: var(--lld-container-wide);
	margin: 0 auto clamp(3rem, 7vw, 6rem);
}

.lld-case-single__featured img {
	display: block;
	width: 100%;
	height: auto;
}

.lld-readable-content {
	max-width: 75ch;
	margin-inline: auto;
}

.lld-readable-content h2,
.lld-readable-content h3 {
	font-family: var(--lld-font-display);
	line-height: 1.05;
	text-wrap: balance;
}

.lld-readable-content h2 {
	margin-top: 3.5rem;
	font-size: clamp(2rem, 4vw, 3.2rem);
}

.lld-readable-content h3 {
	margin-top: 2.5rem;
	font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.lld-readable-content p,
.lld-readable-content li {
	font-size: 1.08rem;
	line-height: 1.65;
}

.lld-readable-content img,
.lld-readable-content iframe,
.lld-readable-content video {
	display: block;
	width: 100%;
	height: auto;
	margin-block: 2rem;
}

.lld-adjacent-nav {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem;
	max-width: 75ch;
	margin: clamp(4rem, 8vw, 7rem) auto 0;
	padding-top: 1.5rem;
	border-top: 1px solid var(--lld-color-line);
}

.lld-adjacent-nav a {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	font-family: var(--lld-font-display);
	font-size: 1.35rem;
	line-height: 1.1;
	text-decoration: none;
}

.lld-adjacent-nav a:last-child {
	text-align: right;
}

.lld-adjacent-nav span {
	font-family: var(--lld-font-body);
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
}

.lld-migration-note,
.lld-empty-state {
	max-width: 60ch;
	padding: 1rem 1.25rem;
	background: var(--lld-color-paper);
	color: var(--lld-color-muted);
}

@media (max-width: 959px) {
	.lld-page-hero {
		min-height: 27rem;
	}

	.lld-page-hero h1 {
		font-size: clamp(2.8rem, 8.7vw, 4.2rem);
	}

	.lld-page-hero > .lld-container {
		padding-block: 5rem;
	}

	.lld-service-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lld-case-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 639px) {
	.lld-page-hero {
		min-height: 25rem;
	}

	.lld-page-hero h1,
	.lld-page-hero--compact h1 {
		font-size: 2.2rem;
	}

	.lld-page-hero__intro {
		font-size: 1.15rem;
	}

	.lld-breadcrumbs {
		margin-bottom: 1.5rem;
	}

	.lld-breadcrumbs ol {
		flex-wrap: wrap;
		line-height: 1.4;
	}

	.lld-section-heading h2,
	.lld-related-services h2,
	.lld-related-cases h2 {
		text-wrap: wrap;
	}

	.lld-service-grid,
	.lld-case-grid {
		grid-template-columns: 1fr;
	}

	.lld-case-single__featured {
		margin-bottom: 3rem;
	}

	.lld-adjacent-nav {
		grid-template-columns: 1fr;
	}

	.lld-adjacent-nav a:last-child {
		text-align: left;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lld-case-card__media img {
		transition-duration: 0.01ms;
	}
}

/* Remaining native Page/Post families. */
.content-area.lld-full-bleed-area {
	width: 100%;
	max-width: none;
	padding-block: 0;
}

.lld-post-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 96px 36px;
}

.lld-blog-hero {
	min-height: 287px;
	background: linear-gradient(rgba(215, 223, 37, 0.68), rgba(215, 223, 37, 0.68)), url("../images/home-hero.webp") center / cover;
}

.lld-blog-hero > .lld-container {
	display: flex;
	align-items: stretch;
	flex-direction: column;
	justify-content: flex-start;
	min-height: 287px;
	padding-top: 82px;
	text-align: center;
}

.lld-blog-hero h1 {
	max-width: none;
	margin: 0;
	font-family: var(--lld-font-display);
	font-size: 100px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 120px;
}

.lld-blog-hero p {
	margin: 36px 0 0;
	font-size: 30px;
	font-weight: 600;
	line-height: 36px;
}

.lld-blog-landing {
	padding-block: 60px 96px;
}

.lld-blog-archive-heading {
	text-align: center;
}

.lld-blog-archive-heading h2 {
	margin: 0;
	font-family: var(--lld-font-body);
	font-size: 50px;
	font-weight: 600;
	line-height: 60px;
	text-transform: uppercase;
}

.lld-blog-archive-heading p {
	margin: 36px auto 0;
	font-size: 18px;
	line-height: 31.5px;
}

.lld-blog-landing .lld-post-grid {
	margin-top: 234px;
}

.lld-post-card {
	min-width: 0;
}

.lld-post-card__media {
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: var(--lld-color-paper);
}

.lld-post-card__media a,
.lld-post-card__media img {
	display: block;
	width: 100%;
	height: 100%;
}

.lld-post-card__media img {
	object-fit: cover;
	transition: transform 220ms ease-out;
}

.lld-post-card:hover .lld-post-card__media img,
.lld-post-card:focus-within .lld-post-card__media img {
	transform: scale(1.03);
}

.lld-post-card__body {
	padding-top: 18px;
}

.lld-post-card__title {
	margin: 0;
	font-family: var(--lld-font-body);
	font-size: 20px;
	font-weight: 600;
	line-height: 30px;
	text-wrap: balance;
}

.lld-post-card__title a {
	text-decoration: none;
}

.lld-post-card__date,
.lld-blog-single__meta {
	margin: 12px 0 0;
	color: var(--lld-color-muted);
	font-size: 16px;
	line-height: 22px;
}

.lld-post-card__date a,
.lld-blog-single__meta a {
	text-decoration: none;
}

.lld-pagination,
.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
	margin-top: clamp(3rem, 6vw, 5rem);
}

.lld-search-results .lld-section-heading h1 {
	max-width: 17ch;
	font-family: var(--lld-font-display);
	font-size: clamp(3rem, 7vw, 6.25rem);
	line-height: 1;
}

.lld-search-form {
	max-width: 42rem;
	margin: 0 0 clamp(3rem, 6vw, 5rem);
}

.lld-search-form .search-form {
	display: flex;
	gap: 0.75rem;
}

.lld-search-form .search-field {
	min-width: 0;
	padding: 0.75rem 0.85rem;
	border: 1px solid var(--lld-color-line);
	background: var(--lld-color-surface);
}

.lld-search-form .search-submit {
	flex: 0 0 auto;
	padding: 0.75rem 1rem;
	border: 1px solid var(--lld-color-ink);
	background: var(--lld-color-ink);
	color: var(--lld-color-surface);
	cursor: pointer;
}

@media (max-width: 639px) {
	.lld-search-form .search-form {
		align-items: stretch;
		flex-direction: column;
	}
}

.lld-no-results {
	margin-top: 3rem;
}

.lld-no-results h2 {
	max-width: 24ch;
	font-family: var(--lld-font-display);
	font-size: clamp(2rem, 4vw, 3.4rem);
	line-height: 1.05;
}

.lld-blog-single__inner {
	padding-block: clamp(3rem, 7vw, 6rem);
}

.lld-blog-single__meta {
	max-width: 75ch;
	margin-inline: auto;
}

.lld-blog-single__meta .updated {
	margin-left: 0.4rem;
}

.lld-blog-single__featured {
	max-width: 75rem;
	margin: clamp(2rem, 5vw, 4rem) auto 0;
}

.lld-blog-single__featured img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.lld-blog-single__content {
	margin-top: clamp(3rem, 7vw, 6rem);
}

.lld-related-posts {
	background: var(--lld-color-paper);
}

.lld-related-posts h2 {
	margin: 0 0 clamp(2rem, 4vw, 3.5rem);
	font-family: var(--lld-font-display);
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	line-height: 1;
}

.lld-contact__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.8fr);
	gap: clamp(3rem, 8vw, 9rem);
	align-items: start;
}

.lld-contact__aside {
	min-width: 0;
}

.lld-form-shell {
	padding: clamp(1.5rem, 3vw, 2.5rem);
	background: var(--lld-color-paper);
}

.lld-form-shell h2 {
	margin: 0 0 1rem;
	font-family: var(--lld-font-display);
	font-size: clamp(1.8rem, 3vw, 2.7rem);
	line-height: 1;
}

.lld-form-shell p {
	margin: 0;
}

.lld-form-shell form {
	display: grid;
	gap: 1rem;
}

.lld-form-shell label {
	display: block;
	margin-bottom: 0.35rem;
	font-weight: 700;
}

.lld-form-shell input,
.lld-form-shell select,
.lld-form-shell textarea {
	width: 100%;
	padding: 0.75rem 0.85rem;
	border: 1px solid var(--lld-color-line);
	border-radius: 0;
	background: var(--lld-color-surface);
	color: var(--lld-color-ink);
}

.lld-map-embed {
	aspect-ratio: 16 / 7;
	min-height: 18rem;
	background: var(--lld-color-paper);
}

.lld-map-embed iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.lld-page-hero--plain {
	background: var(--lld-color-paper);
}

.lld-page-hero--plain > .lld-container {
	text-align: left;
}

.lld-page-hero--plain h1 {
	margin-inline: 0;
}

.lld-legal-page .lld-readable-content {
	max-width: 68ch;
}

.lld-about-page .lld-readable-content {
	max-width: 78ch;
}

.lld-about-page .entry-content h2:first-child {
	margin-top: 0;
}

.lld-inline-cta {
	background: var(--lld-color-lime);
	color: var(--lld-color-ink);
}

.lld-inline-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	padding-block: clamp(2.5rem, 5vw, 4.5rem);
}

.lld-inline-cta h2 {
	max-width: 18ch;
	margin: 0;
	font-family: var(--lld-font-display);
	font-size: clamp(2.2rem, 4vw, 4rem);
	line-height: 1;
}

@media (max-width: 639px) {
	.lld-inline-cta__inner {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 959px) {
	.lld-post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lld-contact__grid {
		grid-template-columns: 1fr;
	}

	.lld-contact__aside {
		max-width: 42rem;
	}
}

@media (max-width: 639px) {
	.lld-post-grid {
		grid-template-columns: 1fr;
		gap: 2.75rem;
	}

	.lld-post-card__title {
		font-size: 1.4rem;
	}

	.lld-blog-single__meta {
		line-height: 1.5;
	}

	.lld-blog-single__featured img {
		aspect-ratio: 4 / 3;
	}

	.lld-map-embed {
		aspect-ratio: 4 / 3;
		min-height: 16rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.lld-post-card__media img {
		transition-duration: 0.01ms;
	}
}

/* Final ordering overrides for internal and native post families. */
.lld-page-hero {
	min-height: var(--lld-page-hero-height);
}

.lld-page-hero__media::after {
	background: rgba(215, 223, 37, var(--lld-overlay-lime-opacity));
}

.lld-page-hero > .lld-container {
	padding-block: 4rem;
}

.lld-page-hero h1 {
	max-width: none;
	font-size: 75px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 90px;
}

.lld-page-hero__intro {
	margin-top: 28px;
	font-size: 30px;
	line-height: 36px;
}

.lld-page-hero--compact {
	min-height: 300px;
}

.lld-service-card__title,
.lld-case-card__title,
.lld-post-card__title {
	font-family: var(--lld-font-body);
	font-weight: 700;
	letter-spacing: 0;
}

.lld-service-card__title,
.lld-case-card__title {
	font-size: 30px;
	line-height: 30px;
}

.lld-post-card__title {
	font-size: 20px;
	line-height: 24px;
}

@media (max-width: 959px) {
	.lld-page-hero {
		min-height: 420px;
	}

	.lld-page-hero h1 {
		font-size: clamp(3.2rem, 8vw, 5rem);
		line-height: 1;
	}

	.lld-page-hero__intro {
		font-size: 24px;
		line-height: 30px;
	}
}

@media (max-width: 639px) {
	.lld-page-hero {
		min-height: 420px;
	}

	.lld-page-hero--compact {
		min-height: 260px;
	}

	.lld-page-hero h1 {
		max-width: 12ch;
		font-size: 46px;
		line-height: 48px;
	}

	.lld-page-hero__intro {
		font-size: 20px;
		line-height: 26px;
	}
}

/* Detail-page heroes are image-led first viewports in the public reference. */
.lld-blog-single-hero,
.lld-case-single-hero {
	min-height: 720px;
}

.lld-service-single-hero {
	min-height: 552px;
}

.lld-blog-single-hero h1,
.lld-case-single-hero h1 {
	max-width: 1128px;
	font-size: 100px;
	line-height: 120px;
	letter-spacing: normal;
}

.lld-service-single-hero h1 {
	max-width: 1128px;
	font-size: 100px;
	font-weight: 900;
	line-height: 120px;
	letter-spacing: normal;
}

@media (min-width: 960px) {
	.lld-service-single-hero > .lld-container {
		transform: translateY(30px);
	}
}

@media (max-width: 959px) {
	.lld-blog-single-hero,
	.lld-case-single-hero {
		min-height: 560px;
	}

	.lld-service-single-hero {
		min-height: 552px;
	}

	.lld-blog-single-hero h1,
	.lld-case-single-hero h1 {
		font-size: clamp(3.5rem, 9vw, 6.25rem);
		line-height: 1;
	}
}

@media (max-width: 639px) {
	.lld-blog-single-hero,
	.lld-case-single-hero {
		min-height: 540px;
	}

	.lld-service-single-hero {
		min-height: 540px;
	}

	.lld-blog-single-hero h1,
	.lld-case-single-hero h1 {
		max-width: 100%;
		font-size: 48px;
		line-height: 52px;
	}

	.lld-service-single-hero h1 {
		max-width: 100%;
		font-size: 48px;
		line-height: 52px;
	}
}

/* The public CTA is a compact, centered conversion panel. */
.site-cta__inner {
	min-height: 453px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-block: 36px;
}

.site-cta__title {
	font-size: 100px;
	line-height: 120px;
	letter-spacing: normal;
	text-align: center;
}

.site-cta__inner .lld-button {
	margin-top: 20px;
}

body.home .site-cta__inner {
	min-height: 453px;
}

/* Landing-page hero variants follow the live page-family type scale. */
.lld-services-landing-hero h1 {
	font-size: 75px;
	font-weight: 900;
	line-height: 90px;
	letter-spacing: normal;
}

.lld-case-studies-landing-hero h1 {
	font-size: 70px;
	font-weight: 900;
	line-height: 84px;
	letter-spacing: normal;
}

.lld-about-hero {
	min-height: 720px;
}

.lld-about-hero h1 {
	max-width: 1128px;
	font-size: 100px;
	font-weight: 900;
	line-height: 120px;
	letter-spacing: normal;
}

@media (min-width: 960px) {
	.lld-about-hero > .lld-container {
		transform: translateY(-80px);
	}

	.lld-about-hero .lld-page-hero__intro {
		max-width: 1128px;
		margin-inline: auto;
		margin-top: 36px;
	}
}

.lld-contact-hero__copy h1 {
	font-size: 100px;
	font-weight: 900;
	line-height: 120px;
	letter-spacing: normal;
}

.lld-blog-hero h1 {
	max-width: 882px;
	margin-inline: auto;
	font-weight: 600;
	letter-spacing: normal;
	text-align: center;
}

.home-why .home-section-heading__title,
.home-services h2 {
	font-weight: 600;
}

.home-stats__heading h2,
.home-case-studies .home-section-heading__title,
.home-clients .home-section-heading__title,
.home-insights .home-section-heading__title {
	font-weight: 900;
}

@media (min-width: 960px) {
	.lld-contact-hero {
		height: 1005px;
		min-height: 1005px;
		grid-template-rows: 1005px;
		overflow: hidden;
	}

	.lld-contact-hero__copy {
		padding-top: 136px;
	}
}

/* Final responsive composition overrides. */
@media (max-width: 959px) {
	.home-hero {
		min-height: 365px;
		height: 365px;
	}

	.home-why,
	.home-stats,
	.home-clients,
	.home-insights {
		min-height: 0;
	}

	.home-stats {
		padding-block: 64px;
	}

	.home-stats__intro-row {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.home-stats__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-top: 64px;
	}

	.home-card-grid--case-studies,
	.home-card-grid--insights {
		grid-auto-columns: calc(50vw - 54px);
	}

	.home-clients__logo-grid {
		gap: 36px;
	}
}

@media (max-width: 639px) {
	.home-hero {
		min-height: 322px;
		height: 322px;
	}

	.home-hero__content {
		padding-block: 3rem 5rem;
	}

	.home-hero h1 {
		max-width: 11ch;
		font-size: 35px;
		line-height: 38px;
	}

	.home-hero__content p {
		font-size: 15.2px;
		line-height: 20px;
	}

	.home-why {
		background: linear-gradient(to bottom, var(--lld-color-lime) 0 33%, var(--lld-color-surface) 33% 100%);
		padding-block: 64px;
	}

	.home-why__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		row-gap: 48px;
	}

	.home-stats__grid {
		grid-template-columns: 1fr;
	}

	.home-card-grid--case-studies,
	.home-card-grid--insights {
		grid-auto-columns: 100%;
	}

	.home-clients__logo-grid {
		gap: 36px;
		padding-block: 48px;
	}

	.lld-blog-hero {
		min-height: 339px;
	}

	.lld-blog-hero > .lld-container {
		min-height: 339px;
		justify-content: center;
		padding: 0 32px;
	}

	.lld-blog-hero h1 {
		font-size: 29px;
		line-height: 34px;
	}

	.lld-blog-hero p {
		font-size: 30px;
		font-weight: 400;
		line-height: 36px;
	}

	.lld-blog-landing {
		padding-block: 64px;
	}

	.lld-blog-landing .lld-post-grid {
		margin-top: 132px;
	}

	.lld-blog-archive-heading h2 {
		font-family: var(--lld-font-display);
		font-size: 36px;
		font-weight: 400;
		letter-spacing: 0;
		line-height: 42px;
	}

	.lld-post-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.lld-contact-hero {
		grid-template-columns: 1fr;
		height: auto;
		min-height: 0;
		grid-template-rows: none;
		overflow: visible;
	}

	.lld-contact-hero__map {
		min-height: 320px;
	}

	.lld-contact-hero__copy {
		padding: 64px 32px;
	}

	.site-cta__inner,
	body.home .site-cta__inner {
		min-height: 360px;
		padding-block: 64px;
	}

	.site-cta__title {
		font-size: 52px;
		line-height: 56px;
	}

	.lld-services-landing-hero h1,
	.lld-about-hero h1,
	.lld-contact-hero__copy h1 {
		max-width: 100%;
		font-size: 35px;
		line-height: 38px;
	}

	.lld-services-landing-hero h1 {
		font-size: 29px;
		line-height: 34px;
	}

	.lld-case-studies-landing-hero h1 {
		max-width: 100%;
		font-size: 35px;
		line-height: 38px;
	}

	.lld-about-hero {
		height: 425px;
		min-height: 425px;
		overflow: hidden;
	}

	.lld-services-landing-hero,
	.lld-case-studies-landing-hero {
		min-height: 339px;
	}

	.lld-blog-hero > .lld-container,
	.lld-services-landing-hero > .lld-container,
	.lld-case-studies-landing-hero > .lld-container {
		transform: translateY(30px);
	}

	.lld-about-hero > .lld-container {
		transform: translateY(-14px);
	}

	.lld-services-landing-hero .lld-page-hero__intro,
	.lld-case-studies-landing-hero .lld-page-hero__intro,
	.lld-about-hero .lld-page-hero__intro {
		font-size: 30px;
		line-height: 36px;
	}

	.lld-page-hero__cta {
		margin-top: 28px;
	}

	.lld-case-intro {
		width: 100%;
		padding: 60px 32px 72px;
	}

	.lld-case-intro h2,
	.lld-services-list .lld-section-heading h2 {
		font-size: 36px;
		line-height: 42px;
	}

	.lld-case-intro p,
	.lld-services-list .lld-section-heading p {
		font-size: 18px;
		line-height: 31.5px;
	}

	.lld-services-list {
		padding-bottom: 64px;
	}

	.lld-services-list > .lld-container {
		width: 100%;
		padding: 60px 32px 72px;
		border-radius: 10px 10px 0 0;
	}
}

@media (min-width: 1400px) {
	.lld-services-landing-hero > .lld-container {
		width: min(calc(100% - 70px), 1370px);
		transform: translateY(55px);
	}

	.lld-services-landing-hero h1 {
		white-space: nowrap;
	}

	.lld-about-hero > .lld-container {
		transform: translateY(-5px);
	}
}

/* Second-pass About composition: the public page is an editorial sequence,
 * not a short generic content page. */
.about-intro {
	background: var(--lld-color-surface);
}

.about-intro__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.1fr);
	gap: 72px;
	min-height: 1040px;
	padding-block: 107px 0;
}

.about-intro__copy {
	max-width: 433px;
}

.about-intro__copy h2 {
	margin: 0 0 36px;
	font-family: var(--lld-font-display);
	font-size: 75px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 90px;
}

.about-intro__copy p,
.about-intro__copy li {
	font-size: 18px;
	line-height: 31.5px;
}

.about-intro__copy p + p {
	margin-top: 28px;
}

.about-intro__copy h3 {
	margin: 70px 0 28px;
	font-family: var(--lld-font-body);
	font-size: 50px;
	font-weight: 600;
	line-height: 60px;
	text-transform: uppercase;
}

.about-intro__copy ul {
	padding-left: 1.3rem;
	margin: 0;
}

.about-intro__copy li + li {
	margin-top: 18px;
}

.about-intro__media,
.about-mission__media {
	margin: 0;
}

.about-intro__media img {
	display: block;
	width: min(100%, 668px);
	height: auto;
	margin-inline: auto 0;
}

.about-transformation {
	min-height: 480px;
	background: linear-gradient(rgba(215, 223, 37, 0.86), rgba(215, 223, 37, 0.86)), url("../images/about-transformation.webp") center / cover;
}

.about-transformation__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	min-height: 480px;
	text-align: center;
}

.about-transformation h2 {
	max-width: 1000px;
	margin: 0;
	font-family: var(--lld-font-display);
	font-size: 75px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 90px;
}

.about-transformation .lld-button {
	margin-top: 30px;
}

.about-transformation .lld-button__icon {
	display: block;
	flex: 0 0 15px;
	width: 15px;
	height: 15px;
	margin-left: 9px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5;
}

.about-mission {
	background: var(--lld-color-surface);
}

.about-mission__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 72px;
	min-height: 696px;
	padding-block: 36px;
}

.about-mission__copy {
	max-width: 500px;
}

.about-mission__copy h2 {
	margin: 0 0 36px;
	font-family: var(--lld-font-body);
	font-size: 50px;
	font-weight: 600;
	line-height: 60px;
	text-transform: uppercase;
}

.about-mission__copy h3 {
	margin: 0 0 22px;
	font-family: var(--lld-font-body);
	font-size: 50px;
	font-weight: 600;
	line-height: 60px;
}

.about-mission__copy h3 + p {
	margin: 0 0 42px;
	font-size: 18px;
	line-height: 31.5px;
}

.about-mission__media img {
	display: block;
	width: min(100%, 498px);
	height: auto;
	margin-inline: auto 0;
}

.about-clients {
	min-height: 2990px;
	padding-top: 36px;
	background: var(--lld-color-lime);
}

.about-clients .home-section-heading {
	display: block;
	max-width: 1000px;
	margin: 0 0 36px;
}

.about-clients .home-section-heading__title {
	font-size: 100px;
	font-weight: 600;
	line-height: 100px;
	text-transform: uppercase;
}

.about-clients .home-section-heading__intro {
	margin: 36px 0 0;
	font-family: var(--lld-font-body);
	font-size: 30px;
	font-weight: 400;
	line-height: 36px;
}

.about-clients .home-clients__logos {
	margin-top: 0;
	padding-block: 72px;
	background: transparent;
	border-top: 1px solid rgba(0, 0, 0, 0.45);
}

.about-clients .home-clients__logo-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 48px 72px;
	overflow: visible;
	align-items: center;
}

.about-clients .home-client-logo {
	width: auto;
	min-height: 90px;
}

.about-clients .home-client-logo img {
	width: 150px;
	height: 90px;
	filter: none;
}

.about-testimonials {
	min-height: 590px;
	padding-block: 36px 72px;
	background: #2d2d2d;
	color: var(--lld-color-surface);
}

.about-testimonials h2 {
	padding-bottom: 36px;
	margin: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.45);
	font-family: var(--lld-font-body);
	font-size: 75px;
	font-weight: 600;
	line-height: 90px;
	text-transform: uppercase;
}

.about-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 48px 72px;
	padding-top: 72px;
}

.about-testimonial {
	margin: 0;
}

.about-testimonial blockquote {
	max-width: 48ch;
	margin: 0;
	font-size: 18px;
	line-height: 28px;
}

.about-testimonial figcaption {
	margin-top: 16px;
	color: var(--lld-color-lime);
	font-size: 15px;
	line-height: 22px;
}

.site-footer {
	background: #000;
}

.site-footer__recruitment p {
	max-width: 44ch;
	margin: 0;
	font-size: 18px;
	line-height: 31.5px;
}

.site-footer__recruitment a {
	color: inherit;
}

@media (max-width: 959px) {
	.about-intro__grid,
	.about-mission__grid {
		grid-template-columns: 1fr;
		min-height: 0;
		padding-block: 72px;
	}

	.about-intro__copy,
	.about-mission__copy {
		max-width: none;
	}

	.about-intro__media img,
	.about-mission__media img {
		width: 100%;
		max-width: 668px;
		margin-inline: auto;
	}

	.about-clients {
		min-height: 0;
	}

	.about-clients .home-clients__logo-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 639px) {
	.about-intro__grid,
	.about-mission__grid {
		gap: 48px;
		padding-block: 64px;
	}

	.about-intro__copy h2,
	.about-transformation h2 {
		font-size: 48px;
		line-height: 52px;
	}

	.about-intro__copy h3,
	.about-mission__copy h2,
	.about-mission__copy h3 {
		font-size: 36px;
		line-height: 42px;
	}

	.about-transformation,
	.about-transformation__inner {
		min-height: 420px;
	}

	.about-clients {
		padding-top: 64px;
	}

	.about-clients .home-section-heading__title {
		font-size: 52px;
		line-height: 58px;
	}

	.about-clients .home-section-heading__intro {
		font-size: 22px;
		line-height: 28px;
	}

	.about-clients .home-clients__logo-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 36px 24px;
	}

	.about-testimonials {
		min-height: 0;
	}

	.about-testimonials h2 {
		font-size: 52px;
		line-height: 58px;
	}

	.about-testimonials__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.site-footer__recruitment p {
		font-size: 16px;
		line-height: 27px;
	}
}

/* Match the production service icon rhythm and two-column case-study feed. */
@media (min-width: 960px) {
	.lld-services-archive .lld-container {
		width: min(calc(100% - 212px), 1068px);
	}

	.lld-services-archive .lld-service-card__title {
		font-family: var(--lld-font-body);
		font-size: 20px;
		font-weight: 800;
		line-height: 30px;
	}

	.lld-services-archive .lld-service-card p {
		font-size: 18px;
		line-height: 31.5px;
	}
}

.lld-case-studies-landing .lld-taxonomy-nav {
	min-height: 310px;
	padding-block: 72px;
	background: var(--lld-color-lime);
	color: var(--lld-color-ink);
}

.lld-case-intro {
	width: min(calc(100% - 64px), 1200px);
	margin-inline: auto;
	padding: 60px 36px 72px;
	background: var(--lld-color-surface);
	text-align: center;
}

.lld-case-intro h2 {
	margin: 0;
	font-family: var(--lld-font-display);
	font-size: 50px;
	font-weight: 400;
	line-height: 60px;
	text-transform: uppercase;
}

.lld-case-intro p {
	max-width: 1100px;
	margin: 36px auto 0;
	font-size: 18px;
	line-height: 31.5px;
}

.lld-case-studies-landing .lld-taxonomy-nav ul {
	max-width: 1068px;
	margin-inline: auto;
	justify-content: center;
	gap: 36px 72px;
}

.lld-case-studies-landing .lld-taxonomy-nav a {
	font-size: 20px;
	font-weight: 600;
}

.lld-case-studies-landing .lld-case-archive-loop {
	padding-block: 0;
}

.lld-case-studies-landing .lld-case-archive-loop > .lld-container {
	width: 100%;
}

.lld-case-studies-landing .lld-case-archive-loop .lld-section-heading {
	display: none;
}

.lld-services-list {
	padding-block: 0 96px;
	background: var(--lld-color-lime);
}

.lld-services-list > .lld-container {
	width: min(calc(100% - 64px), 1200px);
	padding: 60px 36px 96px;
	background: var(--lld-color-surface);
	border-radius: 10px 10px 0 0;
}

.lld-services-list .lld-section-heading {
	max-width: 1000px;
	margin-inline: auto;
	text-align: center;
}

.lld-services-list .lld-section-heading h2 {
	font-family: var(--lld-font-display);
	font-size: 50px;
	font-weight: 400;
	line-height: 60px;
	text-transform: uppercase;
}

.lld-services-list .lld-section-heading p {
	max-width: 900px;
	margin-inline: auto;
	font-size: 18px;
	line-height: 31.5px;
}

.lld-case-studies-landing .lld-case-grid {
	display: block;
}

.lld-case-studies-landing .lld-case-card {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	min-width: 0;
	min-height: 483px;
}

.lld-case-studies-landing .lld-case-card__media,
.lld-case-studies-landing .lld-case-card__body {
	min-width: 0;
}

.lld-case-studies-landing .lld-case-card__media {
	width: 100%;
	max-width: 100%;
}

.lld-case-studies-landing .lld-case-card:nth-child(even) .lld-case-card__media {
	grid-column: 2;
	grid-row: 1;
}

.lld-case-studies-landing .lld-case-card:nth-child(even) .lld-case-card__body {
	grid-column: 1;
	grid-row: 1;
}

.lld-case-studies-landing .lld-case-card__media {
	aspect-ratio: 4 / 3;
	height: 100%;
	min-height: 483px;
}

.lld-case-studies-landing .lld-case-card__body {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	padding: 72px;
}

.lld-case-studies-landing .lld-case-card__terms {
	margin-bottom: 28px;
}

.lld-case-studies-landing .lld-case-card__title {
	font-family: var(--lld-font-body);
	font-size: 50px;
	font-weight: 600;
	line-height: 60px;
}

.lld-case-studies-landing .lld-case-card__date {
	margin-top: 22px;
	font-size: 18px;
	line-height: 31.5px;
}

@media (max-width: 959px) {
	.lld-case-studies-landing .lld-taxonomy-nav {
		min-height: 220px;
	}

	.lld-case-studies-landing .lld-case-card__body {
		padding: 48px 36px;
	}

	.lld-case-studies-landing .lld-case-card__title {
		font-size: 42px;
		line-height: 48px;
	}

	.lld-case-studies-landing .lld-case-grid {
		display: block;
	}
}

@media (max-width: 639px) {
	.lld-case-studies-landing .lld-taxonomy-nav {
		min-height: 170px;
		padding-block: 48px;
	}

	.lld-case-studies-landing .lld-taxonomy-nav ul {
		gap: 20px 28px;
	}

	.lld-case-studies-landing .lld-taxonomy-nav a {
		font-size: 16px;
	}

	.lld-case-studies-landing .lld-case-card {
		display: flex;
		min-height: 0;
		flex-direction: column;
	}

	.lld-case-studies-landing .lld-case-card:nth-child(even) .lld-case-card__media,
	.lld-case-studies-landing .lld-case-card:nth-child(even) .lld-case-card__body {
		order: initial;
	}

	.lld-case-studies-landing .lld-case-card__media {
		min-height: 0;
	}

	.lld-case-studies-landing .lld-case-card__body {
		padding: 40px 32px 56px;
	}

.lld-case-studies-landing .lld-case-card__title {
	font-size: 36px;
	line-height: 42px;
	}
}

@media (max-width: 959px) {
	.home-why {
		padding: 0;
		background: var(--lld-color-surface);
	}

	.home-why__intro {
		padding: 54px 36px 61px;
		background: var(--lld-color-lime);
	}

	.home-why__grid {
		grid-template-columns: 1fr;
		align-items: start;
		padding: 54px 36px 72px;
		background: var(--lld-color-surface);
	}

	.home-feature__icon {
		width: 70px;
		height: 70px;
		margin-bottom: 31px;
	}

	.home-feature h3 {
		font-family: var(--lld-font-display);
		font-size: 30px;
		font-weight: 600;
		line-height: 30px;
		letter-spacing: 0;
		padding-block: 5px;
	}

	.home-feature p {
		margin-top: 18px;
		font-size: 18px;
		line-height: 31.5px;
	}
}

@media (min-width: 640px) and (max-width: 959px) {
	.home-hero {
		height: 363px;
		min-height: 363px;
	}

	.home-why .home-section-heading__title {
		font-size: 50px;
		line-height: 60px;
	}

	.home-why__intro {
		padding-bottom: 61px;
	}

	.home-why__intro .home-section-heading__lead {
		margin-top: 36px;
		font-size: 30px;
		line-height: 36px;
		padding-block: 5px;
	}

	.home-why__intro .home-section-heading__intro {
		margin-top: 36px;
		font-size: 18px;
		line-height: 31.5px;
	}

	.home-why__intro .lld-button {
		margin-top: 36px;
	}
}

@media (max-width: 639px) {
	.home-why .home-section-heading__title {
		font-size: 35px;
		line-height: 42px;
	}

	.home-why__intro .home-section-heading__lead {
		max-width: none;
		margin-top: 36px;
		font-size: 30px;
		line-height: 36px;
		padding-block: 5px;
	}

	.home-why__intro .home-section-heading__intro {
		margin-top: 36px;
		font-size: 18px;
		line-height: 31.5px;
	}

	.home-why__intro .lld-button {
		width: 162px;
		min-height: 42px;
		margin-top: 42px;
		padding: 12px 19px;
	}
}

/* Authoritative third-pass responsive overrides. These follow the older
 * scaffold media rules so the measured public composition wins at review
 * widths without changing the page-content container system. */
@media (min-width: 960px) {
	.site-header__inner {
		width: calc(100% - (2 * var(--lld-header-gutter)));
		max-width: none;
		margin-inline: auto;
		width: calc(100% - (2 * var(--lld-header-gutter)));
		height: calc(var(--lld-header-height) - 1px);
		min-height: calc(var(--lld-header-height) - 1px);
		display: grid;
		grid-template-columns: 150px minmax(0, 1fr) var(--lld-header-social-width);
		gap: 0;
	}

	.primary-navigation {
		display: flex;
		justify-content: flex-end;
		min-width: 0;
		margin-left: 0;
	}

	.primary-navigation a {
		min-height: calc(var(--lld-header-height) - 1px);
	}

	.primary-navigation .menu {
		justify-content: flex-end;
	}

	.header-social-navigation {
		display: flex;
		justify-content: flex-end;
		width: var(--lld-header-social-width);
		margin-left: 0;
	}

	.header-social-navigation__list {
		width: var(--lld-header-social-width);
		justify-content: space-between;
		gap: 0;
	}

	.home-hero {
		height: 900px;
		min-height: 900px;
	}

	.home-hero__content h1 {
		width: min(100%, 1128px);
		max-width: 1128px;
		font-weight: 900;
	}

	.home-hero__content {
		padding-block: 0;
	}

	.home-hero__content p {
		font-size: 20px;
		line-height: 20px;
	}

	.home-why {
		min-height: 0;
		padding-block: 0;
		background: var(--lld-color-surface);
	}

	.home-why > .lld-container {
		width: 100%;
		max-width: none;
		margin: 0;
		display: grid;
		grid-template-columns: 33.333333% 66.666667%;
		gap: 0;
	}

	.home-why__intro {
		align-self: stretch;
		padding: 72px;
		background: var(--lld-color-lime);
	}

	.home-why__intro .home-section-heading__lead {
		margin-top: 36px;
		padding-block: 5px;
		font-weight: 400;
		line-height: 36px;
	}

	.home-why__intro .home-section-heading__intro {
		margin-top: 36px;
		line-height: 31.5px;
	}

	.home-why__intro .lld-button {
		margin-top: 36px;
	}

	.home-why__grid {
		align-content: start;
		align-items: start;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 36px;
		padding: 72px;
		background: var(--lld-color-surface);
	}

	.home-feature__icon {
		width: 70px;
		height: 70px;
		margin-bottom: 31px;
	}

	.home-feature h3 {
		font-family: var(--lld-font-display);
		font-size: 30px;
		font-weight: 600;
		line-height: 30px;
		letter-spacing: 0;
		padding-block: 5px;
	}

	.home-feature p {
		margin-top: 18px;
		font-size: 18px;
		line-height: 31.5px;
	}
}

@media (min-width: 1920px) {
	.home-why__intro,
	.home-why__grid {
		padding: 144px;
	}

	.home-why__grid {
		gap: 36px;
	}

	.home-why__intro .home-section-heading__intro {
		width: 420px;
		max-width: none;
	}
}

@media (max-width: 959px) {
	.site-header__inner {
		width: calc(100% - (2 * var(--lld-gutter)));
		min-height: 83px;
	}

	body.home .site-main {
		padding-top: 83px;
	}

	.home-hero {
		height: clamp(320px, calc(33.6vw + 105px), 363px);
		min-height: clamp(320px, calc(33.6vw + 105px), 363px);
	}

	.home-hero__content h1 {
		max-width: 100%;
		font-size: 35px;
		line-height: 35px;
		font-weight: 900;
	}

	.home-hero__content p {
		font-size: 20px;
		line-height: 20px;
	}

	.home-why > .lld-container {
		display: block;
		width: 100%;
		max-width: none;
	}

	.home-why__intro,
	.home-why__grid {
		width: 100%;
		background: var(--lld-color-lime);
	}

	.home-why__intro {
		padding: 54px 36px 60px;
	}

	.home-why__grid {
		grid-template-columns: 1fr;
		row-gap: 36px;
		padding: 54px 36px 54px;
		background: var(--lld-color-surface);
	}

	.home-feature h3 {
		font-weight: 600;
		letter-spacing: 0;
	}
}

/* Final measured Why Choose typography and vertical-rhythm corrections. */
@media (min-width: 960px) {
	.home-why__intro .home-section-heading__lead {
		max-width: none;
		min-height: 133px;
		font-family: var(--lld-font-body);
	}

	.home-why__intro .lld-button {
		margin-top: 37px;
	}
}

@media (min-width: 640px) and (max-width: 959px) {
	.home-why__intro .home-section-heading__lead {
		max-width: none;
		min-height: 92px;
		font-family: var(--lld-font-body);
	}

	.home-why__intro {
		padding-bottom: 56px;
	}

	.home-why__intro .lld-button {
		margin-top: 37px;
	}
}

@media (max-width: 639px) {
	.home-why__intro .home-section-heading__lead {
		max-width: none;
		min-height: 133px;
		font-family: var(--lld-font-body);
	}

	.home-why__intro {
		padding-bottom: 61px;
	}

	.home-why__intro .lld-button {
		box-sizing: border-box;
		height: 42px;
		min-height: 42px;
		line-height: 15px;
		margin-top: 42px;
	}
}
