:root {
	--color-navy: #0b1a26;
	--color-navy-soft: #132638;
	--color-ivory: #ffffff;
	--color-card: #fffcf6;
	--color-gold: #cdaa45;
	--color-gold-dark: #a98426;
	--color-muted: #8f948e;
	--color-border: rgba(11, 26, 38, 0.12);
	--navy: #0d1b2a;
	--navy-dark: #0a1520;
	--gold: #c9a84c;
	--cream: #ffffff;
	--white: #ffffff;
	--border: #e8e2d6;
	--muted: rgba(13, 27, 42, 0.5);
	--linen: rgba(247, 244, 238, 0.78);
	--font-heading: "Playfair Display", Georgia, serif;
	--font-body: "Manrope", Arial, sans-serif;
	--container: 1180px;
}

/* Home hero carousel. */
body.home .home-reference-hero.is-carousel {
	position: relative;
	padding-top: clamp(46px, 5vw, 64px);
	padding-bottom: clamp(82px, 7vw, 96px);
}

.home-hero-carousel__viewport {
	overflow: hidden;
	touch-action: pan-y;
}

.home-hero-carousel__track {
	display: grid;
	width: 100%;
}

body.home .home-reference-hero.is-carousel .home-reference-hero__grid {
	width: min(100% - 40px, var(--container));
	max-width: var(--container);
	margin-right: auto;
	margin-left: auto;
	padding-right: 0;
	padding-left: 0;
}

.home-hero-carousel__slide {
	grid-area: 1 / 1;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 450ms ease, visibility 0s linear 450ms;
}

.home-hero-carousel__slide.is-active {
	z-index: 1;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition: opacity 450ms ease;
}

body.home .home-reference-hero.is-carousel .home-reference-hero-image img {
	width: 100%;
	height: auto;
	max-height: 360px;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

body.home .home-reference-hero.is-carousel .home-reference-hero__media {
	width: min(100%, 460px);
	justify-self: end;
}

.home-hero-carousel__controls {
	position: absolute;
	right: 0;
	bottom: 22px;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 14px;
	pointer-events: none;
}

.home-hero-carousel__controls button {
	pointer-events: auto;
}

.home-hero-carousel__control-panel {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 6px;
	border: 1px solid rgba(205, 170, 69, 0.32);
	border-radius: 999px;
	background: rgba(8, 20, 30, 0.82);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(12px);
}

.home-hero-carousel__arrow {
	display: grid;
	width: 38px;
	height: 38px;
	padding: 0;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--color-gold);
	font-size: 1rem;
	cursor: pointer;
	transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.home-hero-carousel__arrow:hover,
.home-hero-carousel__arrow:focus-visible {
	background: var(--color-gold);
	color: var(--color-navy);
	transform: translateY(-2px);
}

.home-hero-carousel__dots {
	display: flex;
	align-items: center;
	gap: 7px;
	margin: 0 8px;
}

.home-hero-carousel__dots button {
	width: 7px;
	height: 7px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 252, 246, 0.38);
	cursor: pointer;
	transition: width 220ms ease, background 220ms ease;
}

.home-hero-carousel__dots button.is-active {
	width: 22px;
	background: var(--color-gold);
}

@media (max-width: 980px) {
	body.home .home-reference-hero.is-carousel .home-reference-hero__grid {
		grid-template-columns: 1fr !important;
		gap: 48px !important;
	}

	.home-reference-hero.is-carousel .home-reference-hero-image img {
		aspect-ratio: 4 / 3;
	}

	body.home .home-reference-hero.is-carousel .home-reference-hero__media {
		width: min(88%, 440px);
		justify-self: center;
	}
}

@media (max-width: 640px) {
	body.home .home-reference-hero.is-carousel {
		padding-top: 42px;
		padding-bottom: 86px;
	}

	body.home .home-reference-hero.is-carousel .home-reference-hero__grid {
		width: min(100%, calc(100vw - 32px));
	}

	body.home .home-reference-hero.is-carousel .home-reference-hero__media {
		width: min(86%, 380px);
	}

	body.home .home-reference-hero.is-carousel .home-reference-hero-image img {
		max-height: 300px;
	}

	.home-hero-carousel__controls {
		bottom: 22px;
		justify-content: center;
	}
}

/* Keep the landing hero carousel contained on tablet and mobile. */
@media (max-width: 980px) {
	body.home .home-reference-page .home-reference-hero.is-carousel {
		padding-bottom: 42px !important;
	}

	body.home .home-reference-page .home-reference-hero.is-carousel .home-reference-hero__grid {
		gap: 28px !important;
	}

	body.home .home-reference-page .home-reference-hero.is-carousel .home-reference-hero__media {
		width: min(100%, 560px) !important;
		max-width: 100% !important;
		justify-self: center !important;
	}

	body.home .home-reference-page .home-reference-hero.is-carousel .home-reference-hero-image.wp-block-image {
		max-height: none !important;
		aspect-ratio: 4 / 3 !important;
	}

	.home-hero-carousel__controls {
		position: static;
		width: min(100%, calc(100vw - 32px));
		margin: 22px auto 0;
		justify-content: center;
	}
}

@media (max-width: 782px) {
	body.home .home-reference-page .home-reference-hero.is-carousel .home-reference-hero__media {
		padding: 14px !important;
	}

	body.home .home-reference-page .home-reference-hero-stats.wp-block-columns {
		display: none !important;
		margin: 0 !important;
		padding: 0 !important;
		border: 0 !important;
	}
}

@media (max-width: 430px) {
	body.home .home-reference-page .home-reference-hero-stats.wp-block-columns {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	body.home .home-reference-page .home-reference-hero-image.wp-block-image {
		aspect-ratio: 4 / 3 !important;
	}

	.home-hero-carousel__control-panel {
		padding: 4px;
	}

	.home-hero-carousel__arrow {
		width: 34px;
		height: 34px;
	}
}

/* Keep About page sections compact across screen sizes. */
.about-reference-page .about-reference-hero {
	padding-block: clamp(44px, 5vw, 64px);
}

.about-reference-page .about-reference-approach,
.about-reference-page .about-reference-timeline {
	padding-block: clamp(36px, 4.5vw, 56px);
}

.about-reference-page .about-reference-timeline__inner {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
	min-height: 0;
}

.about-reference-page .about-reference-timeline-card {
	width: 100%;
	min-height: 280px;
}

.about-reference-page .about-reference-timeline-card--left,
.about-reference-page .about-reference-timeline-card--right {
	grid-column: auto;
	justify-self: stretch;
	margin-top: 0;
}

.about-reference-page .about-reference-timeline-card h3 {
	font-family: var(--font-body);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.about-reference-page .about-reference-orbit,
.about-reference-page .about-reference-timeline-line,
.about-reference-page .about-reference-journey {
	display: none;
}

/* Keep Work page sections compact across screen sizes. */
.work-reference-page .work-reference-hero {
	padding-block: clamp(44px, 5vw, 64px);
}

.work-reference-page .work-reference-featured,
.work-reference-page .work-reference-recent {
	padding-block: clamp(36px, 4.5vw, 56px);
}

/* Keep Services page sections compact across screen sizes. */
.services-reference-page .services-reference-hero {
	padding-block: clamp(44px, 5vw, 64px);
}

.services-reference-page .services-reference-core {
	padding-block: clamp(36px, 4.5vw, 56px);
}

@media (prefers-reduced-motion: reduce) {
	.home-hero-carousel__slide,
	.home-hero-carousel__arrow,
	.home-hero-carousel__dots button {
		transition: none;
	}
}

body.admin-bar #wpadminbar {
	display: none !important;
}

html:has(body.admin-bar) {
	margin-top: 0 !important;
}

body.admin-bar .site-header {
	top: 0;
}

/* Landing page reference cleanup. */
body.home .site-header {
	background: rgba(8, 20, 30, 0.96);
	border-bottom-color: rgba(255, 252, 246, 0.08);
}

body.home .site-header__inner {
	min-height: 76px;
}

body.home .site-header__cta {
	min-height: 48px;
	padding-inline: 30px;
}

.home-reference-page {
	background: var(--color-ivory);
}

body.home .home-reference-hero {
	padding: clamp(72px, 8vw, 92px) 0 clamp(70px, 7vw, 84px);
	background:
		radial-gradient(circle at 16% 26%, rgba(29, 67, 88, 0.44), transparent 34%),
		radial-gradient(circle at 84% 18%, rgba(205, 170, 69, 0.08), transparent 28%),
		var(--color-navy);
	color: var(--color-card);
}

body.home .home-reference-hero__grid {
	display: grid !important;
	grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.82fr);
	gap: clamp(52px, 9vw, 112px);
	align-items: center;
}

body.home .home-reference-hero h1 {
	max-width: 600px;
	margin: 0;
	color: #fffaf2;
	font-size: clamp(4.15rem, 6vw, 6.3rem);
	line-height: 0.98;
}

body.home .home-reference-hero h1 em {
	color: var(--color-gold);
	font-style: italic;
}

body.home .home-reference-hero__content > p:not(.eyebrow) {
	max-width: 450px;
	margin-top: 28px;
	color: rgba(255, 252, 246, 0.76);
	font-size: 0.98rem;
	line-height: 1.75;
}

body.home .home-reference-hero .button-row {
	gap: 16px;
	margin-top: 28px;
}

body.home .home-reference-hero .button--primary .wp-block-button__link,
body.home .home-reference-hero .button--ghost .wp-block-button__link {
	min-height: 46px;
	padding: 0 28px;
	font-size: 0.86rem;
}

body.home .home-reference-hero .button--ghost .wp-block-button__link {
	background: transparent;
	border: 1px solid var(--color-gold);
	color: var(--color-gold);
}

.home-reference-hero-stats {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	max-width: 610px;
	margin-top: 52px;
	padding-top: 24px;
	border-top: 1px solid rgba(205, 170, 69, 0.24);
}

.home-reference-hero-stats .wp-block-column {
	padding: 0 20px;
	border-left: 1px solid rgba(255, 252, 246, 0.12);
}

.home-reference-hero-stats .wp-block-column:first-child {
	padding-left: 0;
	border-left: 0;
}

.home-reference-hero-stats p {
	margin: 0;
	color: rgba(255, 252, 246, 0.78);
	font-size: 0.82rem;
	line-height: 1.55;
}

.home-reference-hero-stats strong {
	display: block;
	margin-bottom: 7px;
	color: var(--color-gold);
	font-family: var(--font-heading);
	font-size: clamp(2.15rem, 3vw, 2.9rem);
	font-weight: 700;
	line-height: 1;
}

.home-reference-hero-stats .wp-block-column:nth-child(3) strong::after {
	content: " \2605";
	font-family: var(--font-body);
	font-size: 1.2rem;
}

.home-reference-hero__media {
	position: relative;
	min-height: 0;
}

.home-reference-hero-image {
	margin: 0 !important;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

.home-reference-hero-image img {
	display: block;
	width: 100%;
	aspect-ratio: 0.67;
	height: auto;
	object-fit: cover;
	object-position: center;
}

.home-reference-logos {
	background: var(--color-card);
	border-bottom: 1px solid rgba(11, 26, 38, 0.1);
}

.home-reference-logos__items {
	display: grid !important;
	grid-template-columns: 120px repeat(6, 1fr);
	gap: 26px;
	align-items: center;
	min-height: 72px;
}

.home-reference-logos__items p {
	margin: 0;
	color: rgba(11, 26, 38, 0.72);
	font-weight: 800;
}

.home-reference-logos__items p:first-child {
	color: var(--color-navy);
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.home-reference-logos__items p:not(:first-child)::before {
	margin-right: 8px;
	color: var(--color-navy);
	content: "\25C8";
}

.home-reference-services {
	padding: clamp(70px, 8vw, 90px) 0 clamp(78px, 8vw, 98px);
	background: var(--color-ivory);
}

.home-reference-section-heading {
	max-width: 680px;
	margin: 0;
}

.home-reference-section-heading h2 {
	margin-top: 12px;
	font-size: clamp(3rem, 5vw, 4.8rem);
	line-height: 1.02;
}

.home-reference-section-heading > p:not(.eyebrow) {
	max-width: 560px;
	color: rgba(11, 26, 38, 0.66);
}

.home-reference-services__grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
	margin-top: 44px;
}

.home-reference-services .service-card {
	position: relative;
	min-height: 300px;
	padding: 34px 36px;
	background: var(--color-card);
	border: 1px solid rgba(11, 26, 38, 0.12);
	border-radius: 10px;
	box-shadow: 0 22px 54px rgba(11, 26, 38, 0.08);
}

.home-reference-services .service-card::after {
	position: absolute;
	right: 34px;
	top: 34px;
	display: grid;
	width: 50px;
	height: 50px;
	place-items: center;
	background: linear-gradient(135deg, #e6c861, var(--color-gold));
	border-radius: 50%;
	color: var(--color-card);
	font-size: 1.25rem;
	font-weight: 900;
	content: "\25CE";
}

.home-reference-services .service-card:nth-child(2)::after {
	content: "\25A1";
}

.home-reference-services .service-card:nth-child(3)::after {
	content: "</>";
	font-family: var(--font-body);
	font-size: 0.9rem;
}

.home-reference-services .service-card__number {
	margin: 0 0 28px;
	color: var(--color-gold);
	font-family: var(--font-heading);
	font-size: 2.45rem;
	font-weight: 700;
	line-height: 1;
}

.home-reference-services .service-card h3 {
	max-width: 210px;
	margin: 0 0 18px;
	font-size: 1.55rem;
	font-weight: 400;
	line-height: 1.12;
}

.home-reference-services .service-card p:not(.service-card__number):not(.service-card__link) {
	color: rgba(11, 26, 38, 0.66);
	font-size: 0.96rem;
	line-height: 1.7;
}

.home-reference-services .service-card__link {
	margin-top: 28px;
	color: var(--color-gold-dark);
	font-weight: 900;
}

.home-reference-stats {
	padding: 44px 0;
	background: var(--color-navy);
}

.home-reference-stats__grid {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-reference-stats .wp-block-column {
	padding: 0 30px;
	border-left: 1px solid rgba(255, 252, 246, 0.18);
}

.home-reference-stats .wp-block-column:first-child {
	padding-left: 0;
	border-left: 0;
}

.home-reference-stats p {
	position: relative;
	min-height: 58px;
	margin: 0;
	padding-left: 70px;
	color: rgba(255, 252, 246, 0.78);
	font-size: 0.86rem;
	line-height: 1.55;
}

.home-reference-stats span {
	position: absolute;
	left: 0;
	top: 5px;
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	color: var(--color-gold);
	font-size: 1.65rem;
}

.home-reference-stats .wp-block-column:nth-child(1) span::before {
	content: "\2197";
}

.home-reference-stats .wp-block-column:nth-child(2) span::before {
	content: "\25A6";
}

.home-reference-stats .wp-block-column:nth-child(3) span::before {
	content: "\25CE";
}

.home-reference-stats .wp-block-column:nth-child(4) span::before {
	content: "\25A1";
}

.home-reference-stats strong {
	display: inline-block;
	margin-right: 8px;
	color: var(--color-gold);
	font-family: var(--font-heading);
	font-size: clamp(2.25rem, 3vw, 3.2rem);
	line-height: 1;
}

.home-reference-testimonials {
	padding: clamp(58px, 7vw, 82px) 0 clamp(44px, 6vw, 62px);
	background: var(--color-ivory);
}

.home-reference-testimonials h2 {
	margin: 10px 0 34px;
	font-size: clamp(2.6rem, 4.4vw, 4.2rem);
	line-height: 1.05;
}

.home-reference-testimonials__grid {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.home-reference-testimonials .testimonial-card {
	position: relative;
	min-height: 190px;
	padding: 42px 48px 32px;
	background: var(--color-card);
	border: 1px solid rgba(11, 26, 38, 0.08);
	border-radius: 10px;
	box-shadow: 0 16px 42px rgba(11, 26, 38, 0.06);
}

.home-reference-testimonials .testimonial-card::before {
	display: block;
	margin-bottom: 8px;
	color: var(--color-gold);
	font-family: var(--font-heading);
	font-size: 4rem;
	line-height: 0.3;
	content: "\201C";
}

.home-reference-testimonials .testimonial-card > p:first-child {
	max-width: 420px;
	color: rgba(11, 26, 38, 0.78);
	line-height: 1.75;
}

.home-reference-testimonials .testimonial-card > p:last-child {
	position: relative;
	margin-top: 28px;
	padding-left: 62px;
	color: rgba(11, 26, 38, 0.56);
	font-size: 0.86rem;
	line-height: 1.45;
}

.home-reference-testimonials .testimonial-card > p:last-child::before {
	position: absolute;
	left: 0;
	top: 50%;
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	background: var(--color-navy);
	border-radius: 50%;
	color: var(--color-gold);
	font-weight: 900;
	transform: translateY(-50%);
	content: "MC";
}

.home-reference-testimonials .testimonial-card:nth-child(2) > p:last-child::before {
	content: "EV";
}

.home-reference-testimonials .testimonial-card strong {
	color: var(--color-navy);
}

.home-reference-cta {
	position: relative;
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 28px;
	align-items: center;
	margin-top: 34px;
	padding: 30px 44px;
	overflow: hidden;
	background:
		radial-gradient(circle at 86% 52%, rgba(205, 170, 69, 0.42), transparent 28%),
		linear-gradient(120deg, rgba(8, 20, 30, 0.98), rgba(8, 20, 30, 0.86)),
		var(--color-navy);
	border: 1px solid rgba(205, 170, 69, 0.22);
	border-radius: 10px;
}

.home-reference-cta::after {
	position: absolute;
	right: 34px;
	top: 22px;
	width: 106px;
	height: 90px;
	background-image: radial-gradient(rgba(255, 252, 246, 0.34) 1px, transparent 1px);
	background-size: 12px 12px;
	content: "";
}

.home-reference-cta h2 {
	margin: 0;
	color: var(--color-card);
	font-size: clamp(2.2rem, 3vw, 3rem);
}

.home-reference-cta p {
	margin: 8px 0 0;
	color: rgba(255, 252, 246, 0.82);
}

.home-reference-cta .wp-block-buttons {
	justify-content: flex-end;
}

.home-reference-cta .wp-block-button__link {
	min-height: 58px;
	padding-inline: 36px;
}

@media (max-width: 980px) {
	body.home .home-reference-hero__grid,
	.home-reference-services__grid,
	.home-reference-testimonials__grid,
	.home-reference-cta {
		grid-template-columns: 1fr;
	}

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

	.home-reference-hero-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 22px 0;
	}
}

@media (max-width: 640px) {
	body.home .home-reference-hero h1 {
		font-size: clamp(3.2rem, 16vw, 4.3rem);
	}

	.home-reference-hero-stats,
	.home-reference-logos__items,
	.home-reference-stats__grid {
		grid-template-columns: 1fr;
	}

	.home-reference-hero-stats .wp-block-column,
	.home-reference-stats .wp-block-column {
		padding: 0 0 18px;
		border-left: 0;
		border-bottom: 1px solid rgba(255, 252, 246, 0.14);
	}

	.home-reference-services .service-card,
	.home-reference-testimonials .testimonial-card,
	.home-reference-cta {
		padding-inline: 24px;
	}
}

/* Contact screenshot layout override. */
.contact-shot-page {
	background: var(--color-ivory);
}

.contact-shot-hero {
	padding: clamp(66px, 7vw, 88px) 0 clamp(58px, 6.5vw, 78px);
	background:
		radial-gradient(circle at 16% 22%, rgba(27, 63, 84, 0.38), transparent 32%),
		linear-gradient(135deg, rgba(205, 170, 69, 0.06), transparent 28%),
		var(--color-navy);
	color: var(--color-card);
}

.contact-shot-hero::after {
	display: none;
}

.contact-shot-hero__grid {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr);
	align-items: center;
}

.contact-shot-hero .contact-redesign-hero__content {
	max-width: 980px;
	margin-inline: auto;
	text-align: center;
}

.contact-shot-hero h1 {
	max-width: 900px;
	margin: 0 auto;
	color: #fffaf2;
	font-size: clamp(3.9rem, 5.7vw, 5.95rem);
	line-height: 0.98;
}

.contact-shot-hero h1 em {
	color: var(--color-gold);
	font-style: italic;
}

.contact-shot-hero .contact-redesign-hero__content > p:not(.eyebrow) {
	max-width: 430px;
	margin: 28px auto 0;
	color: rgba(255, 252, 246, 0.78);
	font-size: 1rem;
	line-height: 1.85;
}

.contact-shot-trust {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	max-width: 820px;
	margin: 46px auto 0;
}

.contact-shot-trust .wp-block-column {
	display: block;
	padding-inline: 24px;
	border-right: 1px solid rgba(255, 252, 246, 0.11);
}

.contact-shot-trust .wp-block-column:last-child {
	border-right: 0;
}

.contact-shot-trust span {
	display: grid;
	width: 52px;
	height: 52px;
	place-items: center;
	border: 1px solid rgba(205, 170, 69, 0.36);
	border-radius: 50%;
	color: var(--color-gold);
	font-weight: 900;
}

.contact-shot-trust p {
	display: grid;
	grid-template-columns: 1fr;
	gap: 5px;
	justify-items: center;
	margin: 0;
	color: rgba(255, 252, 246, 0.66);
	font-size: 0.8rem;
	line-height: 1.45;
}

.contact-shot-trust strong {
	display: block;
	color: var(--color-card);
	font-size: 0.92rem;
	white-space: normal;
}

.contact-shot-trust span {
	grid-row: auto;
	margin-bottom: 9px;
}

.contact-shot-trust .wp-block-column:nth-child(1) span,
.contact-shot-trust .wp-block-column:nth-child(2) span,
.contact-shot-trust .wp-block-column:nth-child(3) span {
	font-size: 0;
}

.contact-shot-trust .wp-block-column:nth-child(1) span::before {
	font-size: 1.35rem;
	content: "\26A1";
}

.contact-shot-trust .wp-block-column:nth-child(2) span::before {
	font-size: 1.25rem;
	content: "\263A";
}

.contact-shot-trust .wp-block-column:nth-child(3) span::before {
	font-size: 1.25rem;
	content: "\25C7";
}

.contact-shot-visual {
	display: none;
	position: relative;
	min-height: 542px;
	overflow: hidden;
	background: #101821;
	border: 1px solid rgba(255, 252, 246, 0.14);
	border-radius: 14px;
	box-shadow: 0 28px 72px rgba(0, 0, 0, 0.3);
}

.contact-shot-visual::before {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(6, 13, 18, 0.02), rgba(6, 13, 18, 0.12) 48%, rgba(6, 13, 18, 0.38));
	content: "";
}

.contact-shot-image {
	position: absolute;
	inset: 0;
	margin: 0 !important;
}

.contact-shot-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.contact-shot-desk,
.contact-shot-notebook,
.contact-shot-mug {
	display: none;
}

.contact-shot-email {
	position: absolute;
	z-index: 2;
	right: 48px;
	bottom: 30px;
	left: 48px;
	display: grid;
	grid-template-columns: 62px 1fr 32px;
	gap: 18px;
	align-items: center;
	padding: 20px 24px;
	background: rgba(11, 26, 38, 0.88);
	border: 1px solid rgba(255, 252, 246, 0.18);
	border-radius: 16px;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
	backdrop-filter: blur(18px);
}

.contact-shot-email span {
	display: grid;
	width: 62px;
	height: 62px;
	place-items: center;
	border: 2px solid rgba(205, 170, 69, 0.42);
	border-radius: 50%;
	color: var(--color-gold);
	font-size: 1.6rem;
}

.contact-shot-email span {
	font-size: 0;
}

.contact-shot-email span::before {
	font-size: 1.7rem;
	content: "\2709";
}

.contact-shot-email strong {
	display: block;
	color: var(--color-card);
	font-size: 1rem;
}

.contact-shot-email em {
	color: var(--color-gold);
	font-style: normal;
	font-weight: 800;
}

.contact-shot-email b {
	color: var(--color-gold);
	font-size: 2rem;
	font-weight: 400;
}

.contact-shot-main {
	padding: clamp(46px, 6vw, 70px) 0 clamp(46px, 6vw, 70px);
	background:
		radial-gradient(circle at 15% 5%, rgba(205, 170, 69, 0.12), transparent 30%),
		var(--color-ivory);
}

.contact-shot-main__grid {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr);
	gap: 30px;
	align-items: start;
}

.contact-shot-form-card,
.contact-shot-office-card {
	background: var(--color-card);
	border: 1px solid var(--color-border);
	border-radius: 14px;
	box-shadow: 0 18px 52px rgba(11, 26, 38, 0.08);
}

.contact-shot-form-card {
	padding: clamp(30px, 4vw, 44px);
	border-top: 3px solid var(--color-gold);
}

.contact-shot-form-card h2 {
	margin: 12px 0 0;
	font-size: clamp(2rem, 3vw, 3.1rem);
	line-height: 1.05;
}

.contact-shot-form-card > p:not(.eyebrow) {
	color: rgba(16, 28, 41, 0.58);
}

.contact-shot-form {
	display: grid;
	gap: 14px;
	margin-top: 22px;
}

.contact-shot-form input,
.contact-shot-field,
.contact-shot-form textarea {
	width: 100%;
	min-height: 50px;
	padding: 0 16px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(11, 26, 38, 0.14);
	border-radius: 8px;
	color: var(--color-text);
	font: inherit;
}

.contact-shot-field {
	display: flex;
	align-items: center;
	color: rgba(16, 28, 41, 0.48);
}

.contact-shot-form textarea {
	min-height: 100px;
	padding-top: 14px;
	resize: vertical;
}

.contact-shot-message {
	min-height: 100px;
	align-items: flex-start;
	padding-top: 14px;
}

.contact-shot-form button {
	justify-self: start;
	min-height: 52px;
	padding: 0 24px;
	background: linear-gradient(135deg, #e6c861, var(--color-gold));
	border: 1px solid var(--color-gold);
	border-radius: 999px;
	color: var(--color-navy);
	font-weight: 900;
	cursor: pointer;
}

.contact-shot-office-card {
	position: relative;
	padding: clamp(28px, 4vw, 40px);
}

.contact-shot-office-card::after {
	position: absolute;
	right: 30px;
	top: 30px;
	width: 30px;
	height: 30px;
	border: 3px solid var(--color-gold);
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
	content: "";
}

.contact-shot-office-card h3 {
	margin: 18px 0 0;
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.7;
}

.contact-shot-lines {
	display: grid;
	gap: 14px;
	margin: 26px 0 0;
	padding-top: 24px;
	border-top: 1px solid var(--color-border);
}

.contact-shot-lines p {
	display: grid;
	grid-template-columns: 28px 1fr;
	gap: 12px;
	margin: 0;
	color: rgba(16, 28, 41, 0.82);
}

.contact-shot-lines span {
	color: var(--color-gold-dark);
	font-size: 0;
	font-weight: 900;
}

.contact-shot-lines p:nth-child(1) span::before,
.contact-shot-lines p:nth-child(2) span::before,
.contact-shot-lines p:nth-child(3) span::before {
	color: var(--color-navy);
	font-size: 1rem;
	font-weight: 900;
}

.contact-shot-lines p:nth-child(1) span::before {
	content: "\2709";
}

.contact-shot-lines p:nth-child(2) span::before {
	content: "\260E";
}

.contact-shot-lines p:nth-child(3) span::before {
	content: "\25F7";
}

.contact-shot-map {
	position: relative;
	min-height: 142px;
	margin-top: 24px;
	overflow: hidden;
	background:
		linear-gradient(30deg, transparent 0 46%, rgba(11, 26, 38, 0.12) 46% 48%, transparent 48%),
		linear-gradient(116deg, transparent 0 42%, rgba(205, 170, 69, 0.2) 42% 44%, transparent 44%),
		linear-gradient(90deg, rgba(255, 255, 255, 0.66), rgba(236, 226, 208, 0.78));
	border: 1px solid rgba(11, 26, 38, 0.08);
	border-radius: 10px;
}

.contact-shot-map::after {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 34px;
	height: 34px;
	background: var(--color-navy);
	border: 5px solid var(--color-card);
	border-radius: 50% 50% 50% 0;
	box-shadow: 0 12px 24px rgba(11, 26, 38, 0.26);
	transform: translate(-50%, -62%) rotate(-45deg);
	content: "";
}

@media (max-width: 980px) {
	.contact-shot-hero__grid,
	.contact-shot-main__grid {
		grid-template-columns: 1fr;
	}

	.contact-shot-trust {
		grid-template-columns: 1fr;
		max-width: 520px;
	}

	.contact-shot-trust .wp-block-column {
		border-right: 0;
	}

	.contact-shot-visual {
		min-height: 430px;
	}
}

@media (max-width: 640px) {
	.contact-shot-hero h1 {
		font-size: clamp(3rem, 15vw, 4.25rem);
	}

	.contact-shot-email {
		right: 16px;
		left: 16px;
		grid-template-columns: 52px 1fr;
	}

	.contact-shot-email b {
		display: none;
	}

	.contact-shot-form button {
		width: 100%;
	}
}

/* Keep editable Gutenberg page sections full-bleed on the frontend. */
.site-main > .wp-block-group[class*="-page"],
.wp-block-group[class*="-page"] > .wp-block-group,
.wp-block-group[class*="-page"] > .wp-block-columns {
	width: 100% !important;
	max-width: none !important;
	margin-right: 0 !important;
	margin-left: 0 !important;
}

.wp-block-group[class*="-page"] > .wp-block-group > .container,
.wp-block-group[class*="-page"] > .wp-block-columns.container,
.wp-block-group[class*="-page"] .wp-block-group.container,
.wp-block-group[class*="-page"] .wp-block-columns.container {
	width: min(100% - 40px, var(--container)) !important;
	max-width: var(--container) !important;
	margin-right: auto !important;
	margin-left: auto !important;
}

.site-main > .wp-block-group[class*="-page"] {
	overflow: hidden;
}

/* Contact page redesign. */
.contact-redesign-page {
	background: var(--color-ivory);
	color: var(--color-text);
}

.contact-redesign-page a:focus-visible,
.contact-redesign-page button:focus-visible,
.contact-redesign-page input:focus-visible,
.contact-redesign-page select:focus-visible,
.contact-redesign-page textarea:focus-visible,
.contact-redesign-page summary:focus-visible {
	outline: 2px solid var(--color-gold);
	outline-offset: 4px;
}

.contact-redesign-hero {
	position: relative;
	padding: clamp(76px, 9vw, 124px) 0 clamp(66px, 8vw, 108px);
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(205, 170, 69, 0.08), transparent 32%),
		radial-gradient(circle at 74% 24%, rgba(205, 170, 69, 0.13), transparent 28%),
		var(--color-navy);
	color: var(--color-card);
}

.contact-redesign-hero::after,
.contact-redesign-faq::after {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 252, 246, 0.032) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 252, 246, 0.032) 1px, transparent 1px);
	background-size: 56px 56px;
	content: "";
	mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.6), transparent 72%);
}

.contact-redesign-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.96fr) minmax(390px, 0.84fr);
	gap: clamp(42px, 7vw, 88px);
	align-items: center;
}

.contact-redesign-hero h1 {
	max-width: 760px;
	margin: 0;
	color: #fffaf2;
	font-family: var(--font-heading);
	font-size: clamp(3.4rem, 6.7vw, 6.5rem);
	font-weight: 500;
	line-height: 0.94;
	letter-spacing: 0;
}

.contact-redesign-hero__content > p:not(.eyebrow) {
	max-width: 620px;
	margin-top: 26px;
	color: rgba(255, 252, 246, 0.74);
	font-size: clamp(1rem, 1.45vw, 1.16rem);
	line-height: 1.76;
}

.contact-redesign-trust {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 42px;
}

.contact-redesign-trust span {
	display: flex;
	gap: 12px;
	align-items: center;
	min-height: 76px;
	padding: 14px 16px;
	background: rgba(255, 252, 246, 0.04);
	border: 1px solid rgba(255, 252, 246, 0.12);
	border-radius: 999px;
	color: rgba(255, 252, 246, 0.8);
	font-size: 0.88rem;
	font-weight: 800;
	line-height: 1.35;
}

.contact-redesign-trust b {
	display: grid;
	flex: 0 0 38px;
	width: 38px;
	height: 38px;
	place-items: center;
	background: rgba(205, 170, 69, 0.1);
	border: 1px solid rgba(205, 170, 69, 0.32);
	border-radius: 50%;
	color: var(--color-gold);
	font-size: 0.78rem;
}

.contact-enquiry-visual {
	position: relative;
	min-height: 500px;
	padding: clamp(24px, 4vw, 38px);
	overflow: hidden;
	background:
		radial-gradient(circle at 18% 10%, rgba(91, 121, 77, 0.42), transparent 22%),
		radial-gradient(circle at 82% 16%, rgba(255, 207, 113, 0.34), transparent 15%),
		linear-gradient(145deg, #1d2d3a, #081621 58%, #3a2c1c);
	border: 1px solid rgba(255, 252, 246, 0.12);
	border-radius: 18px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.contact-enquiry-visual::before {
	position: absolute;
	right: 15%;
	top: 16%;
	width: 180px;
	height: 180px;
	background: radial-gradient(circle, rgba(255, 218, 130, 0.68), rgba(205, 170, 69, 0.08) 48%, transparent 54%);
	filter: blur(1px);
	content: "";
}

.contact-enquiry-visual__header,
.contact-enquiry-visual__body,
.contact-enquiry-visual__email {
	position: relative;
	z-index: 1;
}

.contact-enquiry-visual__header {
	display: flex;
	justify-content: flex-end;
}

.contact-enquiry-visual__header span {
	display: inline-flex;
	min-height: 34px;
	align-items: center;
	padding: 0 14px;
	background: var(--color-gold);
	border-radius: 999px;
	color: var(--color-navy);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.contact-enquiry-visual__body {
	margin-top: clamp(86px, 12vw, 148px);
	padding: 28px;
	background: rgba(11, 26, 38, 0.72);
	border: 1px solid rgba(255, 252, 246, 0.13);
	border-radius: 18px;
	backdrop-filter: blur(16px);
}

.contact-enquiry-visual__body small {
	display: block;
	color: var(--color-gold);
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.contact-enquiry-visual__body strong {
	display: block;
	max-width: 340px;
	margin-top: 10px;
	color: var(--color-card);
	font-family: var(--font-heading);
	font-size: clamp(2rem, 3vw, 3.25rem);
	font-weight: 500;
	line-height: 1;
}

.contact-enquiry-visual__body ul {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin: 24px 0;
	padding: 0;
	list-style: none;
}

.contact-enquiry-visual__body li {
	padding: 8px 12px;
	background: rgba(255, 252, 246, 0.07);
	border: 1px solid rgba(255, 252, 246, 0.12);
	border-radius: 999px;
	color: rgba(255, 252, 246, 0.82);
	font-size: 0.82rem;
	font-weight: 800;
}

.contact-enquiry-visual__body i {
	display: block;
	height: 12px;
	margin-top: 12px;
	background: rgba(255, 252, 246, 0.12);
	border-radius: 999px;
}

.contact-enquiry-visual__body i:nth-of-type(2) {
	width: 74%;
}

.contact-enquiry-visual__body i:nth-of-type(3) {
	width: 58%;
	background: rgba(205, 170, 69, 0.42);
}

.contact-enquiry-visual__email {
	position: absolute;
	right: 32px;
	bottom: 30px;
	left: 32px;
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 4px 18px;
	align-items: center;
	padding: 20px 22px;
	background: rgba(11, 26, 38, 0.78);
	border: 1px solid rgba(255, 252, 246, 0.14);
	border-radius: 16px;
	color: var(--color-card);
	text-decoration: none;
	backdrop-filter: blur(18px);
}

.contact-enquiry-visual__email span {
	grid-row: span 2;
	display: grid;
	width: 58px;
	height: 58px;
	place-items: center;
	background: rgba(205, 170, 69, 0.12);
	border: 1px solid rgba(205, 170, 69, 0.4);
	border-radius: 50%;
	color: var(--color-gold);
	font-weight: 900;
}

.contact-enquiry-visual__email strong {
	font-size: 1rem;
}

.contact-enquiry-visual__email em {
	color: var(--color-gold);
	font-style: normal;
	font-weight: 800;
}

.contact-enquiry-section,
.contact-fit-section,
.contact-final-cta {
	padding: clamp(58px, 7vw, 96px) 0;
	background:
		radial-gradient(circle at 12% 8%, rgba(205, 170, 69, 0.1), transparent 28%),
		var(--color-ivory);
}

.contact-enquiry-section__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.72fr);
	gap: 28px;
	align-items: start;
}

.contact-redesign-form-card,
.contact-next-card,
.contact-fit-card {
	background: var(--color-card);
	border: 1px solid var(--color-border);
	border-radius: 16px;
	box-shadow: 0 18px 54px rgba(11, 26, 38, 0.08);
}

.contact-redesign-form-card {
	border-top: 4px solid var(--color-gold);
	padding: clamp(30px, 5vw, 54px);
}

.contact-redesign-form-card h2,
.contact-next-card h2,
.contact-section-heading h2,
.contact-redesign-faq h2,
.contact-final-cta h2 {
	margin: 10px 0 0;
	color: var(--color-text);
	font-family: var(--font-heading);
	font-size: clamp(2.2rem, 4vw, 4rem);
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
}

.contact-redesign-form-card > p:not(.eyebrow) {
	max-width: 620px;
	color: rgba(16, 28, 41, 0.66);
	line-height: 1.7;
}

.contact-redesign-form,
.contact-redesign-form .wpcf7-form {
	margin-top: 28px;
}

.contact-redesign-form__grid,
.contact-redesign-form .form-row,
.contact-redesign-form .wpcf7-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.contact-redesign-form .form-field,
.contact-redesign-form .wpcf7-form p {
	margin: 0;
}

.contact-redesign-form .form-field--full,
.contact-redesign-form .wpcf7-form p:has(textarea) {
	grid-column: 1 / -1;
}

.contact-redesign-form label,
.contact-redesign-form .wpcf7-form label {
	display: grid;
	gap: 8px;
	color: rgba(16, 28, 41, 0.78);
	font-size: 0.88rem;
	font-weight: 900;
}

.contact-redesign-form input,
.contact-redesign-form select,
.contact-redesign-form textarea,
.contact-redesign-form .wpcf7-form-control {
	width: 100%;
	min-height: 54px;
	padding: 0 16px;
	background: rgba(255, 252, 246, 0.88);
	border: 1px solid rgba(11, 26, 38, 0.14);
	border-radius: 9px;
	color: var(--color-text);
	font: inherit;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-redesign-form textarea,
.contact-redesign-form .wpcf7-textarea {
	min-height: 148px;
	padding-top: 14px;
	resize: vertical;
}

.contact-redesign-form input:focus,
.contact-redesign-form select:focus,
.contact-redesign-form textarea:focus,
.contact-redesign-form .wpcf7-form-control:focus {
	border-color: var(--color-gold);
	box-shadow: 0 0 0 4px rgba(205, 170, 69, 0.16);
	outline: 0;
}

.contact-redesign-form__privacy {
	margin: 18px 0 0;
	color: rgba(16, 28, 41, 0.55);
	font-size: 0.88rem;
}

.contact-redesign-form button,
.contact-redesign-form .wpcf7-submit,
.contact-redesign-form-card .wpcf7-submit {
	display: inline-flex;
	min-height: 54px;
	align-items: center;
	gap: 12px;
	justify-content: center;
	margin-top: 22px;
	padding: 0 26px;
	background: linear-gradient(135deg, #e6c861, var(--color-gold));
	border: 1px solid var(--color-gold);
	border-radius: 999px;
	color: var(--color-navy);
	font-weight: 900;
	cursor: pointer;
}

.contact-redesign-form .wpcf7-not-valid-tip {
	margin-top: 6px;
	color: #9b2c2c;
	font-size: 0.86rem;
	font-weight: 800;
}

.contact-redesign-form .wpcf7-response-output {
	margin: 18px 0 0;
	padding: 14px 16px;
	border-radius: 10px;
}

.contact-next-card {
	position: sticky;
	top: 104px;
	padding: clamp(28px, 4vw, 42px);
}

.contact-next-card h2 {
	font-size: clamp(2rem, 3vw, 3rem);
}

.contact-next-list {
	display: grid;
	gap: 16px;
	margin: 28px 0;
	padding: 0;
	list-style: none;
}

.contact-next-list li {
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 14px;
	align-items: start;
	color: rgba(16, 28, 41, 0.72);
	font-weight: 800;
	line-height: 1.45;
}

.contact-next-list span {
	color: var(--color-gold-dark);
	font-family: var(--font-heading);
	font-size: 1.45rem;
	line-height: 1;
}

.contact-next-card__details {
	display: grid;
	gap: 10px;
	padding: 22px 0;
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
}

.contact-next-card__details a,
.contact-next-card__details span {
	color: var(--color-text);
	text-decoration: none;
}

.contact-next-card__note {
	margin: 22px 0 0;
	color: rgba(16, 28, 41, 0.64);
	line-height: 1.68;
}

.contact-section-heading {
	max-width: 760px;
	margin-bottom: 34px;
}

.contact-fit-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.contact-fit-card {
	padding: 28px;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-fit-card:hover {
	border-color: rgba(205, 170, 69, 0.72);
	box-shadow: 0 24px 62px rgba(11, 26, 38, 0.13);
	transform: translateY(-5px);
}

.contact-fit-card span {
	color: var(--color-gold-dark);
	font-family: var(--font-heading);
	font-size: 2.2rem;
}

.contact-fit-card h3 {
	margin: 18px 0 0;
	font-family: var(--font-heading);
	font-size: clamp(1.45rem, 2vw, 1.9rem);
	font-weight: 500;
	line-height: 1.05;
}

.contact-fit-card p {
	color: rgba(16, 28, 41, 0.66);
	line-height: 1.68;
}

.contact-redesign-faq {
	position: relative;
	padding: clamp(66px, 8vw, 108px) 0;
	overflow: hidden;
	background:
		radial-gradient(circle at 86% 20%, rgba(205, 170, 69, 0.16), transparent 28%),
		var(--color-navy);
	color: var(--color-card);
}

.contact-redesign-faq__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 0.58fr 1fr;
	gap: clamp(34px, 6vw, 76px);
}

.contact-redesign-faq h2 {
	color: var(--color-card);
}

.contact-redesign-accordion {
	border-top: 1px solid rgba(255, 252, 246, 0.14);
}

.contact-redesign-accordion details {
	border-bottom: 1px solid rgba(255, 252, 246, 0.14);
}

.contact-redesign-accordion summary {
	display: grid;
	grid-template-columns: 54px 1fr;
	gap: 14px;
	align-items: center;
	padding: 24px 0;
	color: var(--color-card);
	cursor: pointer;
	font-family: var(--font-heading);
	font-size: clamp(1.5rem, 2.2vw, 2.2rem);
	line-height: 1.1;
	list-style: none;
}

.contact-redesign-accordion summary::-webkit-details-marker {
	display: none;
}

.contact-redesign-accordion summary span {
	color: var(--color-gold);
	font-family: var(--font-body);
	font-size: 0.86rem;
	font-weight: 900;
	letter-spacing: 0.12em;
}

.contact-redesign-accordion p {
	max-width: 720px;
	margin: 0 0 24px 68px;
	color: rgba(255, 252, 246, 0.72);
	line-height: 1.75;
}

.contact-final-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 32px;
	align-items: center;
	padding: clamp(30px, 5vw, 54px);
	background:
		radial-gradient(circle at 88% 16%, rgba(205, 170, 69, 0.18), transparent 28%),
		var(--color-navy);
	border: 1px solid rgba(255, 252, 246, 0.12);
	border-radius: 18px;
	color: var(--color-card);
}

.contact-final-cta h2 {
	color: var(--color-card);
}

.contact-final-cta p:not(.eyebrow) {
	max-width: 690px;
	color: rgba(255, 252, 246, 0.72);
	line-height: 1.7;
}

.contact-final-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
	justify-content: flex-end;
}

.contact-final-cta__link {
	color: var(--color-card);
	font-weight: 900;
	text-decoration: none;
}

@media (max-width: 980px) {
	.contact-redesign-hero__grid,
	.contact-enquiry-section__grid,
	.contact-redesign-faq__grid,
	.contact-final-cta__inner {
		grid-template-columns: 1fr;
	}

	.contact-redesign-trust {
		grid-template-columns: 1fr;
	}

	.contact-next-card {
		position: static;
	}

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

	.contact-final-cta__actions {
		justify-content: flex-start;
	}
}

@media (max-width: 640px) {
	.contact-redesign-hero {
		padding-top: 58px;
	}

	.contact-redesign-hero h1 {
		font-size: clamp(2.85rem, 15vw, 4.15rem);
	}

	.contact-enquiry-visual {
		min-height: 430px;
	}

	.contact-enquiry-visual__email {
		right: 18px;
		bottom: 18px;
		left: 18px;
	}

	.contact-redesign-form__grid,
	.contact-redesign-form .form-row,
	.contact-redesign-form .wpcf7-form {
		grid-template-columns: 1fr;
	}

	.contact-redesign-form button,
	.contact-redesign-form .wpcf7-submit,
	.contact-redesign-form-card .wpcf7-submit {
		width: 100%;
	}

	.contact-fit-grid {
		grid-template-columns: 1fr;
	}

	.contact-redesign-accordion summary {
		grid-template-columns: 42px 1fr;
	}

	.contact-redesign-accordion p {
		margin-left: 56px;
	}
}

/* Keep Contact page sections compact across screen sizes. */
.contact-redesign-page .contact-redesign-hero {
	padding-block: clamp(44px, 5vw, 64px);
}

.contact-redesign-page .contact-enquiry-section,
.contact-redesign-page .contact-fit-section,
.contact-redesign-page .contact-redesign-faq,
.contact-redesign-page .contact-final-cta {
	padding-block: clamp(36px, 4.5vw, 56px);
}

.contact-shot-page .contact-shot-main__grid {
	align-items: start !important;
}

.contact-shot-page .contact-shot-main__grid > .contact-shot-office-card {
	height: fit-content !important;
	min-height: 0 !important;
	align-self: start !important;
}

/* Blog / Insights redesign. */
.blog-redesign-page {
	background: var(--color-ivory);
	color: var(--color-text);
}

.blog-redesign-page a:focus-visible,
.blog-redesign-page button:focus-visible,
.blog-redesign-page input:focus-visible {
	outline: 2px solid var(--color-gold);
	outline-offset: 4px;
}

.blog-redesign-hero {
	position: relative;
	padding: clamp(70px, 9vw, 118px) 0 clamp(64px, 8vw, 96px);
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(205, 170, 69, 0.09), transparent 32%),
		radial-gradient(circle at 80% 22%, rgba(205, 170, 69, 0.13), transparent 27%),
		var(--color-navy);
	color: var(--color-card);
}

.blog-redesign-hero::after,
.blog-final-cta::after {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 252, 246, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 252, 246, 0.035) 1px, transparent 1px);
	background-size: 54px 54px;
	content: "";
	mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.62), transparent 74%);
}

.blog-redesign-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.86fr);
	gap: clamp(42px, 7vw, 92px);
	align-items: center;
}

.blog-redesign-hero h1 {
	max-width: 760px;
	margin: 0;
	color: #fffaf2;
	font-family: var(--font-heading);
	font-size: clamp(3.25rem, 6.4vw, 6.45rem);
	font-weight: 500;
	line-height: 0.94;
	letter-spacing: 0;
}

.blog-redesign-hero__content > p:not(.eyebrow) {
	max-width: 610px;
	margin: 26px 0 0;
	color: rgba(255, 252, 246, 0.74);
	font-size: clamp(1rem, 1.5vw, 1.18rem);
	line-height: 1.75;
}

.blog-redesign-filter {
	margin-top: 38px;
}

.blog-redesign-filter button {
	min-height: 48px;
	padding: 0 24px;
	background: rgba(255, 252, 246, 0.03);
	border: 1px solid rgba(205, 170, 69, 0.74);
	border-radius: 999px;
	color: var(--color-card);
	box-shadow: none;
	font-weight: 800;
}

.blog-redesign-filter button.is-active,
.blog-redesign-filter button:hover {
	background: linear-gradient(135deg, #e6c861, var(--color-gold));
	border-color: var(--color-gold);
	color: var(--color-navy);
}

.blog-hero-visual {
	position: relative;
	min-height: 540px;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(9, 18, 27, 0.12), rgba(9, 18, 27, 0.72)),
		linear-gradient(145deg, #263526, #111a1d 46%, #4a321d);
	border: 1px solid rgba(255, 252, 246, 0.12);
	border-radius: 18px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.blog-hero-visual__scene {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 28% 18%, rgba(96, 132, 84, 0.46), transparent 24%),
		radial-gradient(circle at 74% 22%, rgba(251, 193, 98, 0.38), transparent 12%),
		linear-gradient(90deg, transparent 0 42%, rgba(255, 252, 246, 0.08) 42% 43%, transparent 43%),
		linear-gradient(0deg, #0d1718 0 28%, transparent 28%);
}

.blog-hero-visual__scene span:nth-child(1) {
	position: absolute;
	right: 12%;
	top: 12%;
	width: 124px;
	height: 124px;
	background: radial-gradient(circle, rgba(255, 215, 126, 0.72), rgba(205, 170, 69, 0.05) 54%, transparent 56%);
	filter: blur(1px);
}

.blog-hero-visual__scene span:nth-child(2) {
	position: absolute;
	left: 24%;
	bottom: 20%;
	width: 210px;
	height: 90px;
	background: #1a1510;
	border: 1px solid rgba(205, 170, 69, 0.18);
	border-radius: 999px;
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
	transform: rotate(-5deg);
}

.blog-hero-visual__scene span:nth-child(3) {
	position: absolute;
	right: 11%;
	bottom: 21%;
	width: 250px;
	height: 170px;
	background: linear-gradient(145deg, #1f1b16, #3c3327);
	border: 1px solid rgba(255, 252, 246, 0.12);
	border-radius: 14px;
	transform: rotate(-4deg);
}

.blog-hero-quote {
	position: absolute;
	right: 34px;
	bottom: 28px;
	left: 34px;
	max-width: 330px;
	padding: 26px 28px;
	background: rgba(11, 26, 38, 0.76);
	border: 1px solid rgba(255, 252, 246, 0.14);
	border-radius: 16px;
	backdrop-filter: blur(16px);
}

.blog-hero-quote strong {
	display: block;
	color: var(--color-gold);
	font-family: var(--font-heading);
	font-size: 2.1rem;
	line-height: 0.7;
}

.blog-hero-quote strong::before {
	content: "\201C";
}

.blog-hero-quote p {
	margin: 8px 0 0;
	color: var(--color-card);
	line-height: 1.65;
}

.blog-featured-redesign,
.blog-latest-redesign,
.blog-support-redesign,
.blog-recommended-redesign {
	padding: clamp(58px, 7vw, 96px) 0;
	background:
		radial-gradient(circle at 12% 10%, rgba(205, 170, 69, 0.1), transparent 28%),
		var(--color-ivory);
}

.blog-featured-card {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.88fr);
	overflow: hidden;
	background: var(--color-card);
	border: 1px solid var(--color-border);
	border-left: 4px solid var(--color-gold);
	border-radius: 18px;
	box-shadow: 0 24px 70px rgba(11, 26, 38, 0.11);
}

.blog-featured-card__body {
	padding: clamp(34px, 5vw, 64px);
}

.blog-featured-card h2,
.blog-section-heading h2,
.blog-support-redesign h2,
.blog-recommended-redesign h2,
.blog-final-cta h2 {
	margin: 10px 0 0;
	color: var(--color-text);
	font-family: var(--font-heading);
	font-size: clamp(2.35rem, 4vw, 4.25rem);
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
}

.blog-featured-card__body > p:not(.eyebrow) {
	max-width: 610px;
	color: rgba(16, 28, 41, 0.7);
	font-size: 1.05rem;
	line-height: 1.75;
}

.blog-redesign-category,
.blog-redesign-meta {
	display: inline-flex;
	align-items: center;
	color: var(--color-gold-dark);
	font-size: 0.76rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.blog-redesign-meta {
	display: block;
	margin-top: 20px;
	color: rgba(16, 28, 41, 0.54);
	letter-spacing: 0;
	text-transform: none;
}

.blog-featured-card__visual {
	min-height: 420px;
	padding: clamp(26px, 5vw, 54px);
	background:
		linear-gradient(135deg, rgba(205, 170, 69, 0.18), transparent 34%),
		linear-gradient(145deg, #101c29, #07131e);
}

.editorial-mockup {
	position: relative;
	height: 100%;
	min-height: 340px;
	padding: 30px;
	background:
		linear-gradient(rgba(255, 252, 246, 0.055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 252, 246, 0.055) 1px, transparent 1px),
		#0b1a26;
	background-size: 38px 38px;
	border: 1px solid rgba(255, 252, 246, 0.12);
	border-radius: 16px;
	box-shadow: inset 0 0 0 1px rgba(205, 170, 69, 0.08);
}

.editorial-mockup__nav {
	width: 120px;
	height: 12px;
	background: var(--color-gold);
	border-radius: 999px;
}

.editorial-mockup__headline {
	width: 72%;
	height: 126px;
	margin-top: 56px;
	background:
		linear-gradient(var(--color-card), var(--color-card)) 0 0 / 100% 24px no-repeat,
		linear-gradient(var(--color-card), var(--color-card)) 0 50px / 82% 24px no-repeat,
		linear-gradient(var(--color-card), var(--color-card)) 0 100px / 56% 24px no-repeat;
	opacity: 0.92;
}

.editorial-mockup__line {
	width: 72px;
	height: 2px;
	margin-top: 32px;
	background: var(--color-gold);
}

.editorial-mockup__grid {
	position: absolute;
	right: 30px;
	bottom: 30px;
	display: grid;
	grid-template-columns: repeat(3, 58px);
	gap: 12px;
}

.editorial-mockup__grid span {
	height: 78px;
	background: rgba(255, 252, 246, 0.08);
	border: 1px solid rgba(255, 252, 246, 0.13);
	border-radius: 10px;
}

.blog-section-heading {
	display: flex;
	gap: 28px;
	align-items: end;
	justify-content: space-between;
	margin-bottom: 34px;
}

.blog-section-heading p:not(.eyebrow) {
	max-width: 620px;
	color: rgba(16, 28, 41, 0.67);
	line-height: 1.7;
}

.blog-section-heading__link,
.blog-read-link,
.blog-final-cta__link {
	display: inline-flex;
	gap: 9px;
	align-items: center;
	color: var(--color-gold-dark);
	font-weight: 900;
	text-decoration: none;
}

.blog-section-heading__link span,
.blog-read-link span {
	transition: transform 180ms ease;
}

.blog-section-heading__link:hover span,
.blog-read-link:hover span,
.blog-redesign-card:hover .blog-read-link span {
	transform: translateX(4px);
}

.blog-redesign-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.blog-redesign-card {
	overflow: hidden;
	background: var(--color-card);
	border: 1px solid var(--color-border);
	border-radius: 14px;
	box-shadow: 0 18px 50px rgba(11, 26, 38, 0.08);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.blog-redesign-card:hover {
	border-color: rgba(205, 170, 69, 0.72);
	box-shadow: 0 24px 62px rgba(11, 26, 38, 0.13);
	transform: translateY(-5px);
}

.blog-redesign-card.is-hidden {
	display: none;
}

.blog-redesign-card__media {
	position: relative;
	display: block;
	height: 210px;
	overflow: hidden;
	background: var(--color-navy);
}

.blog-redesign-card__media::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(205, 170, 69, 0.18), transparent 42%);
	opacity: 0;
	transition: opacity 180ms ease;
	content: "";
}

.blog-redesign-card:hover .blog-redesign-card__media::after {
	opacity: 1;
}

.blog-redesign-card__media img,
.blog-visual-fallback {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 240ms ease;
}

.blog-redesign-card:hover .blog-redesign-card__media img,
.blog-redesign-card:hover .blog-visual-fallback {
	transform: scale(1.035);
}

.blog-redesign-card__body {
	padding: 26px;
}

.blog-redesign-card h3 {
	margin: 14px 0 0;
	font-family: var(--font-heading);
	font-size: clamp(1.55rem, 2.2vw, 2.05rem);
	font-weight: 500;
	line-height: 1.07;
	letter-spacing: 0;
}

.blog-redesign-card h3 a {
	color: var(--color-text);
	text-decoration: none;
}

.blog-redesign-card__body > p:not(.blog-redesign-category) {
	min-height: 88px;
	color: rgba(16, 28, 41, 0.66);
	line-height: 1.65;
}

.blog-visual-fallback {
	background:
		linear-gradient(rgba(255, 252, 246, 0.055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 252, 246, 0.055) 1px, transparent 1px),
		linear-gradient(145deg, #091622, #14293c);
	background-size: 34px 34px, 34px 34px, auto;
}

.blog-visual-fallback--editorial {
	background:
		linear-gradient(90deg, rgba(255, 252, 246, 0.92) 0 44%, transparent 44%),
		radial-gradient(circle at 72% 40%, rgba(205, 170, 69, 0.86), transparent 7%),
		linear-gradient(145deg, #0b1a26, #22384a);
}

.blog-visual-fallback--positioning {
	background:
		linear-gradient(135deg, transparent 0 52%, rgba(205, 170, 69, 0.78) 52% 54%, transparent 54%),
		linear-gradient(145deg, #101c29, #283a2d);
}

.blog-visual-fallback--system {
	background:
		linear-gradient(rgba(205, 170, 69, 0.52) 2px, transparent 2px),
		linear-gradient(90deg, rgba(205, 170, 69, 0.52) 2px, transparent 2px),
		#0b1a26;
	background-size: 54px 54px;
}

.blog-visual-fallback--growth {
	background:
		linear-gradient(135deg, transparent 56%, rgba(205, 170, 69, 0.9) 56% 58%, transparent 58%),
		linear-gradient(180deg, #0b1a26, #06111b);
}

.blog-visual-fallback--journey {
	background:
		radial-gradient(circle at 22% 48%, var(--color-gold) 0 5%, transparent 5.5%),
		radial-gradient(circle at 50% 48%, var(--color-gold) 0 5%, transparent 5.5%),
		radial-gradient(circle at 78% 48%, var(--color-gold) 0 5%, transparent 5.5%),
		linear-gradient(90deg, transparent 0 22%, rgba(205, 170, 69, 0.56) 22% 78%, transparent 78%),
		#0b1a26;
}

.blog-visual-fallback--audit {
	background:
		linear-gradient(#fffcf6, #fffcf6) 20% 26% / 52% 12px no-repeat,
		linear-gradient(#fffcf6, #fffcf6) 20% 46% / 66% 12px no-repeat,
		linear-gradient(#cdaa45, #cdaa45) 20% 66% / 40% 12px no-repeat,
		linear-gradient(145deg, #0b1a26, #172d41);
}

.blog-support-redesign {
	padding-top: 0;
}

.blog-support-redesign__grid {
	display: grid;
	grid-template-columns: 1.04fr 0.88fr 0.88fr;
	gap: 24px;
}

.blog-newsletter-redesign,
.blog-support-card {
	padding: clamp(30px, 4vw, 44px);
	border-radius: 16px;
}

.blog-newsletter-redesign {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 88% 12%, rgba(205, 170, 69, 0.18), transparent 22%),
		var(--color-navy);
	color: var(--color-card);
}

.blog-newsletter-redesign::after {
	position: absolute;
	right: 26px;
	top: 24px;
	width: 88px;
	height: 88px;
	background-image: radial-gradient(var(--color-gold) 1px, transparent 1px);
	background-size: 14px 14px;
	opacity: 0.45;
	content: "";
}

.blog-support-card {
	background: var(--color-card);
	border: 1px solid var(--color-border);
}

.blog-support-icon {
	display: inline-grid;
	width: 54px;
	height: 54px;
	margin-bottom: 24px;
	place-items: center;
	background: rgba(205, 170, 69, 0.12);
	border: 1px solid rgba(205, 170, 69, 0.28);
	border-radius: 50%;
	color: var(--color-gold-dark);
	font-weight: 900;
}

.blog-newsletter-redesign .blog-support-icon {
	background: rgba(255, 252, 246, 0.08);
	border-color: rgba(205, 170, 69, 0.32);
	color: var(--color-gold);
}

.blog-newsletter-redesign h2,
.blog-newsletter-redesign p,
.blog-newsletter-redesign small {
	position: relative;
	z-index: 1;
	color: var(--color-card);
}

.blog-newsletter-redesign h2,
.blog-support-card h2 {
	font-size: clamp(2rem, 3vw, 3rem);
}

.blog-newsletter-redesign p,
.blog-support-card p,
.blog-support-card strong {
	color: rgba(16, 28, 41, 0.68);
	line-height: 1.68;
}

.blog-newsletter-redesign p,
.blog-newsletter-redesign small {
	color: rgba(255, 252, 246, 0.72);
}

.blog-newsletter-redesign__form {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 10px;
	margin-top: 24px;
}

.blog-newsletter-redesign__form input,
.blog-newsletter-redesign__form button {
	min-height: 52px;
	border-radius: 9px;
	font: inherit;
}

.blog-newsletter-redesign__form input {
	width: 100%;
	padding: 0 16px;
	background: rgba(255, 252, 246, 0.06);
	border: 1px solid rgba(255, 252, 246, 0.14);
	color: var(--color-card);
}

.blog-newsletter-redesign__form input::placeholder {
	color: rgba(255, 252, 246, 0.56);
}

.blog-newsletter-redesign__form button {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
	background: linear-gradient(135deg, #e6c861, var(--color-gold));
	border: 1px solid var(--color-gold);
	color: var(--color-navy);
	font-weight: 900;
	cursor: pointer;
}

.blog-topic-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.blog-topic-pills a {
	display: inline-flex;
	min-height: 40px;
	align-items: center;
	padding: 0 15px;
	background: rgba(205, 170, 69, 0.08);
	border: 1px solid rgba(205, 170, 69, 0.2);
	border-radius: 999px;
	color: var(--color-text);
	font-weight: 800;
	text-decoration: none;
}

.blog-topic-pills a:hover {
	background: var(--color-gold);
	color: var(--color-navy);
}

.blog-recommended-redesign {
	padding-top: 0;
}

.blog-recommended-redesign h2 {
	max-width: 760px;
}

.blog-reading-list {
	margin-top: 34px;
	border-top: 1px solid var(--color-border);
}

.blog-reading-row {
	display: grid;
	grid-template-columns: 54px 120px minmax(0, 1fr) minmax(220px, 0.72fr) 32px;
	gap: 18px;
	align-items: center;
	padding: 24px 0;
	border-bottom: 1px solid var(--color-border);
	color: var(--color-text);
	text-decoration: none;
}

.blog-reading-row span {
	color: var(--color-gold-dark);
	font-family: var(--font-heading);
	font-size: 1.7rem;
}

.blog-reading-row small {
	color: var(--color-gold-dark);
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.blog-reading-row strong {
	font-family: var(--font-heading);
	font-size: clamp(1.35rem, 2vw, 2rem);
	font-weight: 500;
	line-height: 1.08;
}

.blog-reading-row em {
	color: rgba(16, 28, 41, 0.62);
	font-style: normal;
	line-height: 1.55;
}

.blog-reading-row b {
	color: var(--color-gold-dark);
	transition: transform 180ms ease;
}

.blog-reading-row:hover b {
	transform: translateX(5px);
}

.blog-final-cta {
	position: relative;
	padding: clamp(60px, 8vw, 100px) 0;
	overflow: hidden;
	background:
		radial-gradient(circle at 82% 26%, rgba(205, 170, 69, 0.22), transparent 26%),
		var(--color-navy);
	color: var(--color-card);
}

.blog-final-cta__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 34px;
	align-items: center;
	padding: clamp(30px, 5vw, 54px);
	background: rgba(255, 252, 246, 0.04);
	border: 1px solid rgba(255, 252, 246, 0.12);
	border-radius: 18px;
}

.blog-final-cta h2 {
	max-width: 760px;
	color: var(--color-card);
}

.blog-final-cta p:not(.eyebrow) {
	max-width: 650px;
	color: rgba(255, 252, 246, 0.72);
	line-height: 1.7;
}

.blog-final-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
	justify-content: flex-end;
}

.blog-final-cta__link {
	color: var(--color-card);
}

@media (max-width: 980px) {
	.blog-redesign-hero__grid,
	.blog-featured-card,
	.blog-support-redesign__grid,
	.blog-final-cta__inner {
		grid-template-columns: 1fr;
	}

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

	.blog-hero-visual {
		min-height: 420px;
	}

	.blog-section-heading {
		align-items: start;
		flex-direction: column;
	}

	.blog-reading-row {
		grid-template-columns: 46px 1fr 30px;
	}

	.blog-reading-row small,
	.blog-reading-row em {
		grid-column: 2 / -1;
	}

	.blog-final-cta__actions {
		justify-content: flex-start;
	}
}

@media (max-width: 640px) {
	.blog-redesign-hero {
		padding-top: 56px;
	}

	.blog-redesign-hero h1 {
		font-size: clamp(2.8rem, 15vw, 4.2rem);
	}

	.blog-redesign-filter {
		gap: 10px;
	}

	.blog-redesign-filter button {
		min-height: 44px;
		padding: 0 18px;
	}

	.blog-hero-visual {
		min-height: 350px;
	}

	.blog-hero-quote {
		right: 18px;
		bottom: 18px;
		left: 18px;
		padding: 20px;
	}

	.blog-redesign-grid {
		grid-template-columns: 1fr;
	}

	.blog-featured-card__visual {
		min-height: 330px;
	}

	.editorial-mockup__grid {
		grid-template-columns: repeat(3, 42px);
	}

	.blog-redesign-card__body > p:not(.blog-redesign-category) {
		min-height: 0;
	}

	.blog-reading-row {
		grid-template-columns: 42px 1fr 24px;
		gap: 12px;
	}

	.blog-reading-row strong {
		font-size: 1.45rem;
	}
}

/* Celnoia premium homepage refresh. */
body.home {
	background: var(--color-ivory);
}

body.home .site-header {
	background: rgba(11, 26, 38, 0.9);
	backdrop-filter: blur(18px);
	border-bottom-color: rgba(244, 240, 232, 0.08);
}

body.home .hero {
	position: relative;
	padding: clamp(72px, 9vw, 120px) 0 clamp(70px, 8vw, 106px);
	background:
		linear-gradient(135deg, rgba(205, 170, 69, 0.08), transparent 34%),
		radial-gradient(circle at 82% 20%, rgba(205, 170, 69, 0.1), transparent 30%),
		var(--color-navy);
}

body.home .hero__grid {
	grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.88fr);
	gap: clamp(42px, 7vw, 92px);
}

body.home .hero h1 {
	max-width: 720px;
	font-size: clamp(3.5rem, 6.6vw, 6.45rem);
}

body.home .hero__content p:not(.eyebrow) {
	max-width: 540px;
	color: rgba(244, 240, 232, 0.76);
}

.hero__trust-note {
	margin-top: 18px;
	color: rgba(244, 240, 232, 0.66) !important;
	font-size: 0.9rem !important;
}

body.home .button--primary,
body.home .wp-block-button__link {
	background: linear-gradient(135deg, #e0c262, var(--color-gold));
	border-color: var(--color-gold);
	box-shadow: 0 12px 28px rgba(205, 170, 69, 0.22);
}

body.home .button--ghost {
	background: rgba(205, 170, 69, 0.04);
}

body.home .button:focus-visible,
body.home a:focus-visible,
body.home button:focus-visible {
	outline: 2px solid var(--color-gold);
	outline-offset: 4px;
}

body.home .hero__media {
	min-height: 560px;
	padding: clamp(16px, 3vw, 30px);
	overflow: visible;
	background: linear-gradient(145deg, rgba(255, 252, 246, 0.08), rgba(19, 38, 56, 0.52));
	border-color: rgba(244, 240, 232, 0.12);
	border-radius: 22px;
	box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
}

.strategy-mockup {
	position: relative;
	height: 100%;
	min-height: 500px;
	overflow: hidden;
	background:
		linear-gradient(rgba(255, 252, 246, 0.055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 252, 246, 0.055) 1px, transparent 1px),
		linear-gradient(145deg, #152b3d, #081621 62%);
	background-size: 42px 42px, 42px 42px, auto;
	border: 1px solid rgba(205, 170, 69, 0.24);
	border-radius: 14px;
}

.strategy-mockup::after {
	position: absolute;
	right: 36px;
	bottom: 34px;
	left: 36px;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
	content: "";
}

.strategy-mockup__browser,
.project-browser {
	display: flex;
	gap: 8px;
	align-items: center;
	height: 44px;
	padding-inline: 18px;
	background: rgba(255, 252, 246, 0.06);
	border-bottom: 1px solid rgba(255, 252, 246, 0.1);
}

.strategy-mockup__browser span,
.project-browser span {
	width: 9px;
	height: 9px;
	background: rgba(244, 240, 232, 0.4);
	border-radius: 50%;
}

.strategy-mockup__grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 18px;
	padding: clamp(18px, 3vw, 34px);
}

.strategy-mockup__preview,
.strategy-mockup__panel,
.strategy-mockup__chart,
.strategy-mockup__roadmap {
	background: rgba(255, 252, 246, 0.08);
	border: 1px solid rgba(255, 252, 246, 0.12);
	border-radius: 8px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.strategy-mockup__preview {
	grid-row: span 2;
	min-height: 245px;
	padding: 26px;
}

.strategy-mockup__preview span {
	display: block;
	border-radius: 999px;
}

.preview-kicker {
	width: 72px;
	height: 8px;
	margin-bottom: 28px;
	background: var(--color-gold);
}

.preview-title {
	width: 92%;
	height: 24px;
	margin-bottom: 12px;
	background: rgba(255, 252, 246, 0.84);
}

.preview-title--short {
	width: 64%;
	margin-bottom: 28px;
}

.preview-copy {
	width: 76%;
	height: 9px;
	margin-bottom: 11px;
	background: rgba(244, 240, 232, 0.3);
}

.preview-copy--short {
	width: 52%;
}

.strategy-mockup__panel {
	padding: 20px;
}

.strategy-mockup__panel small {
	display: block;
	color: rgba(244, 240, 232, 0.58);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.strategy-mockup__panel strong {
	display: block;
	margin-top: 8px;
	color: var(--color-gold);
	font-family: var(--font-heading);
	font-size: 3rem;
	line-height: 1;
}

.strategy-mockup__panel--gold {
	background: linear-gradient(145deg, rgba(205, 170, 69, 0.22), rgba(255, 252, 246, 0.07));
	border-color: rgba(205, 170, 69, 0.42);
}

.strategy-mockup__chart {
	grid-column: span 2;
	display: flex;
	align-items: end;
	gap: 12px;
	min-height: 122px;
	padding: 22px;
}

.strategy-mockup__chart span {
	flex: 1;
	background: linear-gradient(180deg, var(--color-gold), rgba(205, 170, 69, 0.18));
	border-radius: 999px 999px 3px 3px;
}

.strategy-mockup__chart span:nth-child(1) { height: 34%; }
.strategy-mockup__chart span:nth-child(2) { height: 52%; }
.strategy-mockup__chart span:nth-child(3) { height: 46%; }
.strategy-mockup__chart span:nth-child(4) { height: 74%; }
.strategy-mockup__chart span:nth-child(5) { height: 88%; }

.strategy-mockup__roadmap {
	grid-column: span 2;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	padding: 14px;
}

.strategy-mockup__roadmap span {
	display: block;
	padding: 10px;
	background: rgba(244, 240, 232, 0.08);
	border-radius: 6px;
	color: rgba(244, 240, 232, 0.72);
	font-size: 0.78rem;
	font-weight: 700;
	text-align: center;
}

body.home .logos-bar,
body.home .services-section,
body.home .process-section,
body.home .testimonials-section {
	background: var(--color-ivory);
}

body.home .logos-bar__items span {
	background: rgba(255, 252, 246, 0.72);
	border-color: var(--color-border);
	color: rgba(11, 26, 38, 0.66);
}

body.home .services-section {
	padding-top: clamp(78px, 8vw, 112px);
}

body.home .service-card {
	position: relative;
	overflow: hidden;
	padding: clamp(26px, 3.5vw, 42px);
	background: var(--color-card);
	border: 1px solid var(--color-border);
	border-radius: 8px;
	box-shadow: 0 18px 42px rgba(11, 26, 38, 0.06);
}

body.home .service-card::after {
	position: absolute;
	right: 26px;
	bottom: 24px;
	color: var(--color-gold);
	content: "->";
	font-weight: 800;
	opacity: 0;
	transform: translateX(-8px);
	transition: opacity 180ms ease, transform 180ms ease;
}

body.home .service-card:hover::after {
	opacity: 1;
	transform: translateX(0);
}

body.home .service-card__number {
	margin-bottom: 26px;
	font-size: 2.45rem;
}

.service-card__best {
	margin-top: 22px;
	color: rgba(11, 26, 38, 0.64);
	font-size: 0.9rem;
}

.service-card__best span {
	display: block;
	margin-bottom: 4px;
	color: var(--color-gold-dark);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.service-card__link {
	display: inline-flex;
	margin-top: 16px;
	color: var(--color-gold-dark);
	font-weight: 800;
}

body.home .stats-bar {
	background:
		linear-gradient(90deg, rgba(205, 170, 69, 0.08), transparent 44%, rgba(244, 240, 232, 0.04)),
		var(--color-navy);
}

body.home .process-section {
	color: var(--color-navy);
}

body.home .process-steps {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

body.home .process-steps::before {
	display: none;
}

body.home .process-step {
	padding: 30px;
	background: var(--color-card);
	border: 1px solid var(--color-border);
	border-radius: 8px;
}

body.home .process-step span {
	width: auto;
	height: auto;
	margin-bottom: 28px;
	place-items: start;
	background: transparent;
	border: 0;
	border-radius: 0;
	color: var(--color-gold);
	font-size: 2.4rem;
}

body.home .process-step h3 {
	color: var(--color-navy);
}

body.home .process-step p {
	color: rgba(11, 26, 38, 0.62);
}

.featured-work-section {
	background: var(--color-navy);
}

.featured-project {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
	overflow: hidden;
	background: rgba(255, 252, 246, 0.06);
	border: 1px solid rgba(205, 170, 69, 0.28);
	border-radius: 8px;
}

.featured-project__preview {
	min-height: 460px;
	padding: 28px;
	background:
		linear-gradient(rgba(255, 252, 246, 0.055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 252, 246, 0.055) 1px, transparent 1px),
		var(--color-navy-soft);
	background-size: 36px 36px;
}

.project-preview {
	height: calc(100% - 44px);
	padding: 28px;
	background: var(--color-card);
	border-radius: 0 0 8px 8px;
}

.project-preview__hero {
	height: 150px;
	background: linear-gradient(135deg, #0b1a26 0 56%, #cdaa45 56% 100%);
	border-radius: 6px;
}

.project-preview__copy {
	display: grid;
	gap: 10px;
	margin: 24px 0;
}

.project-preview__copy span {
	height: 11px;
	background: rgba(11, 26, 38, 0.18);
	border-radius: 999px;
}

.project-preview__copy span:first-child {
	width: 62%;
	height: 22px;
	background: rgba(11, 26, 38, 0.82);
}

.project-preview__copy span:last-child {
	width: 72%;
}

.project-preview__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.project-preview__cards span {
	min-height: 74px;
	background: #f4f0e8;
	border: 1px solid var(--color-border);
	border-radius: 6px;
}

.featured-project__body {
	display: grid;
	align-content: center;
	padding: clamp(30px, 5vw, 54px);
}

.featured-project__body h3 {
	margin-bottom: 18px;
	color: var(--color-card);
	font-size: clamp(2rem, 3vw, 3.35rem);
}

.featured-project__body p:not(.eyebrow) {
	color: rgba(244, 240, 232, 0.72);
}

.featured-project .work-results {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.featured-project .work-results span {
	background: rgba(255, 252, 246, 0.08);
	border-color: rgba(205, 170, 69, 0.26);
	border-radius: 8px;
	color: rgba(244, 240, 232, 0.72);
}

body.home .testimonial-card {
	background: var(--color-card);
	border-color: var(--color-border);
	border-radius: 8px;
	box-shadow: 0 18px 42px rgba(11, 26, 38, 0.05);
}

body.home .rating {
	font-family: var(--font-heading);
	font-size: 3.2rem;
	line-height: 1;
	letter-spacing: 0;
}

body.home .cta-section {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(120deg, rgba(11, 26, 38, 0.95), rgba(11, 26, 38, 0.72)),
		var(--color-gold);
	text-align: left;
}

body.home .cta-section::after {
	position: absolute;
	right: 9%;
	bottom: -32px;
	width: 210px;
	height: 210px;
	background-image: radial-gradient(rgba(244, 240, 232, 0.32) 1px, transparent 1px);
	background-size: 16px 16px;
	content: "";
	opacity: 0.65;
}

body.home .cta-section__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 28px;
	align-items: center;
	max-width: var(--container);
}

body.home .cta-section h2 {
	color: var(--color-card);
	font-size: clamp(2.25rem, 4vw, 4rem);
}

body.home .cta-section p {
	margin: 14px 0 0;
	color: rgba(244, 240, 232, 0.74);
}

body.home .cta-section .button-row {
	justify-content: flex-end;
	margin-top: 0;
}

body.home .cta-section .button--ghost {
	color: var(--color-card);
}

@media (max-width: 900px) {
	body.home .hero__grid,
	.featured-project,
	body.home .cta-section__inner {
		grid-template-columns: 1fr;
	}

	body.home .hero__media {
		min-height: 460px;
	}

	body.home .process-steps,
	.featured-project .work-results {
		grid-template-columns: 1fr;
	}

	body.home .cta-section .button-row {
		justify-content: flex-start;
	}
}

@media (max-width: 640px) {
	body.home .hero h1 {
		font-size: 3.15rem;
	}

	body.home .hero__media,
	.strategy-mockup {
		min-height: 420px;
	}

	.strategy-mockup__grid {
		grid-template-columns: 1fr;
	}

	.strategy-mockup__preview,
	.strategy-mockup__chart,
	.strategy-mockup__roadmap {
		grid-column: auto;
	}

	.strategy-mockup__roadmap {
		grid-template-columns: 1fr;
	}

	.featured-project__preview {
		min-height: 360px;
		padding: 18px;
	}

	.project-preview__cards {
		grid-template-columns: 1fr;
	}
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--cream);
	color: var(--navy);
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
}

body.home .site-main {
	overflow: hidden;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

p {
	margin: 0 0 1rem;
	color: var(--muted);
}

h1,
h2,
h3,
h4 {
	margin: 0;
	color: var(--navy);
	font-family: var(--font-heading);
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: 0;
}

h1 {
	max-width: 860px;
	font-size: clamp(3.35rem, 7vw, 6.6rem);
}

h1 em {
	color: var(--gold);
	font-style: italic;
}

h2 {
	font-size: clamp(2.45rem, 5vw, 4.5rem);
}

h3 {
	font-size: 1.55rem;
}

.container {
	width: min(100% - 40px, var(--container));
	margin-inline: auto;
}

.wp-block-group.container,
.wp-block-columns.container {
	width: min(100% - 40px, var(--container));
	max-width: var(--container);
	margin-right: auto;
	margin-left: auto;
}

.wp-block-columns.service-page-hero__grid,
.wp-block-columns.work-hero__grid,
.wp-block-columns.hero__grid,
.wp-block-columns.contact-main__grid,
.wp-block-columns.about-mission__grid,
.wp-block-columns.work-featured-card,
.wp-block-columns.service-detail-card,
.wp-block-columns.booking-strip__grid {
	display: grid;
}

.wp-block-columns.service-page-hero__grid,
.wp-block-columns.work-hero__grid {
	grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
}

.wp-block-columns.hero__grid {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.wp-block-columns.service-detail-card {
	grid-template-columns: 90px minmax(0, 0.95fr) minmax(0, 1fr);
}

.wp-block-columns.work-featured-card {
	grid-template-columns: 1.05fr 0.95fr;
}

.wp-block-columns.contact-main__grid {
	grid-template-columns: minmax(0, 1.5fr) minmax(300px, 1fr);
}

.wp-block-columns.about-mission__grid {
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
}

.wp-block-columns.booking-strip__grid {
	grid-template-columns: minmax(0, 1fr) auto;
}

.wp-block-columns.card-grid,
.wp-block-columns.blog-grid,
.wp-block-columns.blog-topics-grid,
.wp-block-columns.work-grid,
.wp-block-columns.about-value-grid,
.wp-block-columns.about-team-grid {
	display: grid;
}

.wp-block-columns.card-grid--three,
.wp-block-columns.blog-grid,
.wp-block-columns.blog-topics-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wp-block-columns.work-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wp-block-columns.about-value-grid,
.wp-block-columns.about-team-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wp-block-column {
	min-width: 0;
}

.wp-block-group.alignfull,
.wp-block-cover.alignfull {
	width: 100%;
	max-width: none;
}

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--navy);
	border-bottom: 1px solid rgba(201, 168, 76, 0.28);
	transition: background 180ms ease, border-color 180ms ease;
}

.site-header__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 24px;
	width: min(100% - 40px, var(--container));
	min-height: 78px;
	margin-inline: auto;
}

.site-logo {
	color: var(--white);
	font-family: var(--font-heading);
	font-size: 1.55rem;
	line-height: 1;
}

.custom-logo-link {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	line-height: 1;
}

.custom-logo {
	display: block;
	width: auto;
	max-width: 190px;
	max-height: 44px;
	object-fit: contain;
}

.site-nav__list,
.footer-links {
	display: flex;
	gap: 28px;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav__list a {
	position: relative;
	color: var(--linen);
	font-size: 0.93rem;
	font-weight: 600;
	transition: color 160ms ease;
}

.site-nav__list a::after {
	position: absolute;
	right: 0;
	bottom: -7px;
	left: 0;
	height: 1px;
	background: var(--gold);
	content: "";
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 180ms ease;
}

.site-nav__list a:hover,
.site-nav__list .current-menu-item > a,
.site-nav__list .current_page_item > a,
.site-nav__list a[aria-current="page"],
.footer-links a:hover {
	color: var(--gold);
}

.site-nav__list a:hover::after,
.site-nav__list .current-menu-item > a::after,
.site-nav__list .current_page_item > a::after,
.site-nav__list a[aria-current="page"]::after {
	transform: scaleX(1);
}

.site-header__actions {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 12px;
}

.button,
.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 25px;
	border: 1px solid var(--gold);
	border-radius: 50px;
	font-family: var(--font-body);
	font-size: 0.94rem;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button--primary,
.wp-block-button__link {
	background: var(--gold);
	color: var(--navy);
}

.button--ghost,
.is-style-outline > .wp-block-button__link {
	background: transparent;
	color: var(--gold);
}

.button--dark {
	background: var(--navy);
	border-color: var(--navy);
	color: var(--white);
}

.button:hover,
.wp-block-button__link:hover {
	background: var(--white);
	border-color: var(--white);
	color: var(--navy);
	transform: translateY(-2px);
}

.button--dark:hover {
	background: var(--navy-dark);
	border-color: var(--navy-dark);
	color: var(--white);
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	padding: 0;
	background: transparent;
	border: 1px solid rgba(201, 168, 76, 0.52);
	border-radius: 50%;
}

.nav-toggle__bar {
	width: 18px;
	height: 2px;
	background: var(--gold);
}

.hero {
	padding: 92px 0 78px;
	background: var(--navy);
	color: var(--white);
}

.hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 58px;
	align-items: center;
}

.hero h1 {
	color: var(--white);
}

.hero__content p:not(.eyebrow) {
	max-width: 620px;
	color: var(--linen);
	font-size: 1.1rem;
}

.hero__content .eyebrow {
	animation: fade-up 700ms ease both;
}

.hero__content h1 {
	animation: fade-up 760ms ease 90ms both;
}

.hero__content p:not(.eyebrow) {
	animation: fade-up 760ms ease 170ms both;
}

.hero__content .button-row {
	animation: fade-up 760ms ease 250ms both;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 42px;
	padding-top: 28px;
	border-top: 1px solid rgba(201, 168, 76, 0.32);
}

.hero-stats strong {
	display: block;
	color: var(--gold);
	font-family: var(--font-heading);
	font-size: 2.15rem;
	font-weight: 700;
	line-height: 1;
}

.hero-stats span {
	display: block;
	margin-top: 8px;
	color: var(--linen);
	font-size: 0.84rem;
	font-weight: 500;
}

.eyebrow {
	margin-bottom: 18px;
	color: var(--gold);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.button-row--center {
	justify-content: center;
}

.hero__media {
	min-height: 545px;
	overflow: hidden;
	background: rgba(247, 244, 238, 0.08);
	border: 1px solid rgba(201, 168, 76, 0.38);
	border-radius: 18px;
	animation: media-rise 880ms ease 160ms both;
}

.hero__media img {
	width: 100%;
	height: 100%;
	min-height: 545px;
	object-fit: cover;
}

.media-placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	min-height: 545px;
	place-items: center;
	padding: 34px;
}

.media-placeholder__frame {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	width: min(370px, 100%);
}

.media-placeholder__frame span {
	display: block;
	min-height: 156px;
	background: rgba(247, 244, 238, 0.1);
	border: 1px solid rgba(201, 168, 76, 0.35);
	border-radius: 16px;
	animation: soft-pulse 2600ms ease-in-out infinite;
}

.media-placeholder__frame span:first-child {
	grid-column: span 2;
}

.media-placeholder__frame span:nth-child(2) {
	animation-delay: 180ms;
}

.media-placeholder__frame span:nth-child(3) {
	animation-delay: 360ms;
}

.logos-bar,
.services-section,
.testimonials-section,
.team-section {
	background: var(--cream);
}

.logos-bar {
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.logos-bar__inner {
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 25px 0;
}

.logos-bar__inner p {
	margin: 0;
	color: var(--navy);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.logos-bar__items {
	display: flex;
	flex: 1;
	flex-wrap: wrap;
	gap: 12px;
}

.logos-bar__items span {
	padding: 9px 17px;
	color: rgba(13, 27, 42, 0.62);
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 50px;
	font-size: 0.92rem;
	font-weight: 600;
	transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.logos-bar__items span:hover {
	border-color: var(--gold);
	color: var(--navy);
	transform: translateY(-2px);
}

.section,
.cta-section {
	padding: 92px 0;
}

.section-heading {
	max-width: 780px;
	margin-bottom: 40px;
}

.section-heading p:not(.eyebrow) {
	max-width: 640px;
	font-size: 1.05rem;
}

.section-heading--dark h2 {
	color: var(--white);
}

.section-heading--dark p:not(.eyebrow) {
	color: var(--linen);
}

.card-grid {
	display: grid;
	gap: 22px;
}

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

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

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

.service-card,
.testimonial-card,
.team-card,
.post-card,
.contact-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 16px;
	transition: border-color 180ms ease, transform 180ms ease;
}

.service-card:hover,
.testimonial-card:hover,
.team-card:hover,
.post-card:hover,
.contact-card:hover {
	border-color: var(--gold);
	transform: translateY(-5px);
}

.service-card {
	padding: 30px;
	border-top: 4px solid var(--gold);
}

.service-card__number {
	display: block;
	margin-bottom: 34px;
	color: var(--gold);
	font-family: var(--font-heading);
	font-size: 3.15rem;
	font-weight: 700;
	line-height: 1;
}

.service-card h3 {
	margin-bottom: 12px;
}

.stats-bar,
.process-section {
	background: var(--navy);
	color: var(--white);
}

.stats-bar {
	padding: 58px 0;
}

.stats-bar__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat {
	padding: 8px 28px;
	border-left: 1px solid rgba(201, 168, 76, 0.32);
}

.stat:first-child {
	padding-left: 0;
	border-left: 0;
}

.stat strong {
	display: block;
	margin-bottom: 8px;
	color: var(--gold);
	font-family: var(--font-heading);
	font-size: clamp(2.4rem, 5vw, 4.2rem);
	font-weight: 700;
	line-height: 1;
	animation: number-settle 900ms ease both;
}

.stat span {
	display: block;
	max-width: 220px;
	color: var(--linen);
	font-size: 0.95rem;
	font-weight: 500;
}

.testimonial-card {
	padding: 34px;
}

.rating {
	margin-bottom: 18px;
	color: var(--gold);
	letter-spacing: 0.12em;
}

.person-line {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 28px;
}

.person-line strong,
.person-line em {
	display: block;
}

.person-line em {
	color: var(--muted);
	font-size: 0.88rem;
	font-style: normal;
	font-weight: 500;
}

.avatar {
	display: inline-grid;
	width: 44px;
	height: 44px;
	flex: 0 0 auto;
	place-items: center;
	background: var(--navy);
	border: 1px solid var(--gold);
	border-radius: 50%;
	color: var(--gold);
	font-size: 0.8rem;
	font-weight: 600;
	transition: transform 180ms ease;
}

.avatar--large {
	width: 82px;
	height: 82px;
	background: rgba(201, 168, 76, 0.12);
	font-size: 1rem;
}

.testimonial-card:hover .avatar,
.team-card:hover .avatar {
	transform: scale(1.06);
}

.process-steps {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px;
}

.process-steps::before {
	position: absolute;
	top: 31px;
	right: 10%;
	left: 10%;
	height: 1px;
	background: var(--gold);
	content: "";
}

.process-step {
	position: relative;
	z-index: 1;
}

.process-step span {
	display: grid;
	width: 62px;
	height: 62px;
	place-items: center;
	margin-bottom: 28px;
	background: var(--navy);
	border: 1px solid var(--gold);
	border-radius: 50%;
	color: var(--gold);
	font-family: var(--font-heading);
	font-size: 1.2rem;
	font-weight: 700;
}

.process-step h3 {
	margin-bottom: 12px;
	color: var(--white);
}

.process-step p {
	color: var(--linen);
	font-size: 0.95rem;
}

.team-card {
	overflow: hidden;
}

.team-card__media {
	display: grid;
	min-height: 190px;
	place-items: center;
	background: var(--navy);
}

.team-card__photo {
	width: 100%;
	height: 100%;
	min-height: 190px;
	object-fit: cover;
	transition: transform 180ms ease;
}

.team-card:hover .team-card__photo {
	transform: scale(1.04);
}

.team-card__body {
	padding: 24px;
}

.team-card p {
	margin-bottom: 18px;
}

.team-socials {
	display: flex;
	gap: 9px;
}

.team-socials span {
	display: grid;
	width: 30px;
	height: 30px;
	place-items: center;
	border: 1px solid var(--border);
	border-radius: 50%;
	color: var(--navy);
	font-size: 0.78rem;
	font-weight: 600;
	text-transform: uppercase;
}

.cta-section {
	background: var(--gold);
	text-align: center;
}

.cta-section__inner {
	max-width: 780px;
}

.cta-section h2 {
	color: var(--navy);
}

.cta-section p {
	max-width: 620px;
	margin: 18px auto 0;
	color: rgba(13, 27, 42, 0.72);
	font-size: 1.05rem;
	font-weight: 500;
}

.site-footer {
	background: var(--navy-dark);
	color: var(--linen);
	border-top: 1px solid rgba(201, 168, 76, 0.28);
}

.site-footer .site-logo {
	color: var(--white);
}

.site-footer .custom-logo {
	max-width: 170px;
	max-height: 42px;
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
	width: min(100% - 40px, var(--container));
	margin-inline: auto;
	padding: 60px 0;
}

.site-footer h2 {
	margin-bottom: 16px;
	color: var(--gold);
	font-family: var(--font-body);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.site-footer p {
	color: var(--linen);
}

.footer-links {
	display: grid;
	gap: 9px;
}

.footer-links a {
	color: var(--linen);
}

.footer-contact-links {
	margin-top: 9px;
}

.footer-social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	margin-top: 18px;
}

.footer-social-links a {
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	color: var(--gold);
	border: 1px solid rgba(201, 168, 76, 0.38);
	border-radius: 50%;
	transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.footer-social-links a:hover {
	background: var(--gold);
	color: var(--navy);
	transform: translateY(-2px);
}

.footer-social-links svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
}

.footer-social-links svg.is-filled,
.footer-social-links .is-filled {
	fill: currentColor;
	stroke: none;
}

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	width: min(100% - 40px, var(--container));
	margin-inline: auto;
	padding: 22px 0;
	border-top: 1px solid rgba(201, 168, 76, 0.18);
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__legal {
	display: flex;
	gap: 18px;
}

.page-hero {
	padding: 84px 0 54px;
	background: var(--navy);
	border-bottom: 1px solid rgba(201, 168, 76, 0.28);
}

.page-hero h1 {
	color: var(--white);
}

.page-hero p:not(.eyebrow) {
	max-width: 680px;
	color: var(--linen);
	font-size: 1.08rem;
}

.service-page-hero {
	padding: 92px 0 78px;
	background: var(--navy);
	border-bottom: 1px solid rgba(201, 168, 76, 0.28);
}

.service-page-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
	gap: 56px;
	align-items: end;
}

.service-page-hero h1 {
	color: var(--white);
}

.service-page-hero__aside {
	padding: 28px;
	background: rgba(247, 244, 238, 0.08);
	border: 1px solid rgba(201, 168, 76, 0.32);
	border-radius: 18px;
}

.service-page-hero__aside p {
	color: var(--linen);
	font-size: 1.04rem;
}

.services-intro {
	padding: 76px 0;
	background: var(--cream);
	border-bottom: 1px solid var(--border);
}

.services-intro__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
	gap: 48px;
	align-items: end;
}

.service-detail-section,
.outcomes-section,
.service-faq-section {
	background: var(--cream);
}

.service-detail-list {
	display: grid;
	gap: 24px;
	padding: 82px 0;
}

.service-detail-card {
	display: grid;
	grid-template-columns: 90px minmax(0, 0.95fr) minmax(0, 1fr);
	gap: 34px;
	padding: 34px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 18px;
	transition: border-color 180ms ease, transform 180ms ease;
}

.service-detail-card:hover {
	border-color: var(--gold);
	transform: translateY(-4px);
}

.service-detail-card__number {
	color: var(--gold);
	font-family: var(--font-heading);
	font-size: 3.6rem;
	font-weight: 700;
	line-height: 1;
}

.service-detail-card h2 {
	font-size: clamp(2rem, 3vw, 3.2rem);
}

.check-list {
	display: grid;
	gap: 10px;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 28px;
	color: var(--navy);
	font-weight: 600;
}

.check-list li::before {
	position: absolute;
	top: 0.78em;
	left: 0;
	width: 13px;
	height: 1px;
	background: var(--gold);
	content: "";
}

.outcomes-section__grid,
.service-faq-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: 48px;
	align-items: start;
}

.outcome-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.outcome-item {
	padding: 18px 20px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 50px;
	color: var(--navy);
	font-weight: 600;
}

.faq-list {
	display: grid;
	gap: 16px;
}

.faq-item {
	padding: 26px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 16px;
}

.faq-item h3 {
	margin-bottom: 10px;
	font-size: 1.35rem;
}

.faq-item p {
	margin-bottom: 0;
}

.about-hero {
	padding: 96px 0 86px;
	background: var(--navy);
	border-bottom: 1px solid rgba(201, 168, 76, 0.28);
}

.about-hero__inner {
	max-width: 940px;
}

.about-hero h1 {
	color: var(--white);
}

.about-hero p:not(.eyebrow) {
	max-width: 720px;
	margin-top: 24px;
	color: var(--linen);
	font-size: 1.08rem;
}

.trust-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.trust-badges span {
	padding: 10px 18px;
	color: var(--gold);
	border: 1px solid rgba(201, 168, 76, 0.45);
	border-radius: 50px;
	font-weight: 600;
}

.trust-badges p {
	margin: 0;
	color: var(--gold);
}

.about-mission,
.about-team,
.about-awards {
	background: var(--cream);
}

.about-mission {
	padding: 92px 0;
}

.about-mission__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
	gap: 58px;
	align-items: center;
}

.mission-quote {
	margin: 0;
	padding: 34px;
	background: transparent;
	border: 1px solid var(--border);
	border-left: 5px solid var(--gold);
	border-radius: 18px;
}

.mission-quote blockquote {
	margin: 0;
	color: var(--navy);
	font-family: var(--font-heading);
	font-size: clamp(1.85rem, 3vw, 2.75rem);
	font-style: italic;
	line-height: 1.15;
}

.mission-quote figcaption {
	margin-top: 22px;
	color: var(--muted);
	font-weight: 600;
}

.mission-quote cite {
	display: block;
	margin-top: 22px;
	color: var(--muted);
	font-family: var(--font-body);
	font-size: 1rem;
	font-style: normal;
	font-weight: 600;
}

.about-values {
	padding: 92px 0;
	background: var(--white);
}

.section-heading--center {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.about-value-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.about-value-card {
	padding: 28px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 18px;
	transition: border-color 180ms ease, transform 180ms ease;
}

.about-value-card:hover {
	border-color: var(--gold);
	transform: translateY(-4px);
}

.about-value-card span,
.about-value-card > p:first-child {
	display: block;
	margin-bottom: 30px;
	color: var(--gold);
	font-family: var(--font-heading);
	font-size: 2.35rem;
	font-weight: 700;
	line-height: 1;
}

.about-value-card h3 {
	margin-bottom: 12px;
}

.about-team {
	padding: 92px 0;
}

.about-team-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.about-team-card {
	overflow: hidden;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 18px;
	transition: border-color 180ms ease, transform 180ms ease;
}

.about-team-card:hover {
	border-color: var(--gold);
	transform: translateY(-5px);
}

.about-team-card__media {
	display: grid;
	min-height: 220px;
	place-items: center;
	background: var(--navy);
}

.about-team-card__photo {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.about-team-card__body {
	padding: 24px;
}

.about-team-card__role {
	margin: 4px 0 12px;
	color: var(--gold);
	font-weight: 600;
}

.linkedin-link {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	margin-top: 18px;
	background: var(--navy);
	border: 1px solid var(--navy);
	border-radius: 50%;
	color: var(--gold);
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
	transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.linkedin-link:hover {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--navy);
	transform: translateY(-2px);
}

.about-timeline {
	padding: 92px 0;
	background: var(--navy);
}

.timeline-list {
	position: relative;
	display: grid;
	gap: 28px;
	margin-top: 18px;
}

.timeline-list::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 1px;
	background-image: linear-gradient(var(--gold) 55%, transparent 0);
	background-position: right;
	background-size: 1px 14px;
	background-repeat: repeat-y;
	content: "";
}

.timeline-item {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 60px;
}

.timeline-item::before {
	position: absolute;
	top: 28px;
	left: calc(50% - 8px);
	width: 16px;
	height: 16px;
	background: var(--gold);
	border-radius: 50%;
	content: "";
}

.timeline-item:nth-child(even) .timeline-card {
	grid-column: 2;
}

.timeline-card {
	padding: 28px;
	background: rgba(247, 244, 238, 0.08);
	border: 1px solid rgba(201, 168, 76, 0.32);
	border-radius: 18px;
}

.timeline-card span,
.timeline-card > p:first-child {
	display: block;
	margin-bottom: 12px;
	color: var(--gold);
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
}

.timeline-card h3 {
	margin-bottom: 10px;
	color: var(--white);
}

.timeline-card p {
	margin-bottom: 0;
	color: var(--linen);
}

.about-awards {
	padding: 92px 0;
}

.award-chip-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.award-chip {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 11px 16px 11px 12px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 50px;
}

.award-chip span {
	display: grid;
	width: 30px;
	height: 30px;
	place-items: center;
	background: rgba(201, 168, 76, 0.14);
	border: 1px solid rgba(201, 168, 76, 0.45);
	border-radius: 50%;
	color: var(--gold);
	font-weight: 700;
}

.award-chip strong {
	color: var(--navy);
	font-size: 0.92rem;
	font-weight: 600;
}

.award-chip em {
	color: var(--muted);
	font-size: 0.88rem;
	font-style: normal;
	font-weight: 600;
}

.about-cta {
	padding: 84px 0;
	background: var(--gold);
	text-align: center;
}

.about-cta__inner {
	max-width: 760px;
}

.about-cta h2 {
	color: var(--navy);
}

.about-cta p {
	max-width: 600px;
	margin: 18px auto 28px;
	color: rgba(13, 27, 42, 0.72);
	font-weight: 500;
}

.contact-hero {
	padding: 96px 0 84px;
	background: var(--navy);
	border-bottom: 1px solid rgba(201, 168, 76, 0.28);
}

.contact-hero__inner {
	max-width: 980px;
}

.contact-hero h1 {
	color: var(--white);
}

.contact-hero p:not(.eyebrow) {
	max-width: 700px;
	margin-top: 24px;
	color: var(--linen);
	font-size: 1.08rem;
}

.contact-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.contact-trust span,
.contact-lines li {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.contact-trust span {
	padding: 10px 16px;
	color: var(--gold);
	border: 1px solid rgba(201, 168, 76, 0.45);
	border-radius: 50px;
	font-size: 0.9rem;
	font-weight: 600;
}

.contact-trust svg,
.contact-lines svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.contact-main,
.contact-faq {
	background: var(--cream);
}

.contact-main {
	padding: 92px 0;
}

.contact-main__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(300px, 1fr);
	gap: 34px;
	align-items: start;
}

.contact-form-card,
.contact-detail-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 18px;
}

.contact-form-card {
	padding: 32px;
	border-top: 5px solid var(--gold);
}

.contact-form-card h2 {
	margin-bottom: 26px;
	font-size: clamp(2rem, 3vw, 3.2rem);
}

.contact-success-banner {
	display: none;
	margin-bottom: 22px;
	padding: 14px 16px;
	background: var(--gold);
	border-radius: 8px;
	color: var(--navy);
	font-size: 0.92rem;
	font-weight: 700;
}

.contact-success-banner.is-visible {
	display: block;
}

.cf7-missing {
	margin-bottom: 22px;
	padding: 16px;
	background: var(--cream);
	border: 1px solid var(--border);
	border-radius: 10px;
}

.cf7-missing p {
	margin-bottom: 8px;
	font-size: 0.92rem;
}

.wpcf7-form {
	display: grid;
	gap: 16px;
}

.wpcf7-form p {
	margin: 0;
}

.form-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.wpcf7-form label,
.form-field label {
	display: grid;
	gap: 8px;
	color: var(--gold);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.wpcf7-form input:not([type="submit"]),
.wpcf7-form select,
.wpcf7-form textarea,
.form-field input,
.form-field select,
.form-field textarea {
	width: 100%;
	padding: 12px 14px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 4px;
	color: var(--navy);
	font-family: var(--font-body);
	font-size: 13px;
	line-height: 1.5;
	outline: none;
	transition: border-color 160ms ease;
}

.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	border-color: var(--gold);
}

.wpcf7-form textarea {
	min-height: 150px;
	resize: vertical;
}

.wpcf7-form input[type="submit"],
.wpcf7-form button,
.acme-demo-form button {
	width: 100%;
	min-height: 50px;
	background: var(--gold);
	border: 1px solid var(--gold);
	border-radius: 50px;
	color: var(--navy);
	cursor: pointer;
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 700;
	transition: background 160ms ease, transform 160ms ease;
}

.wpcf7-form input[type="submit"]:hover,
.wpcf7-form button:hover {
	background: #d8b95e;
	transform: translateY(-2px);
}

.wpcf7-spinner,
.wpcf7-not-valid-tip {
	margin-top: 6px;
	font-size: 0.78rem;
}

.wpcf7-response-output {
	margin: 16px 0 0 !important;
	padding: 12px 14px !important;
	border: 1px solid var(--gold) !important;
	border-radius: 8px;
	color: var(--navy);
	font-size: 0.9rem;
}

.acme-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.contact-details-stack {
	display: grid;
	gap: 18px;
}

.contact-detail-card {
	padding: 26px;
}

.contact-detail-card address {
	color: var(--navy);
	font-style: normal;
	font-weight: 600;
	line-height: 1.75;
}

.map-placeholder {
	display: grid;
	height: 160px;
	place-items: center;
	margin-top: 22px;
	background: #ece7dd;
	border: 1px solid var(--border);
	border-radius: 12px;
	color: var(--muted);
	font-size: 0.9rem;
	font-weight: 700;
}

.contact-lines {
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.contact-lines li {
	color: var(--navy);
	font-weight: 600;
}

.contact-lines svg {
	color: var(--gold);
}

.social-icon-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.social-icon-row a {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	background: var(--navy);
	border-radius: 8px;
	color: var(--white);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
	transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.social-icon-row a:hover {
	background: var(--gold);
	color: var(--navy);
	transform: translateY(-2px);
}

.booking-strip {
	padding: 64px 0;
	background: var(--navy);
}

.booking-strip__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 28px;
	align-items: center;
}

.booking-strip h2 {
	color: var(--white);
}

.booking-strip p {
	max-width: 640px;
	margin: 14px 0 0;
	color: var(--linen);
}

.booking-strip__button {
	min-width: 190px;
}

.contact-faq {
	padding: 92px 0;
}

.contact-faq__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
	gap: 52px;
	align-items: start;
}

.contact-accordion {
	display: grid;
}

.contact-accordion details {
	border-bottom: 1px solid var(--border);
}

.contact-accordion summary {
	position: relative;
	display: block;
	padding: 22px 42px 22px 0;
	color: var(--navy);
	cursor: pointer;
	font-weight: 600;
	list-style: none;
}

.contact-accordion summary::-webkit-details-marker {
	display: none;
}

.contact-accordion summary::after {
	position: absolute;
	top: 22px;
	right: 0;
	color: var(--gold);
	content: "+";
	font-size: 1.4rem;
	line-height: 1;
}

.contact-accordion details[open] summary::after {
	content: "-";
}

.contact-accordion p {
	max-width: 720px;
	margin: -4px 0 22px;
}

.contact-guide-cta {
	padding: 84px 0;
	background: var(--gold);
	text-align: center;
}

.contact-guide-cta__inner {
	max-width: 760px;
}

.contact-guide-cta h2 {
	color: var(--navy);
}

.contact-guide-cta p {
	max-width: 620px;
	margin: 18px auto 28px;
	color: rgba(13, 27, 42, 0.72);
	font-weight: 500;
}

.blog-archive-hero,
.single-blog-hero {
	padding: 96px 0 82px;
	background: var(--navy);
	border-bottom: 1px solid rgba(201, 168, 76, 0.28);
}

.blog-archive-hero h1,
.single-blog-hero h1 {
	color: var(--white);
}

.blog-archive-hero p:not(.eyebrow),
.single-blog-hero p {
	max-width: 700px;
	margin-top: 22px;
	color: var(--linen);
	font-size: 1.08rem;
}

.blog-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 30px;
}

.blog-filter button,
.share-row a,
.share-row button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 16px;
	background: transparent;
	border: 1px solid var(--gold);
	border-radius: 50px;
	color: var(--gold);
	cursor: pointer;
	font-family: var(--font-body);
	font-size: 0.86rem;
	font-weight: 700;
}

.blog-filter button.is-active,
.blog-filter button:hover {
	background: var(--gold);
	color: var(--navy);
}

.featured-post-section,
.blog-grid-section,
.blog-topics-section,
.single-content-section,
.post-tags-row {
	background: var(--cream);
}

.featured-post-section {
	padding: 76px 0 36px;
}

.featured-post-card {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	overflow: hidden;
	background: var(--white);
	border: 1px solid var(--border);
	border-left: 4px solid var(--gold);
	border-radius: 16px;
}

.featured-post-card__media img,
.featured-post-card__media .blog-image-placeholder {
	width: 100%;
	height: 100%;
	min-height: 360px;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.blog-image-placeholder {
	display: grid;
	place-items: center;
	background: var(--navy);
	color: var(--gold);
	font-family: var(--font-heading);
	font-size: 2rem;
}

.featured-post-card__body {
	display: grid;
	align-content: center;
	padding: 34px;
}

.blog-category-badge {
	display: inline-flex;
	width: fit-content;
	margin-bottom: 16px;
	padding: 7px 12px;
	background: rgba(201, 168, 76, 0.14);
	border: 1px solid rgba(201, 168, 76, 0.42);
	border-radius: 50px;
	color: var(--gold);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.featured-post-card h2 {
	margin-bottom: 14px;
	font-size: 26px;
}

.blog-card__footer,
.single-blog-meta {
	display: flex;
	align-items: center;
	gap: 11px;
}

.blog-card__footer {
	padding-top: 18px;
	border-top: 1px solid var(--border);
}

.blog-card__footer strong,
.blog-card__footer em {
	display: block;
}

.blog-card__footer strong {
	color: var(--navy);
	font-size: 0.86rem;
}

.blog-card__footer em {
	color: var(--muted);
	font-size: 0.78rem;
	font-style: normal;
	font-weight: 600;
}

.blog-avatar {
	display: inline-grid;
	width: 38px;
	height: 38px;
	flex: 0 0 auto;
	place-items: center;
	background: var(--navy);
	border: 1px solid var(--gold);
	border-radius: 50%;
	color: var(--gold);
	font-size: 0.74rem;
	font-weight: 800;
}

.blog-avatar--gold {
	background: var(--gold);
	color: var(--navy);
}

.blog-avatar--large {
	width: 74px;
	height: 74px;
	font-size: 1rem;
}

.blog-read-link {
	display: inline-flex;
	width: fit-content;
	margin-top: 18px;
	color: var(--gold);
	font-weight: 800;
}

.blog-grid-section {
	padding: 46px 0 76px;
}

.blog-section-title {
	margin-bottom: 28px;
	font-size: 2rem;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.blog-card {
	overflow: hidden;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 6px;
	transition: border-color 180ms ease, transform 180ms ease;
}

.blog-card:hover {
	border-color: var(--gold);
	transform: translateY(-5px);
}

.blog-card.is-hidden {
	display: none;
}

.blog-card__media {
	position: relative;
	display: block;
}

.blog-card__media img,
.blog-card__media .blog-image-placeholder {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.blog-card__media .blog-category-badge {
	position: absolute;
	bottom: 12px;
	left: 12px;
	margin: 0;
	background: var(--gold);
	color: var(--navy);
}

.blog-card__body {
	padding: 20px;
}

.blog-card__category {
	margin-bottom: 8px;
	color: var(--gold);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.blog-card h3 {
	display: -webkit-box;
	min-height: 2.5em;
	margin-bottom: 10px;
	overflow: hidden;
	font-size: 15px;
	line-height: 1.25;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.blog-card__excerpt {
	display: -webkit-box;
	min-height: 3.2em;
	overflow: hidden;
	font-size: 0.9rem;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.blog-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin-top: 42px;
}

.blog-pagination .page-numbers {
	display: inline-flex;
	min-width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	border: 1px solid var(--border);
	border-radius: 50px;
	color: var(--navy);
	font-weight: 700;
}

.blog-pagination .current {
	background: var(--gold);
	border-color: var(--gold);
}

.blog-topics-section {
	padding: 0 0 92px;
}

.blog-topics-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.blog-newsletter-card,
.topic-cloud-card,
.blog-team-card,
.sidebar-card {
	padding: 28px;
	border-radius: 16px;
}

.blog-newsletter-card,
.sidebar-newsletter {
	background: var(--navy);
	color: var(--white);
}

.blog-newsletter-card h2,
.sidebar-newsletter h2 {
	color: var(--white);
	font-size: 2rem;
}

.blog-newsletter-card p,
.sidebar-newsletter p {
	color: var(--linen);
}

.blog-newsletter-card form,
.sidebar-newsletter form {
	display: grid;
	gap: 10px;
}

.blog-newsletter-card input,
.sidebar-newsletter input {
	width: 100%;
	padding: 12px 14px;
	background: var(--cream);
	border: 1px solid rgba(201, 168, 76, 0.35);
	border-radius: 4px;
	font-family: var(--font-body);
	font-size: 13px;
}

.blog-newsletter-card button,
.sidebar-newsletter button {
	min-height: 44px;
	background: var(--gold);
	border: 1px solid var(--gold);
	border-radius: 50px;
	color: var(--navy);
	font-weight: 800;
}

.blog-newsletter-card small {
	display: block;
	margin-top: 14px;
	color: var(--linen);
}

.topic-cloud-card,
.blog-team-card,
.sidebar-card {
	background: var(--white);
	border: 1px solid var(--border);
}

.topic-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.topic-cloud a,
.post-tags-row a {
	display: inline-flex;
	padding: 8px 13px;
	border: 1px solid var(--gold);
	border-radius: 50px;
	color: var(--gold);
	font-size: 0.82rem;
	font-weight: 800;
}

.topic-cloud a:hover,
.post-tags-row a:hover {
	background: var(--gold);
	color: var(--navy);
}

.blog-team-card__logo {
	margin-bottom: 16px;
	color: var(--navy);
	font-family: var(--font-heading);
	font-size: 1.8rem;
}

.single-blog-hero__inner {
	max-width: 960px;
}

.single-blog-meta {
	flex-wrap: wrap;
	margin-top: 26px;
	color: var(--linen);
	font-weight: 600;
}

.single-blog-meta strong {
	color: var(--white);
}

.share-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 26px;
}

.single-breadcrumbs {
	padding: 14px 0;
	background: var(--cream);
	border-bottom: 1px solid var(--border);
}

.single-breadcrumbs .container {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	color: var(--muted);
	font-size: 0.86rem;
	font-weight: 700;
}

.single-breadcrumbs a {
	color: var(--gold);
}

.single-featured-image img,
.single-featured-placeholder {
	width: 100%;
	max-height: 420px;
	object-fit: cover;
}

.single-featured-placeholder {
	display: grid;
	height: 420px;
	place-items: center;
	background: var(--navy);
	color: var(--gold);
	font-family: var(--font-heading);
	font-size: 3rem;
}

.single-content-section {
	padding: 76px 0;
}

.single-content-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
	gap: 52px;
	align-items: start;
}

.post-content {
	color: #3d3227;
	font-size: 15px;
	line-height: 1.8;
}

.post-content p {
	color: #3d3227;
	font-size: 15px;
	line-height: 1.8;
}

.post-content h2 {
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	color: var(--navy);
	font-size: 22px;
}

.post-content h3 {
	margin-top: 2rem;
	margin-bottom: 0.8rem;
	color: var(--navy);
	font-size: 18px;
}

.post-content blockquote {
	margin: 2rem 0;
	padding: 20px 24px;
	background: var(--cream);
	border-left: 4px solid var(--gold);
	border-radius: 0 6px 6px 0;
	color: var(--navy);
	font-family: var(--font-heading);
	font-size: 1.45rem;
	font-style: italic;
	line-height: 1.4;
}

.post-content ul,
.post-content ol {
	padding-left: 1.35rem;
}

.post-content li::marker {
	color: var(--gold);
}

.post-content a {
	color: var(--gold);
}

.post-content a:hover {
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.post-content img {
	width: 100%;
	border-radius: 6px;
}

.post-content figcaption {
	margin-top: 8px;
	color: var(--muted);
	font-size: 0.82rem;
	font-style: italic;
}

.post-content pre {
	overflow-x: auto;
	padding: 18px;
	background: var(--navy);
	border-radius: 6px;
	color: var(--cream);
}

.post-content code {
	font-family: Consolas, Monaco, monospace;
}

.post-content hr {
	margin: 40px 0;
	border: 0;
	border-top: 1px solid var(--gold);
}

.author-bio-box {
	display: flex;
	gap: 20px;
	margin-top: 54px;
	padding: 28px;
	background: var(--white);
	border: 1px solid var(--border);
	border-top: 3px solid var(--gold);
	border-radius: 16px;
}

.author-bio-box h2 {
	font-size: 2rem;
}

.author-bio-box__role {
	margin: 4px 0 10px;
	color: var(--gold);
	font-weight: 800;
}

.single-sidebar {
	position: sticky;
	top: 100px;
	display: grid;
	gap: 18px;
}

.toc-card ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.toc-card a {
	position: relative;
	display: block;
	padding-left: 18px;
	color: var(--muted);
	font-size: 0.9rem;
	font-weight: 700;
}

.toc-card a::before {
	position: absolute;
	top: 0.65em;
	left: 0;
	width: 6px;
	height: 6px;
	background: var(--gold);
	border-radius: 50%;
	content: "";
}

.toc-card a.is-active,
.toc-card a:hover {
	color: var(--gold);
}

.related-mini-post {
	display: grid;
	grid-template-columns: 60px 1fr;
	gap: 12px;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid var(--border);
}

.related-mini-post img,
.related-mini-post > span:first-child {
	width: 60px;
	height: 60px;
	background: var(--navy);
	border-radius: 10px;
	object-fit: cover;
}

.related-mini-post strong,
.related-mini-post em {
	display: block;
}

.related-mini-post strong {
	color: var(--navy);
	font-size: 0.88rem;
	line-height: 1.35;
}

.related-mini-post em {
	color: var(--muted);
	font-size: 0.78rem;
	font-style: normal;
	font-weight: 700;
}

.post-tags-row {
	padding: 0 0 64px;
}

.post-tags-row .container {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.post-tags-row span {
	color: var(--muted);
	font-weight: 700;
}

.related-grid-section {
	padding: 84px 0;
	background: var(--white);
}

.single-post-cta {
	padding: 84px 0;
	background: var(--gold);
	text-align: center;
}

.single-post-cta__inner {
	max-width: 760px;
}

.single-post-cta h2 {
	color: var(--navy);
}

.single-post-cta p {
	max-width: 620px;
	margin: 18px auto 28px;
	color: rgba(13, 27, 42, 0.72);
	font-weight: 600;
}

.work-hero {
	padding: 96px 0 82px;
	background: var(--navy);
	border-bottom: 1px solid rgba(201, 168, 76, 0.28);
}

.work-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
	gap: 56px;
	align-items: end;
}

.work-hero h1 {
	color: var(--white);
}

.work-hero__aside {
	padding: 28px;
	background: rgba(247, 244, 238, 0.08);
	border: 1px solid rgba(201, 168, 76, 0.32);
	border-radius: 18px;
}

.work-hero__aside p {
	color: var(--linen);
	font-size: 1.05rem;
}

.work-featured,
.work-grid-section {
	background: var(--cream);
}

.work-featured {
	padding: 82px 0 38px;
}

.work-featured-card {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	overflow: hidden;
	background: var(--white);
	border: 1px solid var(--border);
	border-left: 5px solid var(--gold);
	border-radius: 18px;
}

.work-featured-card__media {
	display: grid;
	min-height: 420px;
	place-items: center;
	background: var(--navy);
}

.work-featured-card__media span {
	color: var(--gold);
	font-family: var(--font-heading);
	font-size: clamp(2.4rem, 5vw, 4.6rem);
	font-style: italic;
	line-height: 1;
}

.work-featured-card__body {
	display: grid;
	align-content: center;
	padding: 42px;
}

.work-featured-card__body h2 {
	margin-bottom: 16px;
	font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.work-results {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-top: 24px;
}

.work-results span {
	padding: 18px;
	background: var(--cream);
	border: 1px solid var(--border);
	border-radius: 14px;
	color: var(--muted);
	font-weight: 700;
}

.work-results strong {
	display: block;
	margin-bottom: 6px;
	color: var(--gold);
	font-family: var(--font-heading);
	font-size: 2.35rem;
	line-height: 1;
}

.work-grid-section {
	padding: 54px 0 92px;
}

.work-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.work-card {
	overflow: hidden;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 18px;
	transition: border-color 180ms ease, transform 180ms ease;
}

.work-card:hover {
	border-color: var(--gold);
	transform: translateY(-5px);
}

.work-card__media {
	display: grid;
	min-height: 260px;
	place-items: center;
	background: var(--navy);
}

.work-card__media img {
	width: 100%;
	height: 260px;
	object-fit: cover;
}

.work-card__media span {
	display: grid;
	width: 86px;
	height: 86px;
	place-items: center;
	border: 1px solid var(--gold);
	border-radius: 50%;
	color: var(--gold);
	font-family: var(--font-heading);
	font-size: 1.45rem;
}

.work-card__body {
	padding: 28px;
}

.work-card h3 {
	margin-bottom: 12px;
	font-size: clamp(1.55rem, 2vw, 2.2rem);
}

.work-card__result {
	display: inline-flex;
	margin-top: 12px;
	color: var(--gold);
	font-size: 0.95rem;
}

.work-proof {
	padding: 84px 0;
	background: var(--navy);
}

.work-proof__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 48px;
	align-items: center;
}

.work-proof h2 {
	color: var(--white);
}

.work-proof-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.work-proof-list span {
	padding: 18px;
	background: rgba(247, 244, 238, 0.08);
	border: 1px solid rgba(201, 168, 76, 0.3);
	border-radius: 50px;
	color: var(--linen);
	font-weight: 700;
}

.work-cta {
	padding: 84px 0;
	background: var(--gold);
	text-align: center;
}

.work-cta__inner {
	max-width: 760px;
}

.work-cta h2 {
	color: var(--navy);
}

.work-cta p {
	max-width: 620px;
	margin: 18px auto 28px;
	color: rgba(13, 27, 42, 0.72);
	font-weight: 600;
}

.entry-content {
	max-width: 760px;
}

.page-editor-section {
	padding: 56px 0;
	background: var(--cream);
	border-bottom: 1px solid var(--border);
}

.page-editor-section .entry-content > *:last-child {
	margin-bottom: 0;
}

.entry-content a {
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.post-card {
	overflow: hidden;
	background: var(--white);
}

.post-card a {
	display: block;
	height: 100%;
}

.post-card img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-bottom: 1px solid var(--border);
}

.post-card h2,
.post-card p {
	padding-inline: 22px;
}

.post-card h2 {
	margin-bottom: 8px;
	font-size: 1.7rem;
}

.post-card p:last-child {
	padding-bottom: 22px;
}

.post-card__meta {
	margin: 22px 0 8px;
	font-size: 0.82rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.single-post__media {
	margin-top: 48px;
}

.single-post__media img {
	width: 100%;
	max-height: 620px;
	object-fit: cover;
	border-radius: 16px;
}

.single-post .entry-content {
	padding: 60px 0 88px;
}

.contact-layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
	gap: 32px;
	align-items: start;
}

.contact-card {
	padding: 28px;
}

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 700ms ease var(--reveal-delay, 0ms), transform 700ms ease var(--reveal-delay, 0ms);
}

.reveal.is-visible,
.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes fade-up {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes media-rise {
	from {
		opacity: 0;
		transform: translateX(24px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: translateX(0) scale(1);
	}
}

@keyframes soft-pulse {
	0%,
	100% {
		background: rgba(247, 244, 238, 0.1);
	}
	50% {
		background: rgba(201, 168, 76, 0.16);
	}
}

@keyframes number-settle {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.001ms !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 768px) {
	.site-header__inner {
		grid-template-columns: 1fr auto;
	}

	.site-nav {
		position: absolute;
		top: 78px;
		left: 0;
		right: 0;
		display: none;
		padding: 18px 20px 24px;
		background: var(--navy);
		border-bottom: 1px solid rgba(201, 168, 76, 0.28);
	}

	.site-header.is-open .site-nav {
		display: block;
	}

	.site-nav__list {
		display: grid;
		gap: 16px;
		width: min(100%, var(--container));
		margin-inline: auto;
	}

	.nav-toggle {
		display: inline-flex;
	}

	.site-header__cta {
		display: none;
	}

	.hero__grid,
	.service-page-hero__grid,
	.services-intro__grid,
	.service-detail-card,
	.outcomes-section__grid,
	.service-faq-grid,
	.about-mission__grid,
	.timeline-item,
	.contact-main__grid,
	.booking-strip__grid,
	.contact-faq__grid,
	.featured-post-card,
	.single-content-grid,
	.work-hero__grid,
	.work-featured-card,
	.work-proof__grid,
	.contact-layout {
		grid-template-columns: 1fr;
	}

	.booking-strip__button {
		width: 100%;
	}

	.hero__media,
	.hero__media img,
	.media-placeholder {
		min-height: 390px;
	}

	.card-grid--three,
	.card-grid--four,
	.post-grid,
	.outcome-grid,
	.about-value-grid,
	.about-team-grid,
	.blog-grid,
	.blog-topics-grid,
	.work-grid,
	.process-steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.single-sidebar {
		position: static;
		grid-template-columns: repeat(3, minmax(260px, 1fr));
		overflow-x: auto;
		padding-bottom: 8px;
	}

	.timeline-list::before {
		left: 8px;
	}

	.timeline-item {
		padding-left: 34px;
	}

	.timeline-item::before {
		left: 0;
	}

	.timeline-item:nth-child(even) .timeline-card {
		grid-column: auto;
	}

	.process-steps::before {
		display: none;
	}

	.stats-bar__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 26px 0;
	}

	.stat:nth-child(odd) {
		padding-left: 0;
		border-left: 0;
	}

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

@media (max-width: 640px) {
	.container,
	.site-header__inner,
	.site-footer__inner,
	.site-footer__bottom {
		width: min(100% - 28px, var(--container));
	}

	h1 {
		font-size: 3.15rem;
	}

	h2 {
		font-size: 2.3rem;
	}

	.hero {
		padding-top: 62px;
	}

	.hero-stats,
	.form-row,
	.logos-bar__inner {
		grid-template-columns: 1fr;
		display: grid;
	}

	.section,
	.cta-section {
		padding: 70px 0;
	}

	.card-grid--two,
	.card-grid--three,
	.card-grid--four,
	.post-grid,
	.outcome-grid,
	.about-value-grid,
	.about-team-grid,
	.blog-grid,
	.blog-topics-grid,
	.single-sidebar,
	.work-grid,
	.work-results,
	.work-proof-list,
	.stats-bar__grid,
	.process-steps,
	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.author-bio-box {
		display: grid;
	}

	.stat {
		padding: 0 0 22px;
		border-left: 0;
		border-bottom: 1px solid rgba(201, 168, 76, 0.25);
	}

	.site-footer__bottom {
		display: grid;
	}
}

/* Services page refresh. */
.services-hero {
	padding: clamp(72px, 9vw, 118px) 0 clamp(68px, 8vw, 104px);
	background:
		linear-gradient(135deg, rgba(205, 170, 69, 0.08), transparent 35%),
		var(--color-navy, #0b1a26);
	color: var(--white);
}

.services-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.82fr);
	gap: clamp(42px, 7vw, 86px);
	align-items: center;
}

.services-hero h1 {
	max-width: 760px;
	color: var(--white);
	font-size: clamp(3.35rem, 6.4vw, 6.25rem);
}

.services-hero__content > p:not(.eyebrow) {
	max-width: 640px;
	margin-top: 26px;
	color: rgba(244, 240, 232, 0.78);
	font-size: 1.06rem;
}

.services-hero__text-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 48px;
	color: var(--color-card, #fffcf6);
	font-weight: 800;
}

.services-hero__text-link::after {
	position: absolute;
	right: 0;
	bottom: 7px;
	left: 0;
	height: 2px;
	background: var(--color-gold, #cdaa45);
	content: "";
}

.services-hero-card {
	overflow: hidden;
	background: rgba(255, 252, 246, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 18px;
	box-shadow: 0 34px 80px rgba(0, 0, 0, 0.32);
}

.services-hero-card__visual {
	min-height: 365px;
	padding: 28px;
	background:
		linear-gradient(rgba(255, 252, 246, 0.055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 252, 246, 0.055) 1px, transparent 1px),
		linear-gradient(135deg, rgba(205, 170, 69, 0.34), transparent 38%),
		#142534;
	background-size: 42px 42px, 42px 42px, auto, auto;
}

.services-visual-window {
	position: relative;
	height: 100%;
	min-height: 305px;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(11, 26, 38, 0.92) 0 42%, rgba(255, 252, 246, 0.14) 42% 58%, rgba(11, 26, 38, 0.86) 58%),
		linear-gradient(180deg, rgba(255, 252, 246, 0.32), rgba(205, 170, 69, 0.18));
	border: 1px solid rgba(205, 170, 69, 0.34);
	border-radius: 12px;
}

.services-visual-window::before {
	position: absolute;
	right: 12%;
	bottom: 12%;
	width: 42%;
	height: 44%;
	background: rgba(11, 26, 38, 0.72);
	border: 1px solid rgba(205, 170, 69, 0.48);
	border-radius: 4px;
	box-shadow: 0 26px 50px rgba(0, 0, 0, 0.26);
	content: "";
}

.services-visual-window::after {
	position: absolute;
	right: 19%;
	bottom: 22%;
	width: 18%;
	height: 12%;
	background: var(--color-gold, #cdaa45);
	border-radius: 999px;
	content: "";
	opacity: 0.74;
}

.services-visual-window span {
	position: absolute;
	background: rgba(255, 252, 246, 0.2);
}

.services-visual-window span:nth-child(1) {
	top: 0;
	left: 30%;
	width: 2px;
	height: 100%;
}

.services-visual-window span:nth-child(2) {
	top: 32%;
	right: 0;
	left: 0;
	height: 1px;
}

.services-visual-window span:nth-child(3) {
	right: 13%;
	bottom: 12%;
	width: 46%;
	height: 1px;
	background: rgba(205, 170, 69, 0.48);
}

.services-hero-card__features {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	background: rgba(11, 26, 38, 0.82);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.services-hero-card__features div {
	padding: 24px;
	border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.services-hero-card__features div:first-child {
	border-left: 0;
}

.services-icon {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	margin-bottom: 14px;
	border: 1px solid rgba(205, 170, 69, 0.62);
	border-radius: 50%;
	color: var(--color-gold, #cdaa45);
	font-family: var(--font-heading);
	font-size: 0.92rem;
}

.services-hero-card__features strong {
	display: block;
	color: var(--white);
}

.services-hero-card__features p {
	margin: 6px 0 0;
	color: rgba(244, 240, 232, 0.74);
	font-size: 0.92rem;
}

.services-pillars,
.services-deliverables,
.services-engagements {
	background: var(--color-ivory, #f4f0e8);
}

.services-pillars,
.services-process,
.services-deliverables,
.services-engagements {
	padding: clamp(76px, 8vw, 112px) 0;
}

.services-pillar-list {
	display: grid;
	gap: 18px;
	max-width: 1120px;
	margin: 42px auto 0;
}

.services-pillar-card {
	display: grid;
	grid-template-columns: 120px minmax(0, 0.9fr) minmax(280px, 0.9fr);
	gap: 34px;
	align-items: center;
	padding: clamp(28px, 4vw, 44px);
	background: var(--color-card, #fffcf6);
	border: 1px solid var(--color-border, rgba(11, 26, 38, 0.12));
	border-radius: 16px;
	box-shadow: 0 18px 42px rgba(11, 26, 38, 0.05);
	transition: border-color 180ms ease, transform 180ms ease;
}

.services-pillar-card:hover {
	border-color: var(--color-gold, #cdaa45);
	transform: translateY(-4px);
}

.services-pillar-card__number {
	color: var(--color-gold, #cdaa45);
	font-family: var(--font-heading);
	font-size: clamp(3.6rem, 6vw, 5.8rem);
	line-height: 1;
}

.services-pillar-card h3 {
	font-size: clamp(2rem, 3.2vw, 3.1rem);
}

.services-pillar-card__body p {
	color: rgba(11, 26, 38, 0.66);
}

.services-best-for {
	margin-top: 18px;
	font-size: 0.92rem;
}

.services-best-for span {
	display: block;
	margin-bottom: 5px;
	color: var(--color-gold-dark, #a98426);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.services-process {
	background: var(--color-navy, #0b1a26);
}

.services-process__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.services-process-card {
	padding: 28px;
	background: rgba(255, 252, 246, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
}

.services-process-card span {
	display: block;
	margin-bottom: 34px;
	color: var(--color-gold, #cdaa45);
	font-family: var(--font-heading);
	font-size: 2.6rem;
	line-height: 1;
}

.services-process-card h3 {
	margin-bottom: 12px;
	color: var(--white);
}

.services-process-card p {
	color: rgba(244, 240, 232, 0.7);
	font-size: 0.94rem;
}

.services-deliverables__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
	gap: clamp(34px, 6vw, 70px);
	align-items: start;
}

.services-checklist {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	padding: clamp(24px, 4vw, 38px);
	background: var(--color-card, #fffcf6);
	border: 1px solid var(--color-border, rgba(11, 26, 38, 0.12));
	border-radius: 16px;
}

.services-checklist span {
	position: relative;
	padding-left: 24px;
	color: var(--color-text, #101c29);
	font-weight: 700;
}

.services-checklist span::before {
	position: absolute;
	top: 0.7em;
	left: 0;
	width: 9px;
	height: 9px;
	background: var(--color-gold, #cdaa45);
	border-radius: 50%;
	content: "";
}

.services-engagements__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 42px;
}

.services-engagement-card {
	padding: 32px;
	background: var(--color-card, #fffcf6);
	border: 1px solid var(--color-border, rgba(11, 26, 38, 0.12));
	border-radius: 16px;
	transition: border-color 180ms ease, transform 180ms ease;
}

.services-engagement-card:hover {
	border-color: var(--color-gold, #cdaa45);
	transform: translateY(-4px);
}

.services-engagement-card h3 {
	margin-bottom: 14px;
}

.services-engagement-card a {
	display: inline-flex;
	margin-top: 18px;
	color: var(--color-gold-dark, #a98426);
	font-weight: 800;
}

.services-final-cta {
	padding: clamp(64px, 7vw, 92px) 0;
	background: var(--color-ivory, #f4f0e8);
}

.services-final-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 28px;
	align-items: center;
	padding: clamp(30px, 5vw, 54px);
	background:
		linear-gradient(120deg, rgba(11, 26, 38, 0.98), rgba(11, 26, 38, 0.76)),
		var(--color-gold, #cdaa45);
	border: 1px solid rgba(205, 170, 69, 0.35);
	border-radius: 16px;
}

.services-final-cta h2 {
	color: var(--color-card, #fffcf6);
	font-size: clamp(2.25rem, 4vw, 4rem);
}

.services-final-cta p {
	max-width: 660px;
	margin: 14px 0 0;
	color: rgba(244, 240, 232, 0.76);
}

.services-final-cta .button-row {
	justify-content: flex-end;
	margin-top: 0;
}

@media (max-width: 980px) {
	.services-hero__grid,
	.services-deliverables__grid,
	.services-final-cta__inner {
		grid-template-columns: 1fr;
	}

	.services-pillar-card {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.services-process__grid,
	.services-engagements__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.services-final-cta .button-row {
		justify-content: flex-start;
	}
}

@media (max-width: 640px) {
	.services-hero h1 {
		font-size: 3rem;
	}

	.services-hero-card__visual {
		min-height: 280px;
		padding: 18px;
	}

	.services-visual-window {
		min-height: 238px;
	}

	.services-hero-card__features,
	.services-process__grid,
	.services-checklist,
	.services-engagements__grid {
		grid-template-columns: 1fr;
	}

	.services-hero-card__features div,
	.services-hero-card__features div:first-child {
		border-top: 1px solid rgba(255, 255, 255, 0.12);
		border-left: 0;
	}
}

/* Work page refresh. */
.work-redesign-hero {
	padding: clamp(72px, 9vw, 118px) 0 clamp(68px, 8vw, 104px);
	background:
		linear-gradient(135deg, rgba(205, 170, 69, 0.08), transparent 34%),
		var(--color-navy, #0b1a26);
	color: var(--white);
}

.work-redesign-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.82fr);
	gap: clamp(42px, 7vw, 88px);
	align-items: center;
}

.work-redesign-hero h1 {
	max-width: 780px;
	color: var(--white);
	font-size: clamp(3.4rem, 6.6vw, 6.5rem);
}

.work-redesign-hero__content > p:not(.eyebrow) {
	max-width: 620px;
	margin-top: 24px;
	color: rgba(244, 240, 232, 0.76);
}

.work-hero-panel {
	position: relative;
	overflow: hidden;
	background: rgba(255, 252, 246, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 18px;
	box-shadow: 0 34px 80px rgba(0, 0, 0, 0.32);
}

.work-hero-panel__visual {
	min-height: 520px;
	padding: 30px;
	background:
		linear-gradient(rgba(255, 252, 246, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 252, 246, 0.045) 1px, transparent 1px),
		#152638;
	background-size: 42px 42px;
}

.work-architecture-mockup {
	position: relative;
	height: 100%;
	min-height: 460px;
	overflow: hidden;
	background:
		linear-gradient(115deg, rgba(11, 26, 38, 0.9) 0 38%, rgba(205, 170, 69, 0.26) 38% 52%, rgba(11, 26, 38, 0.72) 52%),
		linear-gradient(180deg, rgba(244, 240, 232, 0.18), rgba(11, 26, 38, 0.28));
	border: 1px solid rgba(205, 170, 69, 0.32);
	border-radius: 12px;
}

.work-architecture-mockup::before {
	position: absolute;
	right: 10%;
	bottom: 12%;
	width: 58%;
	height: 50%;
	background: rgba(11, 26, 38, 0.66);
	border: 1px solid rgba(205, 170, 69, 0.5);
	content: "";
	box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
}

.work-architecture-mockup::after {
	position: absolute;
	right: 16%;
	bottom: 12%;
	width: 44%;
	height: 1px;
	background: rgba(205, 170, 69, 0.6);
	content: "";
}

.work-architecture-mockup span {
	position: absolute;
	background: rgba(255, 252, 246, 0.18);
}

.work-architecture-mockup span:nth-child(1) {
	top: 0;
	left: 32%;
	width: 2px;
	height: 100%;
}

.work-architecture-mockup span:nth-child(2) {
	top: 34%;
	right: 0;
	left: 0;
	height: 1px;
}

.work-architecture-mockup span:nth-child(3) {
	top: 0;
	right: 16%;
	width: 1px;
	height: 100%;
}

.work-hero-panel__caption {
	position: absolute;
	bottom: 32px;
	left: 32px;
	width: min(270px, calc(100% - 64px));
	padding: 24px;
	background: rgba(11, 26, 38, 0.78);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	backdrop-filter: blur(12px);
}

.work-hero-panel__caption span {
	display: inline-flex;
	margin-bottom: 14px;
	padding: 4px 10px;
	background: var(--color-gold, #cdaa45);
	border-radius: 999px;
	color: var(--color-navy, #0b1a26);
	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.work-hero-panel__caption strong {
	display: block;
	color: var(--white);
	font-family: var(--font-heading);
	font-size: 1.55rem;
	font-weight: 400;
}

.work-hero-panel__caption p {
	margin: 10px 0 0;
	color: rgba(244, 240, 232, 0.76);
}

.work-featured-redesign,
.work-recent-redesign,
.work-philosophy,
.work-final-cta {
	background: var(--color-ivory, #f4f0e8);
}

.work-featured-redesign,
.work-recent-redesign,
.work-philosophy {
	padding: clamp(76px, 8vw, 112px) 0;
}

.work-case-study-card {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
	overflow: hidden;
	background: var(--color-card, #fffcf6);
	border: 1px solid var(--color-border, rgba(11, 26, 38, 0.12));
	border-left: 5px solid var(--color-gold, #cdaa45);
	border-radius: 18px;
	box-shadow: 0 24px 70px rgba(11, 26, 38, 0.1);
}

.work-case-study-card__media {
	padding: clamp(24px, 4vw, 42px);
	background: var(--color-navy, #0b1a26);
}

.case-browser {
	display: flex;
	gap: 8px;
	height: 40px;
	align-items: center;
	padding-inline: 16px;
	background: rgba(255, 252, 246, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-bottom: 0;
	border-radius: 10px 10px 0 0;
}

.case-browser span {
	width: 8px;
	height: 8px;
	background: rgba(244, 240, 232, 0.38);
	border-radius: 50%;
}

.case-preview {
	position: relative;
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	min-height: 420px;
	overflow: hidden;
	background:
		linear-gradient(rgba(255, 252, 246, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 252, 246, 0.05) 1px, transparent 1px),
		#132638;
	background-size: 34px 34px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 0 0 10px 10px;
}

.case-preview__content {
	display: grid;
	align-content: center;
	padding: 34px;
}

.case-preview__content span {
	width: 70px;
	height: 8px;
	margin-bottom: 24px;
	background: var(--color-gold, #cdaa45);
	border-radius: 999px;
}

.case-preview__content strong {
	color: var(--white);
	font-family: var(--font-heading);
	font-size: clamp(2rem, 3.2vw, 3.2rem);
	font-weight: 400;
	line-height: 1;
}

.case-preview__content em {
	width: 44%;
	height: 38px;
	margin-top: 28px;
	background: var(--color-gold, #cdaa45);
	border-radius: 999px;
}

.case-preview__image {
	margin: 34px 34px 34px 0;
	background:
		linear-gradient(120deg, rgba(11, 26, 38, 0.82) 0 40%, rgba(205, 170, 69, 0.32) 40% 55%, rgba(244, 240, 232, 0.16) 55%),
		#0b1a26;
	border: 1px solid rgba(205, 170, 69, 0.34);
	border-radius: 8px;
}

.case-preview__chips {
	position: absolute;
	right: 26px;
	bottom: 24px;
	display: flex;
	gap: 8px;
}

.case-preview__chips span {
	padding: 8px 12px;
	background: rgba(11, 26, 38, 0.76);
	border: 1px solid rgba(205, 170, 69, 0.45);
	border-radius: 999px;
	color: var(--color-gold, #cdaa45);
	font-weight: 900;
}

.work-case-study-card__body {
	display: grid;
	align-content: center;
	padding: clamp(30px, 5vw, 56px);
}

.work-case-study-card__body h2 {
	font-size: clamp(2.1rem, 3.8vw, 4rem);
}

.work-case-results {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin: 26px 0;
}

.work-case-results span {
	padding: 16px;
	background: var(--color-ivory, #f4f0e8);
	border: 1px solid var(--color-border, rgba(11, 26, 38, 0.12));
	border-radius: 10px;
	color: rgba(11, 26, 38, 0.66);
	font-weight: 700;
}

.work-case-results strong {
	display: block;
	margin-bottom: 6px;
	color: var(--color-gold-dark, #a98426);
	font-family: var(--font-heading);
	font-size: 2.1rem;
	line-height: 1;
}

.work-link,
.work-final-cta__link {
	display: inline-flex;
	width: fit-content;
	color: var(--color-gold-dark, #a98426);
	font-weight: 900;
}

.work-recent-redesign__heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 28px;
	align-items: end;
}

.work-filter-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin: 8px 0 34px;
}

.work-filter-pills a {
	padding: 10px 16px;
	background: var(--color-card, #fffcf6);
	border: 1px solid var(--color-border, rgba(11, 26, 38, 0.12));
	border-radius: 999px;
	color: rgba(11, 26, 38, 0.72);
	font-weight: 800;
}

.work-filter-pills a.is-active,
.work-filter-pills a:hover {
	background: var(--color-navy, #0b1a26);
	border-color: var(--color-navy, #0b1a26);
	color: var(--color-gold, #cdaa45);
}

.work-project-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.work-project-card {
	overflow: hidden;
	background: var(--color-card, #fffcf6);
	border: 1px solid var(--color-border, rgba(11, 26, 38, 0.12));
	border-radius: 16px;
	transition: border-color 180ms ease, transform 180ms ease;
}

.work-project-card:hover {
	border-color: var(--color-gold, #cdaa45);
	transform: translateY(-5px);
}

.work-project-card__visual {
	position: relative;
	min-height: 235px;
	overflow: hidden;
	background: var(--color-navy, #0b1a26);
}

.work-project-card__visual::before {
	position: absolute;
	inset: 24px;
	border: 1px solid rgba(205, 170, 69, 0.34);
	border-radius: 8px;
	content: "";
}

.work-project-card__visual::after {
	position: absolute;
	right: 26px;
	bottom: 26px;
	width: 34%;
	height: 42%;
	background: rgba(205, 170, 69, 0.22);
	border-radius: 8px;
	content: "";
}

.work-project-card__visual span {
	position: absolute;
	background: rgba(255, 252, 246, 0.16);
}

.work-project-card__visual span:nth-child(1) {
	top: 34%;
	left: 24px;
	width: calc(100% - 48px);
	height: 1px;
}

.work-project-card__visual span:nth-child(2) {
	top: 24px;
	left: 38%;
	width: 1px;
	height: calc(100% - 48px);
}

.work-project-card__visual span:nth-child(3) {
	left: 34px;
	bottom: 36px;
	width: 90px;
	height: 12px;
	background: var(--color-gold, #cdaa45);
	border-radius: 999px;
}

.work-project-card__visual--northline,
.work-project-card__visual--ridge {
	background: #111f2b;
}

.work-project-card__visual--haven {
	background: linear-gradient(135deg, #081621, #152a3b);
}

.work-project-card__visual--oriel,
.work-project-card__visual--quill {
	background: linear-gradient(135deg, #10202c, #1f3528);
}

.work-project-card__body {
	padding: 24px;
}

.work-project-card h3 {
	margin-bottom: 12px;
	font-size: 1.65rem;
}

.work-project-card__body strong {
	display: block;
	margin: 18px 0 14px;
	color: var(--color-gold-dark, #a98426);
	font-size: 0.9rem;
}

.work-results-band {
	padding: 58px 0;
	background: var(--color-navy, #0b1a26);
}

.work-results-band__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.work-results-band__grid div {
	padding: 8px 28px;
	border-left: 1px solid rgba(205, 170, 69, 0.28);
}

.work-results-band__grid div:first-child {
	padding-left: 0;
	border-left: 0;
}

.work-results-band strong {
	display: block;
	color: var(--color-gold, #cdaa45);
	font-family: var(--font-heading);
	font-size: clamp(2.5rem, 5vw, 4.4rem);
	line-height: 1;
}

.work-results-band span {
	display: block;
	max-width: 220px;
	margin-top: 8px;
	color: rgba(244, 240, 232, 0.78);
	font-weight: 700;
}

.work-philosophy__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 42px;
}

.work-philosophy__grid article {
	padding: 30px;
	background: var(--color-card, #fffcf6);
	border: 1px solid var(--color-border, rgba(11, 26, 38, 0.12));
	border-radius: 16px;
}

.work-philosophy__grid span {
	display: block;
	margin-bottom: 28px;
	color: var(--color-gold, #cdaa45);
	font-family: var(--font-heading);
	font-size: 2.6rem;
}

.work-final-cta {
	padding: clamp(64px, 7vw, 92px) 0;
}

.work-final-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 28px;
	align-items: center;
	padding: clamp(30px, 5vw, 54px);
	background:
		linear-gradient(120deg, rgba(11, 26, 38, 0.98), rgba(11, 26, 38, 0.76)),
		var(--color-gold, #cdaa45);
	border: 1px solid rgba(205, 170, 69, 0.35);
	border-radius: 16px;
}

.work-final-cta h2 {
	color: var(--color-card, #fffcf6);
	font-size: clamp(2.25rem, 4vw, 4rem);
}

.work-final-cta p {
	max-width: 660px;
	margin: 14px 0 0;
	color: rgba(244, 240, 232, 0.76);
}

.work-final-cta .button-row {
	justify-content: flex-end;
	margin-top: 0;
}

.work-final-cta__link {
	align-items: center;
	min-height: 48px;
	color: var(--color-card, #fffcf6);
}

@media (max-width: 980px) {
	.work-redesign-hero__grid,
	.work-case-study-card,
	.work-recent-redesign__heading,
	.work-final-cta__inner {
		grid-template-columns: 1fr;
	}

	.work-project-grid,
	.work-philosophy__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.work-results-band__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px 0;
	}

	.work-results-band__grid div:nth-child(odd) {
		padding-left: 0;
		border-left: 0;
	}

	.work-final-cta .button-row {
		justify-content: flex-start;
	}
}

@media (max-width: 640px) {
	.work-redesign-hero h1 {
		font-size: 3rem;
	}

	.work-hero-panel__visual {
		min-height: 360px;
		padding: 18px;
	}

	.work-architecture-mockup {
		min-height: 324px;
	}

	.work-hero-panel__caption {
		right: 18px;
		bottom: 18px;
		left: 18px;
		width: auto;
	}

	.case-preview,
	.work-case-results,
	.work-project-grid,
	.work-philosophy__grid,
	.work-results-band__grid {
		grid-template-columns: 1fr;
	}

	.case-preview__image {
		min-height: 220px;
		margin: 0 24px 72px;
	}

	.work-results-band__grid div,
	.work-results-band__grid div:nth-child(odd) {
		padding: 0 0 22px;
		border-left: 0;
		border-bottom: 1px solid rgba(205, 170, 69, 0.25);
	}
}

/* About page refresh. */
.about-redesign-hero {
	padding: clamp(72px, 9vw, 118px) 0 clamp(68px, 8vw, 104px);
	background:
		linear-gradient(135deg, rgba(205, 170, 69, 0.08), transparent 34%),
		var(--color-navy, #0b1a26);
	color: var(--white);
}

.about-redesign-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
	gap: clamp(42px, 7vw, 86px);
	align-items: center;
}

.about-redesign-hero h1 {
	max-width: 860px;
	color: var(--white);
	font-size: clamp(3.4rem, 6.7vw, 6.35rem);
}

.about-redesign-hero__content > p:not(.eyebrow) {
	max-width: 660px;
	margin-top: 24px;
	color: rgba(244, 240, 232, 0.76);
	font-size: 1.06rem;
}

.about-cred-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 28px;
}

.about-cred-row span {
	padding: 9px 14px;
	background: rgba(255, 252, 246, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	color: rgba(244, 240, 232, 0.78);
	font-size: 0.84rem;
	font-weight: 800;
}

.about-text-link,
.about-final-cta__link {
	position: relative;
	display: inline-flex;
	width: fit-content;
	margin-top: 28px;
	color: var(--color-card, #fffcf6);
	font-weight: 900;
}

.about-text-link::after,
.about-final-cta__link::after {
	position: absolute;
	right: 0;
	bottom: -8px;
	left: 0;
	height: 2px;
	background: var(--color-gold, #cdaa45);
	content: "";
}

.about-studio-visual {
	position: relative;
	overflow: hidden;
	min-height: 520px;
	background: rgba(255, 252, 246, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 18px;
	box-shadow: 0 34px 80px rgba(0, 0, 0, 0.32);
}

.about-studio-visual__scene {
	position: absolute;
	inset: 28px;
	overflow: hidden;
	background:
		linear-gradient(rgba(255, 252, 246, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 252, 246, 0.05) 1px, transparent 1px),
		linear-gradient(135deg, rgba(205, 170, 69, 0.24), transparent 42%),
		#142534;
	background-size: 42px 42px, 42px 42px, auto, auto;
	border: 1px solid rgba(205, 170, 69, 0.28);
	border-radius: 12px;
}

.about-studio-visual__scene::before {
	position: absolute;
	top: 22%;
	right: 16%;
	left: 16%;
	height: 44%;
	background: rgba(11, 26, 38, 0.72);
	border: 1px solid rgba(205, 170, 69, 0.38);
	border-radius: 10px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
	content: "";
}

.about-studio-visual__scene::after {
	position: absolute;
	right: 20%;
	bottom: 22%;
	left: 20%;
	height: 2px;
	background: var(--color-gold, #cdaa45);
	content: "";
}

.about-studio-visual__scene span {
	position: absolute;
	width: 52px;
	height: 52px;
	background: rgba(244, 240, 232, 0.16);
	border: 1px solid rgba(205, 170, 69, 0.38);
	border-radius: 50%;
}

.about-studio-visual__scene span:nth-child(1) {
	top: 30%;
	left: 18%;
}

.about-studio-visual__scene span:nth-child(2) {
	top: 22%;
	left: 44%;
}

.about-studio-visual__scene span:nth-child(3) {
	top: 30%;
	right: 18%;
}

.about-studio-visual__note {
	position: absolute;
	right: 34px;
	bottom: 34px;
	left: 34px;
	padding: 22px 24px;
	background: rgba(11, 26, 38, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 12px;
	backdrop-filter: blur(12px);
}

.about-studio-visual__note strong {
	display: block;
	color: var(--white);
}

.about-studio-visual__note p {
	margin: 6px 0 0;
	color: rgba(244, 240, 232, 0.74);
}

.about-redesign-mission,
.about-studio-section,
.about-redesign-values,
.about-client-choice,
.about-final-cta {
	background: var(--color-ivory, #f4f0e8);
}

.about-redesign-mission,
.about-studio-section,
.about-redesign-values,
.about-client-choice {
	padding: clamp(76px, 8vw, 112px) 0;
}

.about-redesign-mission__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
	gap: clamp(40px, 7vw, 90px);
	align-items: center;
}

.about-belief-list {
	display: grid;
	gap: 10px;
	margin: 26px 0 0;
	padding: 0;
	list-style: none;
}

.about-belief-list li {
	position: relative;
	padding-left: 26px;
	color: var(--color-text, #101c29);
	font-weight: 800;
}

.about-belief-list li::before {
	position: absolute;
	top: 0.72em;
	left: 0;
	width: 10px;
	height: 10px;
	background: var(--color-gold, #cdaa45);
	border-radius: 50%;
	content: "";
}

.about-quote-card {
	margin: 0;
	padding: clamp(28px, 4vw, 44px);
	background: var(--color-card, #fffcf6);
	border: 1px solid var(--color-border, rgba(11, 26, 38, 0.12));
	border-left: 5px solid var(--color-gold, #cdaa45);
	border-radius: 16px;
	box-shadow: 0 18px 48px rgba(11, 26, 38, 0.08);
}

.about-quote-card blockquote {
	margin: 0;
	color: var(--color-text, #101c29);
	font-family: var(--font-heading);
	font-size: clamp(1.9rem, 3vw, 3rem);
	font-style: italic;
	line-height: 1.18;
}

.about-quote-card figcaption {
	margin-top: 24px;
	color: var(--color-gold-dark, #a98426);
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.about-studio-grid,
.about-redesign-values__grid,
.about-client-choice__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin-top: 42px;
}

.about-studio-card,
.about-redesign-values__grid article,
.about-client-choice__grid article {
	padding: 30px;
	background: var(--color-card, #fffcf6);
	border: 1px solid var(--color-border, rgba(11, 26, 38, 0.12));
	border-radius: 16px;
	box-shadow: 0 16px 40px rgba(11, 26, 38, 0.05);
	transition: border-color 180ms ease, transform 180ms ease;
}

.about-studio-card:hover,
.about-redesign-values__grid article:hover,
.about-client-choice__grid article:hover {
	border-color: var(--color-gold, #cdaa45);
	transform: translateY(-4px);
}

.about-studio-card span,
.about-redesign-values__grid span,
.about-client-choice__grid span {
	display: block;
	margin-bottom: 30px;
	color: var(--color-gold, #cdaa45);
	font-family: var(--font-heading);
	font-size: 2.8rem;
	line-height: 1;
}

.about-studio-card h3,
.about-redesign-values__grid h3,
.about-client-choice__grid h3 {
	margin-bottom: 14px;
}

.about-redesign-timeline {
	padding: clamp(80px, 9vw, 128px) 0;
	background:
		linear-gradient(135deg, rgba(205, 170, 69, 0.07), transparent 34%),
		var(--color-navy, #0b1a26);
}

.about-timeline-track {
	position: relative;
	display: grid;
	gap: 24px;
	max-width: 980px;
	margin: 52px auto 0;
}

.about-timeline-track::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 1px;
	background: rgba(205, 170, 69, 0.55);
	content: "";
}

.about-timeline-card {
	position: relative;
	width: calc(50% - 44px);
	padding: 28px;
	background: rgba(255, 252, 246, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 16px;
}

.about-timeline-card:nth-child(even) {
	margin-left: calc(50% + 44px);
}

.about-timeline-card::before {
	position: absolute;
	top: 30px;
	width: 15px;
	height: 15px;
	background: var(--color-gold, #cdaa45);
	border-radius: 50%;
	content: "";
}

.about-timeline-card:nth-child(odd)::before {
	right: -52px;
}

.about-timeline-card:nth-child(even)::before {
	left: -52px;
}

.about-timeline-card span {
	display: block;
	margin-bottom: 18px;
	color: var(--color-gold, #cdaa45);
	font-family: var(--font-heading);
	font-size: 2.2rem;
	line-height: 1;
}

.about-timeline-card h3 {
	color: var(--white);
}

.about-timeline-card p {
	color: rgba(244, 240, 232, 0.72);
}

.about-proof-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 34px;
}

.about-proof-row span {
	padding: 22px;
	background: var(--color-card, #fffcf6);
	border: 1px solid var(--color-border, rgba(11, 26, 38, 0.12));
	border-radius: 14px;
	color: rgba(11, 26, 38, 0.66);
	font-weight: 800;
}

.about-proof-row strong {
	display: block;
	margin-bottom: 6px;
	color: var(--color-gold-dark, #a98426);
	font-family: var(--font-heading);
	font-size: 2.5rem;
	line-height: 1;
}

.about-final-cta {
	padding: clamp(64px, 7vw, 92px) 0;
}

.about-final-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 28px;
	align-items: center;
	padding: clamp(30px, 5vw, 54px);
	background:
		linear-gradient(120deg, rgba(11, 26, 38, 0.98), rgba(11, 26, 38, 0.76)),
		var(--color-gold, #cdaa45);
	border: 1px solid rgba(205, 170, 69, 0.35);
	border-radius: 16px;
}

.about-final-cta h2 {
	color: var(--color-card, #fffcf6);
	font-size: clamp(2.25rem, 4vw, 4rem);
}

.about-final-cta p {
	max-width: 660px;
	margin: 14px 0 0;
	color: rgba(244, 240, 232, 0.76);
}

.about-final-cta .button-row {
	justify-content: flex-end;
	margin-top: 0;
}

.about-final-cta__link {
	align-items: center;
	min-height: 48px;
	margin-top: 0;
}

@media (max-width: 980px) {
	.about-redesign-hero__grid,
	.about-redesign-mission__grid,
	.about-final-cta__inner {
		grid-template-columns: 1fr;
	}

	.about-studio-grid,
	.about-redesign-values__grid,
	.about-client-choice__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.about-final-cta .button-row {
		justify-content: flex-start;
	}
}

@media (max-width: 640px) {
	.about-redesign-hero h1 {
		font-size: 3rem;
	}

	.about-studio-visual {
		min-height: 390px;
	}

	.about-studio-visual__scene {
		inset: 18px;
	}

	.about-studio-visual__note {
		right: 22px;
		bottom: 22px;
		left: 22px;
	}

	.about-studio-grid,
	.about-redesign-values__grid,
	.about-client-choice__grid,
	.about-proof-row {
		grid-template-columns: 1fr;
	}

	.about-timeline-track::before {
		left: 8px;
	}

	.about-timeline-card,
	.about-timeline-card:nth-child(even) {
		width: auto;
		margin-left: 34px;
	}

	.about-timeline-card:nth-child(odd)::before,
	.about-timeline-card:nth-child(even)::before {
		left: -33px;
		right: auto;
	}
}

/* Final landing-page cascade guard. */
body.home .home-reference-hero {
	padding: clamp(72px, 8vw, 92px) 0 clamp(70px, 7vw, 84px);
	background:
		radial-gradient(circle at 16% 26%, rgba(29, 67, 88, 0.44), transparent 34%),
		radial-gradient(circle at 84% 18%, rgba(205, 170, 69, 0.08), transparent 28%),
		var(--color-navy);
}

body.home .home-reference-hero__grid {
	display: grid !important;
	grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.82fr) !important;
	gap: clamp(52px, 9vw, 112px) !important;
	align-items: center;
}

body.home .home-reference-hero h1 {
	max-width: 600px;
	font-size: clamp(4.15rem, 6vw, 6.3rem);
	line-height: 0.98;
}

body.home .home-reference-hero__content > p:not(.eyebrow) {
	max-width: 450px;
}

.home-reference-hero-image img {
	aspect-ratio: 0.67;
	object-fit: cover;
}

.home-reference-services__grid,
.home-reference-stats__grid,
.home-reference-testimonials__grid,
.home-reference-cta {
	display: grid !important;
}

.home-reference-services__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.home-reference-stats__grid {
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.home-reference-testimonials__grid {
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.home-reference-cta {
	grid-template-columns: minmax(0, 1fr) auto !important;
	max-width: var(--container);
	margin-right: auto;
	margin-left: auto;
}

.home-reference-testimonials {
	padding-bottom: clamp(44px, 6vw, 62px);
}

/* Services reference page. */
.services-reference-page {
	background: var(--color-ivory);
}

.services-reference-hero {
	padding: clamp(64px, 8vw, 88px) 0 clamp(62px, 7vw, 84px);
	background:
		radial-gradient(circle at 16% 25%, rgba(29, 67, 88, 0.42), transparent 34%),
		var(--color-navy);
	color: var(--color-card);
}

.services-reference-hero__grid {
	display: grid !important;
	grid-template-columns: minmax(0, 0.9fr) minmax(480px, 0.88fr) !important;
	gap: clamp(56px, 9vw, 104px) !important;
	align-items: center;
}

.services-reference-hero h1 {
	max-width: 600px;
	margin: 0;
	color: #fffaf2;
	font-size: clamp(4rem, 5.8vw, 6.1rem);
	line-height: 0.98;
}

.services-reference-hero h1 em {
	color: var(--color-gold);
	font-style: italic;
}

.services-reference-hero__content > p:not(.eyebrow) {
	max-width: 520px;
	margin-top: 28px;
	color: rgba(255, 252, 246, 0.78);
	font-size: 1rem;
	line-height: 1.76;
}

.services-reference-hero .button-row {
	gap: 34px;
	align-items: center;
	margin-top: 34px;
}

.services-reference-hero .button--primary .wp-block-button__link {
	min-height: 54px;
	padding: 0 28px;
}

.services-reference-hero .button--text .wp-block-button__link {
	position: relative;
	min-height: 44px;
	padding: 0 0 8px;
	background: transparent;
	border: 0;
	border-bottom: 2px solid var(--color-gold);
	border-radius: 0;
	color: var(--color-card);
	box-shadow: none;
}

.services-reference-hero .button--text .wp-block-button__link::after {
	position: absolute;
	right: -3px;
	bottom: -5px;
	width: 7px;
	height: 7px;
	background: var(--color-gold);
	border-radius: 50%;
	content: "";
}

.services-reference-hero__visual {
	overflow: hidden;
	background: rgba(255, 252, 246, 0.06);
	border: 1px solid rgba(255, 252, 246, 0.14);
	border-radius: 16px;
}

.services-reference-hero-image {
	display: none;
	margin: 0 !important;
}

.services-reference-hero-image img {
	display: block;
	width: 100%;
	aspect-ratio: 1.5;
	object-fit: cover;
	object-position: center;
}

.services-reference-feature-row {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	margin: 0;
	background: rgba(8, 20, 30, 0.82);
	border-top: 1px solid rgba(255, 252, 246, 0.14);
}

.services-reference-feature-row .wp-block-column {
	padding: 28px 34px;
	border-left: 1px solid rgba(255, 252, 246, 0.12);
}

.services-reference-feature-row .wp-block-column:first-child {
	border-left: 0;
}

.services-reference-feature-row p {
	margin: 0;
	color: rgba(255, 252, 246, 0.8);
	line-height: 1.65;
}

.services-reference-feature-row span {
	display: grid;
	width: 50px;
	height: 50px;
	margin-bottom: 18px;
	place-items: center;
	border: 1px solid rgba(205, 170, 69, 0.42);
	border-radius: 50%;
	color: var(--color-gold);
	font-size: 0;
}

.services-reference-feature-row .wp-block-column:nth-child(1) span::before {
	font-size: 1.45rem;
	content: "\25CE";
}

.services-reference-feature-row .wp-block-column:nth-child(2) span::before {
	font-size: 1.35rem;
	content: "\270E";
}

.services-reference-feature-row .wp-block-column:nth-child(3) span::before {
	font-family: var(--font-heading);
	font-size: 1.6rem;
	content: "W";
}

.services-reference-feature-row strong {
	display: block;
	color: var(--color-card);
	font-weight: 800;
}

.services-reference-stats {
	display: none !important;
}

.services-reference-core {
	padding: clamp(58px, 7vw, 76px) 0 38px;
	background: var(--color-ivory);
}

.services-reference-heading {
	max-width: 760px;
	margin: 0 auto 34px;
	text-align: center;
}

.services-reference-heading h2 {
	margin: 10px 0 12px;
	font-size: clamp(2.6rem, 4.2vw, 3.7rem);
	line-height: 1.08;
}

.services-reference-heading > p:not(.eyebrow) {
	max-width: 600px;
	margin-right: auto;
	margin-left: auto;
	color: rgba(11, 26, 38, 0.62);
}

.services-reference-card {
	margin-top: 18px;
	overflow: hidden;
	background: var(--color-card);
	border: 1px solid rgba(11, 26, 38, 0.12);
	border-radius: 14px;
	box-shadow: 0 16px 46px rgba(11, 26, 38, 0.08);
}

.services-reference-card__grid {
	display: grid !important;
	grid-template-columns: 92px 112px minmax(0, 1fr) minmax(360px, 0.78fr) !important;
	gap: 28px;
	align-items: center;
	min-height: 238px;
	padding: 12px;
}

.services-reference-card__number p {
	margin: 0;
	color: var(--color-gold);
	font-family: var(--font-heading);
	font-size: 3.4rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;
}

.services-reference-card__icon p {
	display: grid;
	width: 86px;
	height: 86px;
	margin: 0;
	place-items: center;
	background: rgba(11, 26, 38, 0.04);
	border-radius: 50%;
	color: var(--color-gold);
}

.services-reference-card__icon p::before {
	font-size: 2rem;
	content: "\25CE";
}

.services-reference-card:nth-of-type(3) .services-reference-card__icon p::before {
	content: "\25A3";
}

.services-reference-card__body {
	padding: 28px 0;
}

.services-reference-card__body h3 {
	max-width: 390px;
	margin: 8px 0 12px;
	font-size: clamp(2rem, 3vw, 3rem);
	line-height: 1.04;
}

.services-reference-card__body > p:not(.eyebrow) {
	max-width: 430px;
	color: rgba(11, 26, 38, 0.68);
	line-height: 1.65;
}

.services-reference-card__media figure {
	margin: 0;
	overflow: hidden;
	border-radius: 10px;
}

.services-reference-card__media img {
	display: block;
	width: 100%;
	aspect-ratio: 1.9;
	object-fit: cover;
}

.services-reference-stats {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 0;
	margin: 42px 0 0;
}

.services-reference-stats .wp-block-column {
	padding: 0 32px;
	border-left: 1px solid rgba(11, 26, 38, 0.14);
}

.services-reference-stats .wp-block-column:first-child {
	border-left: 0;
}

.services-reference-stats p {
	position: relative;
	min-height: 58px;
	margin: 0;
	padding-left: 76px;
	color: rgba(11, 26, 38, 0.7);
	font-size: 0.9rem;
	line-height: 1.45;
}

.services-reference-stats span {
	position: absolute;
	left: 0;
	top: 0;
	display: grid;
	width: 52px;
	height: 52px;
	place-items: center;
	background: var(--color-navy);
	border-radius: 50%;
	color: var(--color-gold);
}

.services-reference-stats .wp-block-column:nth-child(1) span::before {
	content: "\2637";
}

.services-reference-stats .wp-block-column:nth-child(2) span::before {
	content: "\2606";
}

.services-reference-stats .wp-block-column:nth-child(3) span::before {
	content: "\25CE";
}

.services-reference-stats .wp-block-column:nth-child(4) span::before {
	content: "\25CE";
}

.services-reference-stats strong {
	display: inline-block;
	margin-right: 8px;
	color: var(--color-gold);
	font-family: var(--font-heading);
	font-size: 3rem;
	line-height: 1;
}

body:not(.home) .site-header__cta {
	min-width: 220px;
}

@media (max-width: 980px) {
	.services-reference-hero__grid,
	.services-reference-card__grid,
	.services-reference-feature-row,
	.services-reference-stats {
		grid-template-columns: 1fr !important;
	}

	.services-reference-card__body {
		padding: 0 28px;
	}
}

@media (max-width: 640px) {
	.services-reference-hero h1 {
		font-size: clamp(3rem, 15vw, 4.2rem);
	}

	.services-reference-feature-row .wp-block-column,
	.services-reference-card__grid {
		padding: 22px;
	}

	.services-reference-stats .wp-block-column {
		padding: 18px 0;
		border-left: 0;
		border-top: 1px solid rgba(11, 26, 38, 0.14);
	}
}

/* Work reference page. */
.work-reference-page {
	background: var(--color-ivory);
}

.work-reference-hero {
	padding: clamp(68px, 8vw, 88px) 0 clamp(62px, 7vw, 82px);
	background:
		radial-gradient(circle at 16% 24%, rgba(29, 67, 88, 0.42), transparent 34%),
		var(--color-navy);
	color: var(--color-card);
}

.work-reference-hero__grid {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) !important;
	place-items: center;
	width: 100vw !important;
	max-width: none !important;
	margin-right: calc(50% - 50vw) !important;
	margin-left: calc(50% - 50vw) !important;
	padding-inline: clamp(20px, 4vw, 64px);
	align-items: center;
}

.work-reference-hero__content {
	width: 100%;
	max-width: 1180px;
	margin-inline: auto;
	text-align: center;
}

.work-reference-hero h1 {
	max-width: 1180px;
	margin: 0 auto;
	color: #fffaf2;
	font-size: clamp(4rem, 5.8vw, 6.1rem);
	line-height: 0.98;
}

.work-reference-hero h1 em {
	color: var(--color-gold);
	font-style: italic;
}

.work-reference-hero__content > p:not(.eyebrow) {
	max-width: 470px;
	margin: 26px auto 0;
	color: rgba(255, 252, 246, 0.76);
	line-height: 1.75;
}

.work-reference-hero .wp-block-buttons {
	justify-content: center;
	margin-top: 34px;
}

.work-reference-hero .wp-block-button__link {
	min-height: 54px;
	padding-inline: 30px;
}

.work-reference-hero__visual {
	display: none;
	position: relative;
	overflow: hidden;
	border-radius: 14px;
	box-shadow: 0 28px 76px rgba(0, 0, 0, 0.28);
}

.work-reference-hero-image {
	margin: 0 !important;
}

.work-reference-hero-image img {
	display: block;
	width: 100%;
	aspect-ratio: 0.82;
	object-fit: cover;
	object-position: center;
}

.work-reference-hero-card {
	position: absolute;
	left: 28px;
	bottom: 28px;
	width: min(260px, calc(100% - 56px));
	padding: 24px 26px;
	background: rgba(8, 20, 30, 0.78);
	border: 1px solid rgba(255, 252, 246, 0.14);
	border-radius: 14px;
	color: var(--color-card);
	backdrop-filter: blur(16px);
}

.work-reference-badge {
	display: inline-flex;
	margin: 0 0 14px;
	padding: 3px 9px;
	background: var(--color-gold);
	border-radius: 999px;
	color: var(--color-navy);
	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.work-reference-hero-card h3 {
	margin: 0;
	color: var(--color-card);
	font-family: var(--font-body);
	font-size: 1.25rem;
	font-weight: 800;
}

.work-reference-hero-card p:not(.work-reference-badge) {
	margin: 12px 0 0;
	color: rgba(255, 252, 246, 0.78);
	line-height: 1.55;
}

.work-reference-featured {
	padding: clamp(52px, 7vw, 72px) 0;
	background: var(--color-ivory);
}

.work-reference-case {
	display: grid !important;
	grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr) !important;
	gap: 0 !important;
	overflow: hidden;
	background: var(--color-card);
	border: 1px solid rgba(11, 26, 38, 0.12);
	border-left: 4px solid var(--color-gold);
	border-radius: 14px;
	box-shadow: 0 24px 70px rgba(11, 26, 38, 0.1);
}

.work-reference-case__body {
	padding: clamp(44px, 6vw, 74px);
	background: var(--color-navy);
	color: var(--color-card);
}

.work-reference-case__body h2 {
	max-width: 410px;
	margin: 18px 0 0;
	color: var(--color-card);
	font-size: clamp(2.4rem, 4vw, 4rem);
	line-height: 1.02;
}

.work-reference-case__body h2::after {
	display: block;
	width: 52px;
	height: 2px;
	margin: 28px 0;
	background: var(--color-gold);
	content: "";
}

.work-reference-case__body > p:not(.eyebrow):not(.work-reference-link) {
	max-width: 390px;
	color: rgba(255, 252, 246, 0.76);
	line-height: 1.7;
}

.work-reference-link {
	margin-top: 28px;
	color: var(--color-gold);
	font-weight: 900;
}

.work-reference-link a {
	color: inherit;
	text-decoration: none;
}

.work-reference-case__image figure {
	height: 100%;
	margin: 0;
}

.work-reference-case__image img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 450px;
	object-fit: cover;
	object-position: center;
}

.work-reference-recent {
	padding: clamp(54px, 7vw, 76px) 0 clamp(64px, 8vw, 88px);
	background: var(--color-ivory);
}

.work-reference-recent__heading {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto !important;
	gap: 28px;
	align-items: end;
	margin-bottom: 34px;
}

.work-reference-recent__heading h2 {
	max-width: 620px;
	margin: 10px 0 0;
	font-size: clamp(2.8rem, 4.8vw, 4.7rem);
	line-height: 1.04;
}

.work-reference-recent__heading .wp-block-column:last-child {
	display: flex;
	justify-content: flex-end;
}

.work-reference-recent .button--outline .wp-block-button__link {
	min-height: 50px;
	padding-inline: 28px;
	background: transparent;
	border: 1px solid rgba(205, 170, 69, 0.72);
	color: var(--color-navy);
}

.work-reference-grid {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 22px !important;
}

.work-reference-project {
	overflow: hidden;
	background: var(--color-card);
	border: 1px solid rgba(11, 26, 38, 0.12);
	border-radius: 10px;
	box-shadow: 0 16px 44px rgba(11, 26, 38, 0.06);
}

.work-reference-project figure {
	margin: 0;
}

.work-reference-project img {
	display: block;
	width: 100%;
	aspect-ratio: 1.18;
	object-fit: cover;
}

.work-reference-project h3,
.work-reference-project p {
	margin-right: 24px;
	margin-left: 24px;
}

.work-reference-project h3 {
	margin-top: 24px;
	margin-bottom: 0;
	font-size: 1.42rem;
}

.work-reference-category {
	margin-top: 14px;
	margin-bottom: 12px;
	color: var(--color-gold-dark);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.work-reference-project p:not(.work-reference-category):not(.work-reference-link) {
	color: rgba(11, 26, 38, 0.66);
	font-size: 0.9rem;
	line-height: 1.65;
}

.work-reference-project .work-reference-link {
	margin-bottom: 24px;
}

.post-type-archive-project .site-nav__list a[href$="/work/"] {
	position: relative;
	color: var(--color-gold);
}

.post-type-archive-project .site-nav__list a[href$="/work/"]::after {
	position: absolute;
	right: 0;
	bottom: -18px;
	left: 0;
	height: 2px;
	background: var(--color-gold);
	content: "";
}

@media (max-width: 980px) {
	.work-reference-hero__grid,
	.work-reference-case,
	.work-reference-recent__heading {
		grid-template-columns: 1fr !important;
	}

	.work-reference-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 640px) {
	.work-reference-hero h1 {
		font-size: clamp(3rem, 15vw, 4.2rem);
	}

	.work-reference-grid {
		grid-template-columns: 1fr !important;
	}
}

/* About reference page. */
.about-reference-page {
	background: var(--color-ivory);
}

.about-reference-hero {
	padding: clamp(68px, 8vw, 88px) 0 clamp(62px, 7vw, 82px);
	background:
		radial-gradient(circle at 16% 25%, rgba(29, 67, 88, 0.42), transparent 34%),
		var(--color-navy);
	color: var(--color-card);
}

.about-reference-hero__grid {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr) !important;
	gap: clamp(56px, 9vw, 104px) !important;
	align-items: center;
}

.about-reference-hero h1 {
	max-width: 780px;
	margin: 0;
	color: #fffaf2;
	font-size: clamp(4rem, 5.75vw, 6rem);
	line-height: 1.02;
}

.about-reference-hero__content > p:not(.eyebrow):not(.about-reference-link) {
	max-width: 580px;
	margin-top: 28px;
	color: rgba(255, 252, 246, 0.75);
	font-size: 1rem;
	line-height: 1.8;
}

.about-reference-link {
	position: relative;
	display: inline-flex;
	width: fit-content;
	margin-top: 28px;
	color: var(--color-card);
	font-weight: 900;
}

.about-reference-link::after {
	position: absolute;
	right: 0;
	bottom: -8px;
	left: 0;
	height: 2px;
	background: var(--color-gold);
	content: "";
}

.about-reference-hero__visual {
	position: relative;
	min-height: 500px;
}

.about-reference-hero-image {
	margin: 0 !important;
	overflow: hidden;
	border-radius: 14px;
	box-shadow: 0 28px 76px rgba(0, 0, 0, 0.28);
}

.about-reference-hero-image img {
	display: block;
	width: 100%;
	aspect-ratio: 0.88;
	object-fit: cover;
	object-position: center;
}

.about-reference-hero-note {
	position: absolute;
	right: auto;
	bottom: 34px;
	left: -64px;
	width: min(320px, calc(100% - 36px));
	padding: 22px 26px;
	background: rgba(8, 20, 30, 0.84);
	border: 1px solid rgba(255, 252, 246, 0.14);
	border-radius: 14px;
	color: var(--color-card);
	backdrop-filter: blur(16px);
}

.about-reference-hero-note p {
	position: relative;
	margin: 0;
	padding-left: 68px;
	color: rgba(255, 252, 246, 0.82);
	line-height: 1.55;
}

.about-reference-hero-note span {
	position: absolute;
	left: 0;
	top: 50%;
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	color: var(--color-gold);
	transform: translateY(-50%);
}

.about-reference-hero-note span::before {
	font-size: 2rem;
	content: "\2637";
}

.about-reference-hero-note strong {
	color: var(--color-card);
}

.about-reference-approach {
	padding: clamp(62px, 8vw, 92px) 0 clamp(70px, 8vw, 98px);
	background: var(--color-ivory);
}

.about-reference-approach__grid {
	display: grid !important;
	grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.9fr) !important;
	gap: clamp(52px, 9vw, 108px) !important;
	align-items: start;
}

.about-reference-approach h2 {
	max-width: 560px;
	margin: 10px 0 0;
	font-size: clamp(3rem, 5vw, 4.75rem);
	line-height: 1.04;
}

.about-reference-approach h2::after {
	display: block;
	width: 78px;
	height: 2px;
	margin: 34px 0;
	background: var(--color-gold);
	content: "";
}

.about-reference-approach__body p:not(.eyebrow) {
	max-width: 610px;
	color: rgba(11, 26, 38, 0.68);
	line-height: 1.75;
}

.about-reference-quote {
	position: relative;
	margin-top: 46px;
	padding: 44px;
	background: var(--color-card);
	border: 1px solid rgba(11, 26, 38, 0.14);
	border-radius: 12px;
	box-shadow: 0 18px 52px rgba(11, 26, 38, 0.08);
}

.about-reference-quote::before {
	display: block;
	margin-bottom: 10px;
	color: var(--color-gold);
	font-family: var(--font-heading);
	font-size: 4rem;
	line-height: 0.35;
	content: "\201C";
}

.about-reference-quote p:first-child {
	color: rgba(11, 26, 38, 0.78);
	line-height: 1.75;
}

.about-reference-quote p:last-child {
	margin-top: 26px;
	color: rgba(11, 26, 38, 0.62);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.about-reference-values {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 22px !important;
	margin-top: 56px;
}

.about-reference-value {
	position: relative;
	min-height: 280px;
	padding: 34px 30px;
	background: var(--color-card);
	border: 1px solid rgba(11, 26, 38, 0.08);
	border-radius: 10px;
	box-shadow: 0 18px 48px rgba(11, 26, 38, 0.06);
}

.about-reference-value span {
	color: var(--color-gold);
	font-family: var(--font-heading);
	font-size: 2.65rem;
	font-weight: 700;
}

.about-reference-value::after {
	position: absolute;
	right: 30px;
	top: 34px;
	color: var(--color-gold);
	font-size: 2.1rem;
	content: "\25CE";
}

.about-reference-value:nth-child(2)::after {
	content: "\2637";
}

.about-reference-value:nth-child(3)::after {
	content: "\25C7";
}

.about-reference-value:nth-child(4)::after {
	content: "\2197";
}

.about-reference-value h3 {
	margin: 32px 0 18px;
	font-size: 1.55rem;
}

.about-reference-value p:not(:first-child) {
	color: rgba(11, 26, 38, 0.72);
	line-height: 1.7;
}

.about-reference-timeline {
	padding: clamp(78px, 9vw, 112px) 0 clamp(64px, 8vw, 92px);
	background:
		radial-gradient(circle at 20% 40%, rgba(29, 67, 88, 0.22), transparent 30%),
		var(--color-navy);
}

.about-reference-timeline__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1px 1fr;
	gap: 70px;
	align-items: center;
	min-height: 470px;
}

.about-reference-timeline-line {
	grid-column: 2;
	grid-row: 1;
	width: 1px;
	height: 380px;
	background: rgba(205, 170, 69, 0.7);
}

.about-reference-timeline-line::before,
.about-reference-timeline-line::after {
	position: absolute;
	left: 50%;
	width: 14px;
	height: 14px;
	background: var(--color-gold);
	border-radius: 50%;
	transform: translateX(-50%);
	content: "";
}

.about-reference-timeline-line::before {
	top: 118px;
}

.about-reference-timeline-line::after {
	bottom: 118px;
}

.about-reference-timeline-card {
	width: min(100%, 360px);
	padding: 34px;
	background: rgba(255, 252, 246, 0.08);
	border: 1px solid rgba(255, 252, 246, 0.16);
	border-radius: 12px;
	color: var(--color-card);
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
}

.about-reference-timeline-card--left {
	justify-self: end;
}

.about-reference-timeline-card--right {
	grid-column: 3;
	margin-top: 154px;
}

.about-reference-timeline-card h3 {
	margin: 0 0 18px;
	color: var(--color-gold);
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 700;
}

.about-reference-timeline-card h4 {
	margin: 0 0 16px;
	color: var(--color-card);
	font-size: 1.7rem;
	line-height: 1.15;
}

.about-reference-timeline-card p {
	color: rgba(255, 252, 246, 0.75);
	line-height: 1.7;
}

.about-reference-orbit {
	position: absolute;
	display: grid;
	width: 96px;
	height: 96px;
	place-items: center;
	background: rgba(255, 252, 246, 0.04);
	border: 1px solid rgba(255, 252, 246, 0.12);
	border-radius: 50%;
	color: var(--color-gold);
}

.about-reference-orbit--left {
	left: 58px;
	top: 170px;
}

.about-reference-orbit--right {
	right: 74px;
	bottom: 112px;
}

.about-reference-orbit::before {
	font-size: 2rem;
	content: "\2691";
}

.about-reference-orbit--right::before {
	content: "\2197";
}

.about-reference-journey {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.about-reference-journey .wp-block-button__link {
	min-height: 48px;
	padding: 0 34px;
	background: transparent;
	border: 1px solid var(--color-gold);
	color: var(--color-gold);
}

.page-id-19 .site-nav__list a[href$="/about/"] {
	position: relative;
	color: var(--color-gold);
}

.page-id-19 .site-nav__list a[href$="/about/"]::after {
	position: absolute;
	right: 0;
	bottom: -18px;
	left: 0;
	height: 2px;
	background: var(--color-gold);
	content: "";
}

@media (max-width: 980px) {
	.about-reference-hero__grid,
	.about-reference-approach__grid,
	.about-reference-timeline__inner {
		grid-template-columns: 1fr !important;
	}

	.about-reference-values {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.about-reference-hero-note,
	.about-reference-orbit,
	.about-reference-timeline-line {
		position: static;
	}

	.about-reference-hero-note {
		width: auto;
		margin: -60px 24px 0;
	}

	.about-reference-timeline-card--left,
	.about-reference-timeline-card--right {
		grid-column: auto;
		justify-self: stretch;
		margin-top: 0;
	}

	.about-reference-journey {
		position: static;
		transform: none;
		justify-content: center;
	}
}

@media (max-width: 640px) {
	.about-reference-hero h1 {
		font-size: clamp(3rem, 15vw, 4.2rem);
	}

	.about-reference-values {
		grid-template-columns: 1fr !important;
	}
}

/* Blog reference page. */
.site-nav__list a.is-current {
	position: relative;
	color: var(--color-gold);
}

.site-nav__list a.is-current::after {
	position: absolute;
	right: 0;
	bottom: -18px;
	left: 0;
	height: 2px;
	background: var(--color-gold);
	content: "";
}

.blog-reference-page {
	background: var(--color-cream);
}

.blog-reference-hero {
	padding: clamp(76px, 8vw, 104px) 0 clamp(58px, 7vw, 76px);
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(0deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		var(--color-navy);
	background-size: 96px 96px;
	color: var(--color-card);
}

.blog-reference-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
	gap: clamp(56px, 9vw, 104px);
	align-items: center;
}

.blog-reference-hero h1 {
	max-width: 700px;
	margin: 0;
	color: var(--color-card);
	font-size: clamp(4.3rem, 7.2vw, 6.9rem);
	line-height: 0.98;
}

.blog-reference-hero h1 em {
	display: block;
	color: var(--color-gold);
	font-style: italic;
	font-weight: 400;
}

.blog-reference-hero__content > p:not(.eyebrow) {
	max-width: 430px;
	margin-top: 28px;
	color: rgba(255, 252, 246, 0.82);
	font-size: 1.12rem;
	line-height: 1.75;
}

.blog-reference-pills {
	gap: 18px !important;
	margin-top: 40px;
}

.blog-reference-pills .wp-block-button__link {
	min-height: 48px;
	padding: 0 28px;
	background: transparent;
	border: 1px solid var(--color-gold);
	border-radius: 999px;
	color: var(--color-gold);
	font-weight: 800;
}

.blog-reference-pills .is-active .wp-block-button__link {
	background: var(--gold-gradient);
	color: var(--color-navy);
}

.blog-reference-hero__visual {
	position: relative;
	margin: 0;
}

.blog-reference-hero-image {
	height: 548px;
	margin: 0;
	overflow: hidden;
	border: 1px solid rgba(255, 252, 246, 0.14);
	border-radius: 16px;
}

.blog-reference-hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-reference-quote {
	position: absolute;
	right: auto;
	bottom: 28px;
	left: 28px;
	width: min(320px, calc(100% - 56px));
	padding: 26px 30px;
	background: rgba(8, 21, 32, 0.86);
	border: 1px solid rgba(255, 252, 246, 0.16);
	border-radius: 14px;
	backdrop-filter: blur(16px);
}

.blog-reference-quote p {
	margin: 0;
	color: var(--color-card);
	font-weight: 600;
	line-height: 1.65;
}

.blog-reference-quote strong {
	display: block;
	margin-bottom: 8px;
	color: var(--color-gold);
	font-family: var(--font-heading);
	font-size: 2rem;
	line-height: 1;
}

.blog-reference-latest {
	padding: clamp(68px, 8vw, 92px) 0;
	background: var(--color-cream);
}

.blog-reference-latest__heading {
	align-items: center !important;
	margin-bottom: 34px;
}

.blog-reference-latest__heading h2 {
	margin: 0;
	font-size: clamp(2.4rem, 4.2vw, 3.4rem);
}

.blog-reference-view-all {
	margin: 0;
	text-align: right;
	font-weight: 900;
}

.blog-reference-view-all span {
	display: inline-grid;
	width: 36px;
	height: 36px;
	margin-left: 14px;
	place-items: center;
	background: var(--gold-gradient);
	border-radius: 50%;
	color: var(--color-navy);
}

.blog-reference-articles {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 24px !important;
	margin: 0 !important;
}

.blog-reference-card {
	min-width: 0;
	overflow: hidden;
	background: var(--color-card);
	border: 1px solid rgba(11, 26, 38, 0.1);
	border-radius: 12px;
	box-shadow: 0 20px 52px rgba(11, 26, 38, 0.08);
}

.blog-reference-card__grid {
	display: grid !important;
	grid-template-columns: 58% 42% !important;
	gap: 0 !important;
	height: 100%;
	margin: 0 !important;
}

.blog-reference-card__body {
	display: flex;
	flex-direction: column;
	min-height: 348px;
	padding: 30px 28px;
}

.blog-reference-card__label {
	margin: 0 0 22px;
	color: var(--color-gold);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.blog-reference-card h3 {
	margin: 0 0 18px;
	font-size: 1.58rem;
	line-height: 1.12;
}

.blog-reference-card p:not(.blog-reference-card__label):not(.blog-reference-author) {
	color: rgba(11, 26, 38, 0.68);
	line-height: 1.65;
}

.blog-reference-author {
	position: relative;
	margin: auto 0 0;
	padding-left: 54px;
	color: var(--color-navy);
	font-size: 0.86rem;
	line-height: 1.55;
}

.blog-reference-author span {
	position: absolute;
	left: 0;
	top: 0;
	display: grid;
	width: 40px;
	height: 40px;
	place-items: center;
	background: var(--color-navy);
	border-radius: 50%;
	color: var(--color-gold);
	font-weight: 900;
}

.blog-reference-author strong {
	font-weight: 900;
}

.blog-reference-card__media figure,
.blog-reference-card__media .wp-block-image {
	height: 100%;
	margin: 0;
}

.blog-reference-card__media img {
	width: 100%;
	height: 100%;
	min-height: 348px;
	object-fit: cover;
}

.blog-reference-chart {
	position: relative;
	min-height: 348px;
	background:
		linear-gradient(90deg, rgba(205, 170, 69, 0.36) 1px, transparent 1px),
		linear-gradient(0deg, rgba(205, 170, 69, 0.28) 1px, transparent 1px),
		var(--color-navy);
	background-size: 36px 36px;
}

.blog-reference-chart::before {
	position: absolute;
	right: -18px;
	bottom: 74px;
	width: 210px;
	height: 126px;
	background: none;
	border-bottom: 5px solid var(--color-gold);
	border-left: 5px solid transparent;
	clip-path: polygon(0 83%, 18% 67%, 32% 72%, 46% 48%, 62% 58%, 78% 26%, 100% 8%, 100% 16%, 80% 36%, 64% 68%, 47% 58%, 33% 82%, 18% 78%, 0 92%);
	content: "";
}

.blog-reference-chart p {
	display: none;
}

.blog-reference-support {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 24px !important;
	margin-top: 44px !important;
}

.blog-reference-newsletter,
.blog-reference-info-card {
	min-height: 360px;
	padding: 34px 32px;
	border-radius: 12px;
}

.blog-reference-newsletter {
	position: relative;
	overflow: hidden;
	background: var(--color-navy);
	color: var(--color-card);
}

.blog-reference-newsletter::after {
	position: absolute;
	right: 32px;
	top: 34px;
	width: 72px;
	height: 84px;
	background-image: radial-gradient(circle, rgba(205, 170, 69, 0.72) 1px, transparent 1.5px);
	background-size: 14px 14px;
	content: "";
}

.blog-reference-icon {
	display: grid;
	width: 54px;
	height: 54px;
	margin: 0 0 26px;
	place-items: center;
	background: rgba(205, 170, 69, 0.12);
	border: 1px solid rgba(205, 170, 69, 0.42);
	border-radius: 50%;
	color: var(--color-gold);
	font-weight: 900;
}

.blog-reference-newsletter h3,
.blog-reference-info-card h3 {
	max-width: 300px;
	margin: 0 0 18px;
	font-size: clamp(2rem, 3vw, 2.75rem);
	line-height: 1.05;
}

.blog-reference-newsletter p:not(.blog-reference-icon):not(.blog-reference-field),
.blog-reference-info-card p:not(.blog-reference-icon):not(.blog-reference-card__label):not(.blog-reference-link) {
	color: rgba(255, 252, 246, 0.76);
	line-height: 1.7;
}

.blog-reference-info-card p:not(.blog-reference-icon):not(.blog-reference-card__label):not(.blog-reference-link) {
	color: rgba(11, 26, 38, 0.68);
}

.blog-reference-field {
	margin: 26px 0 10px;
	padding: 15px 18px;
	background: rgba(255, 252, 246, 0.06);
	border: 1px solid rgba(255, 252, 246, 0.12);
	border-radius: 7px;
	color: rgba(255, 252, 246, 0.62);
}

.blog-reference-newsletter .wp-block-button__link {
	width: 100%;
	justify-content: space-between;
	background: var(--gold-gradient);
	color: var(--color-navy);
}

.blog-reference-info-card {
	background: var(--color-card);
	border: 1px solid rgba(11, 26, 38, 0.1);
}

.blog-reference-link {
	margin-top: 34px;
	color: var(--color-gold);
	font-weight: 900;
}

@media (max-width: 1080px) {
	.blog-reference-hero__grid,
	.blog-reference-articles,
	.blog-reference-support {
		grid-template-columns: 1fr !important;
	}

	.blog-reference-hero__grid {
		gap: 42px;
	}

	.blog-reference-card__grid {
		grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr) !important;
	}
}

@media (max-width: 700px) {
	.blog-reference-hero {
		padding-top: 60px;
	}

	.blog-reference-hero h1 {
		font-size: clamp(3.2rem, 15vw, 4.6rem);
	}

	.blog-reference-hero-image {
		height: 430px;
	}

	.blog-reference-quote {
		position: static;
		width: auto;
		margin: -96px 20px 0;
	}

	.blog-reference-latest__heading {
		display: block !important;
	}

	.blog-reference-view-all {
		margin-top: 18px;
		text-align: left;
	}

	.blog-reference-card__grid {
		grid-template-columns: 1fr !important;
	}

	.blog-reference-card__body,
	.blog-reference-card__media img,
	.blog-reference-chart {
		min-height: 260px;
	}
}

/* Mobile final cleanup for editable reference pages. */
html,
body {
	max-width: 100%;
	overflow-x: hidden;
}

.home-reference-page *,
.services-reference-page *,
.work-reference-page *,
.about-reference-page *,
.blog-reference-page *,
.contact-shot-page * {
	box-sizing: border-box;
	min-width: 0;
}

.home-reference-page img,
.services-reference-page img,
.work-reference-page img,
.about-reference-page img,
.blog-reference-page img,
.contact-shot-page img {
	max-width: 100%;
}

@media (max-width: 1180px) {
	.home-reference-hero__grid,
	.services-reference-hero__grid,
	.work-reference-hero__grid,
	.about-reference-hero__grid,
	.blog-reference-hero__grid,
	.contact-shot-hero__grid,
	.contact-shot-main__grid {
		width: min(100%, calc(100vw - 48px));
	}
}

@media (max-width: 900px) {
	.home-reference-hero__grid,
	.services-reference-hero__grid,
	.work-reference-hero__grid,
	.about-reference-hero__grid,
	.blog-reference-hero__grid,
	.contact-shot-hero__grid,
	.contact-shot-main__grid,
	.services-reference-card__grid,
	.work-reference-case,
	.work-reference-recent__heading,
	.about-reference-approach__grid,
	.blog-reference-card__grid {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 32px !important;
	}

	.home-reference-services__grid,
	.home-reference-testimonials__grid,
	.services-reference-stats,
	.work-reference-grid,
	.about-reference-values,
	.blog-reference-articles,
	.blog-reference-support {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 22px !important;
	}

	.home-reference-hero-stats,
	.home-reference-stats__grid,
	.services-reference-feature-row,
	.contact-shot-trust {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 18px !important;
	}

	.home-reference-hero-image,
	.services-reference-hero-image,
	.work-reference-hero-image,
	.about-reference-hero-image,
	.blog-reference-hero-image,
	.contact-shot-image {
		height: auto;
		min-height: 0;
		aspect-ratio: 4 / 3;
	}

	.home-reference-hero-image img,
	.services-reference-hero-image img,
	.work-reference-hero-image img,
	.about-reference-hero-image img,
	.blog-reference-hero-image img,
	.contact-shot-image img {
		height: 100%;
	}

	.services-reference-card__media img,
	.work-reference-case__image img,
	.work-reference-project img,
	.blog-reference-card__media img {
		min-height: 260px;
	}

	.about-reference-hero-note,
	.work-reference-hero-card,
	.blog-reference-quote,
	.contact-shot-email {
		position: static;
		width: auto;
		margin: -58px 18px 0;
	}

	.about-reference-timeline__inner {
		min-height: 0;
	}

	.about-reference-timeline-line,
	.about-reference-orbit {
		display: none;
	}

	.about-reference-timeline-card,
	.about-reference-timeline-card--left,
	.about-reference-timeline-card--right {
		width: 100%;
		margin: 0;
		justify-self: stretch;
	}
}

@media (max-width: 640px) {
	.home-reference-page .container,
	.services-reference-page .container,
	.work-reference-page .container,
	.about-reference-page .container,
	.blog-reference-page .container,
	.contact-shot-page .container {
		width: min(100%, calc(100vw - 32px));
	}

	.home-reference-hero,
	.services-reference-hero,
	.work-reference-hero,
	.about-reference-hero,
	.blog-reference-hero,
	.contact-shot-hero {
		padding-top: 52px;
		padding-bottom: 52px;
	}

	body.home .home-reference-hero h1,
	.services-reference-hero h1,
	.work-reference-hero h1,
	.about-reference-hero h1,
	.blog-reference-hero h1,
	.contact-shot-hero h1 {
		font-size: clamp(3rem, 13vw, 4.15rem) !important;
		line-height: 1.02 !important;
		overflow-wrap: anywhere;
	}

	.home-reference-section-heading h2,
	.services-reference-heading h2,
	.work-reference-case__body h2,
	.work-reference-recent__heading h2,
	.about-reference-approach h2,
	.blog-reference-latest__heading h2,
	.contact-shot-form-card h2 {
		font-size: clamp(2.15rem, 10vw, 3.2rem) !important;
		line-height: 1.08 !important;
	}

	.home-reference-services__grid,
	.home-reference-testimonials__grid,
	.home-reference-hero-stats,
	.home-reference-stats__grid,
	.services-reference-feature-row,
	.services-reference-stats,
	.work-reference-grid,
	.about-reference-values,
	.blog-reference-articles,
	.blog-reference-support,
	.contact-shot-trust {
		grid-template-columns: 1fr !important;
	}

	.home-reference-cta,
	.contact-shot-form-card,
	.contact-shot-office-card,
	.services-reference-card,
	.work-reference-case,
	.about-reference-value,
	.blog-reference-card,
	.blog-reference-newsletter,
	.blog-reference-info-card {
		border-radius: 10px;
	}

	.home-reference-services .service-card,
	.home-reference-testimonials .testimonial-card,
	.home-reference-cta,
	.services-reference-card__grid,
	.work-reference-case__body,
	.about-reference-value,
	.blog-reference-card__body,
	.blog-reference-newsletter,
	.blog-reference-info-card,
	.contact-shot-form-card,
	.contact-shot-office-card {
		padding: 26px 22px !important;
	}

	.home-reference-cta,
	.work-reference-case,
	.blog-reference-card__grid {
		display: grid !important;
		grid-template-columns: 1fr !important;
	}

	.home-reference-cta .wp-block-buttons,
	.services-reference-hero .button-row,
	.work-reference-hero .wp-block-buttons,
	.blog-reference-pills,
	.contact-shot-form .wp-block-buttons {
		width: 100%;
		gap: 12px !important;
	}

	.home-reference-cta .wp-block-button,
	.services-reference-hero .wp-block-button,
	.work-reference-hero .wp-block-button,
	.blog-reference-pills .wp-block-button,
	.contact-shot-form .wp-block-button {
		width: 100%;
	}

	.home-reference-cta .wp-block-button__link,
	.services-reference-hero .wp-block-button__link,
	.work-reference-hero .wp-block-button__link,
	.blog-reference-pills .wp-block-button__link,
	.contact-shot-form button,
	.contact-shot-form .wp-block-button__link {
		width: 100%;
		justify-content: center;
		text-align: center;
	}

	.home-reference-hero-stats .wp-block-column,
	.home-reference-stats .wp-block-column,
	.services-reference-feature-row .wp-block-column,
	.services-reference-stats .wp-block-column,
	.contact-shot-trust .wp-block-column {
		border-left: 0 !important;
		border-top: 1px solid rgba(255, 252, 246, 0.12);
		padding-top: 16px;
	}

	.blog-reference-card__media img,
	.blog-reference-chart,
	.services-reference-card__media img,
	.work-reference-case__image img,
	.work-reference-project img {
		min-height: 220px;
	}

	.blog-reference-view-all,
	.work-reference-recent__heading .wp-block-column:last-child {
		text-align: left;
	}
}

@media (max-width: 430px) {
	.site-header__inner {
		gap: 12px;
	}

	.site-logo {
		font-size: 1.75rem;
	}

	.site-header__cta {
		min-height: 42px;
		padding-inline: 16px;
		font-size: 0.82rem;
	}

	body.home .home-reference-hero h1,
	.services-reference-hero h1,
	.work-reference-hero h1,
	.about-reference-hero h1,
	.blog-reference-hero h1,
	.contact-shot-hero h1 {
		font-size: clamp(2.75rem, 14vw, 3.55rem) !important;
	}

	.home-reference-hero-image,
	.services-reference-hero-image,
	.work-reference-hero-image,
	.about-reference-hero-image,
	.blog-reference-hero-image,
	.contact-shot-image {
		aspect-ratio: 1 / 1.1;
	}

	.about-reference-hero-note,
	.work-reference-hero-card,
	.blog-reference-quote,
	.contact-shot-email {
		margin: -42px 12px 0;
		padding: 20px;
	}

	.contact-shot-form-card h2,
	.home-reference-section-heading h2,
	.services-reference-heading h2,
	.work-reference-recent__heading h2,
	.about-reference-approach h2,
	.blog-reference-latest__heading h2 {
		font-size: clamp(2rem, 12vw, 2.75rem) !important;
	}
}

/* Final carousel media sizing: override legacy portrait hero rules. */
body.home .home-reference-page .home-reference-services .home-reference-section-heading h2.wp-block-heading {
	max-width: 780px;
	font-size: clamp(2.35rem, 3.2vw, 3.4rem) !important;
	line-height: 1.08 !important;
}

body.home .home-reference-page .home-reference-testimonials h2.wp-block-heading {
	font-size: clamp(2.25rem, 3vw, 3.2rem) !important;
	line-height: 1.08 !important;
}

body.home .home-reference-page .home-reference-hero.is-carousel h1.wp-block-heading {
	max-width: 580px !important;
	font-size: clamp(3.25rem, 4.6vw, 4.9rem) !important;
	line-height: 1.02 !important;
}

body.home .home-reference-page .home-reference-hero.is-carousel .home-reference-hero__media {
	width: min(100%, 420px) !important;
	height: auto !important;
	min-height: 0 !important;
	padding: 22px !important;
	align-self: center;
	justify-self: end;
}

body.home .home-reference-page .home-reference-hero.is-carousel .home-reference-hero-image.wp-block-image {
	width: 100% !important;
	height: auto !important;
	max-height: 320px !important;
	aspect-ratio: 4 / 3 !important;
	position: relative;
	overflow: hidden;
}

body.home .home-reference-page .home-reference-hero.is-carousel .home-reference-hero-image img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	min-height: 0 !important;
	max-height: none !important;
	aspect-ratio: auto !important;
	position: absolute;
	inset: 0;
	object-fit: cover !important;
}

@media (max-width: 980px) {
	body.home .home-reference-page .home-reference-hero.is-carousel h1.wp-block-heading {
		font-size: clamp(2.9rem, 7.5vw, 4.1rem) !important;
	}

	body.home .home-reference-page .home-reference-hero.is-carousel .home-reference-hero__media {
		width: min(82%, 400px) !important;
		justify-self: center;
	}
}

@media (max-width: 640px) {
	body.home .home-reference-page .home-reference-services .home-reference-section-heading h2.wp-block-heading {
		font-size: clamp(2rem, 9vw, 2.65rem) !important;
	}

	body.home .home-reference-page .home-reference-testimonials h2.wp-block-heading {
		font-size: clamp(2rem, 8.5vw, 2.5rem) !important;
	}

	body.home .home-reference-page .home-reference-hero.is-carousel h1.wp-block-heading {
		font-size: clamp(2.45rem, 11vw, 3.25rem) !important;
	}

	body.home .home-reference-page .home-reference-hero.is-carousel .home-reference-hero__media {
		width: min(80%, 340px) !important;
		padding: 16px !important;
	}

	body.home .home-reference-page .home-reference-hero.is-carousel .home-reference-hero-image.wp-block-image {
		max-height: 255px !important;
	}
}

/* Landing hero mobile hardening. */
@media (max-width: 782px) {
	body.home .home-reference-page .home-reference-hero {
		padding: 48px 0 42px !important;
	}

	body.home .home-reference-page .home-reference-hero__grid.wp-block-columns,
	body.home .home-reference-page .home-reference-hero-stats.wp-block-columns {
		display: grid !important;
		width: min(100%, calc(100vw - 32px)) !important;
		max-width: none !important;
		margin-right: auto !important;
		margin-left: auto !important;
		grid-template-columns: 1fr !important;
		flex-wrap: wrap !important;
		align-items: stretch !important;
	}

	body.home .home-reference-page .home-reference-hero__grid.wp-block-columns {
		gap: 34px !important;
	}

	body.home .home-reference-page .home-reference-hero__grid > .wp-block-column,
	body.home .home-reference-page .home-reference-hero-stats > .wp-block-column {
		flex-basis: auto !important;
		flex-grow: 0 !important;
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
	}

	body.home .home-reference-page .home-reference-hero h1.wp-block-heading {
		max-width: 100% !important;
		margin-top: 12px !important;
		font-size: clamp(3.05rem, 13.2vw, 4.35rem) !important;
		line-height: 1.03 !important;
		overflow-wrap: normal !important;
		word-break: normal !important;
	}

	body.home .home-reference-page .home-reference-hero h1.wp-block-heading em {
		display: inline !important;
	}

	body.home .home-reference-page .home-reference-hero__content > p:not(.eyebrow) {
		max-width: 100% !important;
		margin-top: 20px !important;
		font-size: 1rem !important;
		line-height: 1.65 !important;
	}

	body.home .home-reference-page .home-reference-hero .button-row.wp-block-buttons {
		display: grid !important;
		grid-template-columns: 1fr 1fr !important;
		width: 100% !important;
		gap: 12px !important;
		margin-top: 26px !important;
	}

	body.home .home-reference-page .home-reference-hero .button-row .wp-block-button {
		width: 100% !important;
	}

	body.home .home-reference-page .home-reference-hero .button-row .wp-block-button__link {
		width: 100% !important;
		min-height: 48px !important;
		padding-inline: 14px !important;
		justify-content: center !important;
		text-align: center !important;
	}

	body.home .home-reference-page .home-reference-hero-stats.wp-block-columns {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 0 !important;
		margin-top: 28px !important;
		padding-top: 20px !important;
		border-top: 1px solid rgba(255, 252, 246, 0.16) !important;
	}

	body.home .home-reference-page .home-reference-hero-stats .wp-block-column {
		padding: 12px 12px 12px 0 !important;
		border-left: 0 !important;
		border-top: 0 !important;
	}

	body.home .home-reference-page .home-reference-hero-stats p {
		font-size: 0.82rem !important;
		line-height: 1.45 !important;
	}

	body.home .home-reference-page .home-reference-hero-stats strong {
		font-size: 2rem !important;
		line-height: 1 !important;
	}

	body.home .home-reference-page .home-reference-hero__media {
		order: 2;
	}

	body.home .home-reference-page .home-reference-hero-image.wp-block-image {
		width: 100% !important;
		height: auto !important;
		margin: 0 !important;
		aspect-ratio: 4 / 5 !important;
		border-radius: 14px !important;
	}

	body.home .home-reference-page .home-reference-hero-image img {
		display: block !important;
		width: 100% !important;
		height: 100% !important;
		object-fit: cover !important;
	}
}

@media (max-width: 430px) {
	body.home .home-reference-page .home-reference-hero {
		padding-top: 40px !important;
	}

	body.home .home-reference-page .home-reference-hero h1.wp-block-heading {
		font-size: clamp(2.65rem, 12.8vw, 3.55rem) !important;
	}

	body.home .home-reference-page .home-reference-hero .button-row.wp-block-buttons,
	body.home .home-reference-page .home-reference-hero-stats.wp-block-columns {
		grid-template-columns: 1fr !important;
	}

	body.home .home-reference-page .home-reference-hero-image.wp-block-image {
		aspect-ratio: 1 / 1.18 !important;
	}
}

/* Landing page typography scale (hero intentionally excluded). */
body.home .site-nav__list a {
	font-size: 0.92rem;
}

body.home .site-header__cta {
	font-size: 0.92rem;
}

body.home .home-reference-page .home-reference-services .home-reference-section-heading h2.wp-block-heading {
	font-size: clamp(2.2rem, 2.8vw, 3rem) !important;
}

body.home .home-reference-page .home-reference-section-heading > p:not(.eyebrow) {
	font-size: 0.96rem;
	line-height: 1.65;
}

body.home .home-reference-page .home-reference-services .service-card__number {
	font-size: 2rem;
}

body.home .home-reference-page .home-reference-services .service-card h3 {
	font-size: 1.35rem;
	line-height: 1.16;
}

body.home .home-reference-page .home-reference-services .service-card p:not(.service-card__number):not(.service-card__link) {
	font-size: 0.9rem;
	line-height: 1.65;
}

body.home .home-reference-page .home-reference-services .service-card__link {
	font-size: 0.9rem;
}

body.home .home-reference-page .home-reference-stats p {
	font-size: 0.8rem;
}

body.home .home-reference-page .home-reference-stats strong {
	font-size: clamp(2rem, 2.4vw, 2.55rem);
}

body.home .home-reference-page .home-reference-testimonials h2.wp-block-heading {
	font-size: clamp(2.15rem, 2.7vw, 2.85rem) !important;
}

body.home .home-reference-page .home-reference-testimonials .testimonial-card::before {
	font-size: 3.2rem;
}

body.home .home-reference-page .home-reference-testimonials .testimonial-card > p:first-child {
	font-size: 0.94rem;
	line-height: 1.65;
}

body.home .home-reference-page .home-reference-testimonials .testimonial-card > p:last-child {
	font-size: 0.8rem;
}

body.home .home-reference-page .home-reference-testimonials .testimonial-card strong {
	font-size: 0.92rem;
}

body.home .home-reference-page .home-reference-cta h2.wp-block-heading {
	font-size: clamp(1.9rem, 2.4vw, 2.4rem) !important;
}

body.home .home-reference-page .home-reference-cta p {
	font-size: 0.92rem;
}

body.home .home-reference-page .home-reference-cta .wp-block-button__link {
	font-size: 0.9rem;
}

body.home .site-footer .site-logo {
	font-size: 1.7rem;
}

body.home .site-footer h2 {
	font-size: 0.76rem;
}

body.home .site-footer p,
body.home .site-footer .footer-links a,
body.home .site-footer__bottom {
	font-size: 0.9rem;
	line-height: 1.6;
}

@media (max-width: 640px) {
	body.home .home-reference-page .home-reference-services .home-reference-section-heading h2.wp-block-heading,
	body.home .home-reference-page .home-reference-testimonials h2.wp-block-heading {
		font-size: clamp(1.95rem, 8vw, 2.35rem) !important;
	}

	body.home .home-reference-page .home-reference-cta h2.wp-block-heading {
		font-size: clamp(1.75rem, 7vw, 2.1rem) !important;
	}
}

/* Inner-page typography scale. */
body:not(.home) .site-nav__list a,
body:not(.home) .site-header__cta {
	font-size: 0.92rem;
}

.services-reference-hero h1.wp-block-heading,
.work-reference-hero h1.wp-block-heading,
.about-reference-hero h1.wp-block-heading,
.blog-reference-hero h1.wp-block-heading,
.contact-shot-hero h1.wp-block-heading {
	font-size: clamp(3.15rem, 4.5vw, 4.8rem) !important;
	line-height: 1.02 !important;
}

.services-reference-hero__content > p:not(.eyebrow),
.work-reference-hero__content > p:not(.eyebrow),
.about-reference-hero__content > p:not(.eyebrow):not(.about-reference-link),
.blog-reference-hero__content > p:not(.eyebrow),
.contact-shot-hero .contact-redesign-hero__content > p:not(.eyebrow) {
	font-size: 0.95rem;
	line-height: 1.7;
}

.services-reference-heading h2.wp-block-heading,
.work-reference-case__body h2.wp-block-heading,
.work-reference-recent__heading h2.wp-block-heading,
.about-reference-approach h2.wp-block-heading,
.blog-reference-latest__heading h2.wp-block-heading,
.contact-shot-form-card h2.wp-block-heading {
	font-size: clamp(2.2rem, 3.1vw, 3.2rem) !important;
	line-height: 1.08 !important;
}

.services-reference-heading > p:not(.eyebrow),
.services-reference-card__body > p:not(.eyebrow),
.work-reference-case__body > p:not(.eyebrow):not(.work-reference-link),
.about-reference-approach__body p:not(.eyebrow),
.blog-reference-card p:not(.blog-reference-card__label):not(.blog-reference-author),
.contact-shot-form-card > p:not(.eyebrow) {
	font-size: 0.92rem;
	line-height: 1.65;
}

.services-reference-card__body h3.wp-block-heading {
	font-size: clamp(1.7rem, 2.2vw, 2.25rem) !important;
	line-height: 1.1 !important;
}

.services-reference-card__number p,
.services-reference-stats strong {
	font-size: 2.4rem;
}

.services-reference-feature-row p,
.services-reference-stats p {
	font-size: 0.82rem;
}

.work-reference-hero-card h3,
.work-reference-project h3,
.about-reference-value h3,
.blog-reference-card h3,
.contact-shot-office-card h3 {
	font-size: 1.3rem;
	line-height: 1.2;
}

.work-reference-project p:not(.work-reference-category):not(.work-reference-link),
.about-reference-value p:not(:first-child),
.about-reference-quote p:first-child,
.about-reference-timeline-card p,
.blog-reference-newsletter p,
.blog-reference-info-card p,
.contact-shot-lines p {
	font-size: 0.9rem;
	line-height: 1.65;
}

.about-reference-value span {
	font-size: 2.2rem;
}

.about-reference-timeline-card h3 {
	font-size: 1.7rem;
}

.about-reference-timeline-card h4 {
	font-size: 1.4rem;
}

.blog-reference-newsletter h3,
.blog-reference-info-card h3 {
	font-size: clamp(1.65rem, 2.2vw, 2.15rem) !important;
	line-height: 1.12;
}

.blog-reference-author,
.blog-reference-card__label,
.work-reference-category {
	font-size: 0.76rem;
}

.services-reference-page .wp-block-button__link,
.work-reference-page .wp-block-button__link,
.about-reference-page .wp-block-button__link,
.blog-reference-page .wp-block-button__link,
.contact-shot-page .wp-block-button__link,
.contact-shot-form button {
	font-size: 0.9rem;
}

body:not(.home) .site-footer .site-logo {
	font-size: 1.7rem;
}

body:not(.home) .site-footer h2 {
	font-size: 0.76rem;
}

body:not(.home) .site-footer p,
body:not(.home) .site-footer .footer-links a,
body:not(.home) .site-footer__bottom {
	font-size: 0.9rem;
	line-height: 1.6;
}

@media (max-width: 640px) {
	.services-reference-hero h1.wp-block-heading,
	.work-reference-hero h1.wp-block-heading,
	.about-reference-hero h1.wp-block-heading,
	.blog-reference-hero h1.wp-block-heading,
	.contact-shot-hero h1.wp-block-heading {
		font-size: clamp(2.65rem, 12vw, 3.35rem) !important;
	}

	.services-reference-heading h2.wp-block-heading,
	.work-reference-case__body h2.wp-block-heading,
	.work-reference-recent__heading h2.wp-block-heading,
	.about-reference-approach h2.wp-block-heading,
	.blog-reference-latest__heading h2.wp-block-heading,
	.contact-shot-form-card h2.wp-block-heading {
		font-size: clamp(1.95rem, 8vw, 2.45rem) !important;
	}
}

/* Final mobile landing-hero containment overrides. */
@media (max-width: 782px) {
	body.home .home-reference-page .home-reference-hero.is-carousel .home-reference-hero__media {
		width: min(100%, 520px) !important;
		max-width: 100% !important;
		padding: 14px !important;
		justify-self: center !important;
	}

	body.home .home-reference-page .home-reference-hero.is-carousel .home-reference-hero-image.wp-block-image {
		max-height: none !important;
		aspect-ratio: 4 / 3 !important;
	}

	body.home .home-reference-page .home-reference-hero-stats.wp-block-columns {
		display: none !important;
		margin: 0 !important;
		padding: 0 !important;
		border: 0 !important;
	}

	.home-hero-carousel__controls {
		position: static;
		width: min(100%, calc(100vw - 32px));
		margin: 22px auto 0;
		justify-content: center;
	}
}
