:root {
	--color-heading: #263238;
	--color-gold: #b08d3c;
	--color-gold-dark: #8a6f2f;
	--color-gold-soft: #d8c7a0;
	--color-gold-light: #f3ebdd;
	--color-ink: #4a4a46;
	--color-muted: #4a4a46;
	--color-border: #e5ded1;
	--color-surface: #f8f6f1;
	--color-surface-low: #f1ede5;
	--color-surface-alt: #f3ebdd;
	--color-white: #fff;
	--font-heading: "Montserrat", Arial, sans-serif;
	--font-body: "Inter", Arial, sans-serif;
	--container: 1200px;
	--wide-container: 1600px;
	--gutter: clamp(20px, 4vw, 32px);
	--section-space: clamp(72px, 8vw, 104px);
	--radius-sm: 4px;
	--radius: 8px;
	--shadow-soft: 0 4px 20px rgb(27 28 28 / 7%);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-surface);
	color: var(--color-ink);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

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

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

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

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

button,
[type="button"],
[type="submit"] {
	cursor: pointer;
}

h1,
h2,
h3,
h4,
p {
	margin-top: 0;
}

h1,
h2,
h3,
h4 {
	color: var(--color-heading);
	font-family: var(--font-heading);
	line-height: 1.2;
}

h1 {
	font-size: clamp(2.25rem, 5vw, 3.75rem);
	letter-spacing: -0.025em;
}

h2 {
	font-size: clamp(2rem, 4vw, 2.75rem);
	letter-spacing: -0.02em;
}

h3 {
	font-size: 1.35rem;
}

:focus-visible {
	outline: 3px solid var(--color-gold-dark);
	outline-offset: 3px;
}

.hero-slider :focus-visible,
.page-hero :focus-visible {
	outline-color: var(--color-gold-dark);
}

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

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

.screen-reader-text:focus {
	z-index: 100000;
	top: 8px;
	left: 8px;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	background: var(--color-white);
	color: var(--color-ink);
	font-weight: 700;
}

.site-header {
	position: sticky;
	z-index: 1000;
	top: 0;
	width: 100%;
	background: rgb(255 255 255 / 97%);
	box-shadow: 0 1px 10px rgb(27 28 28 / 7%);
	backdrop-filter: blur(12px);
}

.admin-bar .site-header {
	top: 32px;
}

.site-header__inner {
	display: flex;
	width: min(100% - (var(--gutter) * 2), var(--wide-container));
	gap: clamp(24px, 4vw, 48px);
	align-items: center;
	min-height: 82px;
}

.site-brand {
	display: inline-flex;
	flex: 0 1 auto;
	gap: 12px;
	min-width: 0;
	align-items: center;
	width: fit-content;
	max-width: 100%;
	color: var(--color-ink);
	font-family: var(--font-heading);
	font-size: clamp(0.92rem, 1.6vw, 1.3rem);
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.15;
	text-transform: uppercase;
}

.primary-navigation {
	flex: 0 0 auto;
	margin-left: auto;
}

.site-brand .custom-logo,
.site-brand__logo {
	flex: 0 0 auto;
	width: auto;
	max-width: 54px;
	max-height: 54px;
	object-fit: contain;
}

.site-brand > span {
	min-width: 0;
}

.primary-menu {
	display: flex;
	gap: clamp(20px, 2.5vw, 34px);
	align-items: center;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-menu a {
	position: relative;
	display: block;
	padding: 30px 0 26px;
	color: var(--color-ink);
	font-family: var(--font-heading);
	font-size: 0.77rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.primary-menu a::after {
	position: absolute;
	right: 0;
	bottom: 21px;
	left: 0;
	height: 2px;
	content: "";
	background: var(--color-gold);
	transform: scaleX(0);
	transition: transform 180ms ease;
}

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

.primary-menu a:hover::after,
.primary-menu a:focus-visible::after,
.primary-menu .current-menu-item > a::after,
.primary-menu .current_page_item > a::after {
	transform: scaleX(1);
}

.header-contact {
	display: flex;
	gap: 10px;
	align-items: center;
}

.header-contact a {
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	color: var(--color-gold);
	border-radius: 50%;
	transition: color 180ms ease, background 180ms ease;
}

.header-contact a:hover {
	color: var(--color-gold-dark);
	background: var(--color-surface-low);
}

.header-contact .dashicons {
	width: auto;
	height: auto;
	font-size: 19px;
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	border: 0;
	background: transparent;
}

.menu-toggle > span[aria-hidden] {
	display: block;
	width: 24px;
	height: 2px;
	margin: 5px 0;
	background: var(--color-gold);
	transition: transform 180ms ease, opacity 180ms ease;
}

.site-footer {
	padding: 72px 0 24px;
	background: var(--color-surface-low);
	color: var(--color-ink);
}

.site-footer h2,
.site-footer h3 {
	color: var(--color-heading);
}

.site-footer h2 {
	max-width: 340px;
	margin-bottom: 18px;
	font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.site-footer h3 {
	padding-bottom: 12px;
	margin-bottom: 18px;
	font-size: 0.8rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border-bottom: 1px solid var(--color-border);
}

.site-footer p {
	margin-bottom: 10px;
}

.site-footer a:hover {
	color: var(--color-gold-dark);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.25fr 1fr 0.95fr;
	gap: clamp(32px, 5vw, 64px);
}

.site-footer__brand p {
	max-width: 340px;
}

.site-footer__established,
.site-footer__contact span {
	color: var(--color-gold-dark);
	font-family: var(--font-heading);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.site-footer__office {
	font-style: normal;
}

.site-footer__bottom {
	padding-top: 24px;
	margin-top: 48px;
	font-size: 0.82rem;
	text-align: center;
	border-top: 1px solid var(--color-border);
}

.site-footer__bottom p {
	margin: 0;
}

@media (max-width: 1100px) {
	.site-header__inner {
		gap: 20px;
	}

	.primary-menu {
		gap: 18px;
	}

	.site-footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 959px) {
	.site-header__inner {
		gap: 16px;
		min-height: 72px;
	}

	.menu-toggle {
		display: block;
		flex: 0 0 auto;
		order: 3;
	}

	.header-contact {
		order: 2;
		margin-left: auto;
	}

	.primary-navigation {
		position: absolute;
		order: 4;
		top: 100%;
		left: 0;
		width: 100%;
		margin-left: 0;
		max-height: 0;
		overflow: hidden;
		visibility: hidden;
		background: var(--color-white);
		box-shadow: 0 12px 20px rgb(27 28 28 / 10%);
		transition: none;
	}

	.menu-is-open .primary-navigation {
		max-height: calc(100vh - 72px);
		overflow-y: auto;
		visibility: visible;
		transition: none;
	}

	.primary-menu {
		display: block;
		width: min(100% - (var(--gutter) * 2), var(--container));
		padding: 16px 0 24px;
		margin-inline: auto;
	}

	.primary-menu a {
		padding: 14px 0;
		border-bottom: 1px solid var(--color-border);
	}

	.primary-menu a::after {
		display: none;
	}

	.menu-is-open .menu-toggle > span[aria-hidden]:nth-of-type(2) {
		transform: translateY(7px) rotate(45deg);
	}

	.menu-is-open .menu-toggle > span[aria-hidden]:nth-of-type(3) {
		opacity: 0;
	}

	.menu-is-open .menu-toggle > span[aria-hidden]:nth-of-type(4) {
		transform: translateY(-7px) rotate(-45deg);
	}
}

@media (max-width: 600px) {
	.site-brand {
		gap: 9px;
		max-width: 230px;
		font-size: 0.82rem;
	}

	.site-brand .custom-logo,
	.site-brand__logo {
		max-width: 42px;
		max-height: 42px;
	}

	.header-contact {
		display: none;
	}

	.menu-toggle {
		margin-left: auto;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
	}
}

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

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

/* Shared content components. */
.site-main {
	overflow: hidden;
}

.home-section,
.section {
	padding-block: var(--section-space);
}

.section--surface,
.home-about,
.why-choose-section {
	background: var(--color-surface);
}

.section--muted,
.services-section,
.inquiry-section {
	background: var(--color-surface-low);
}

.section--navy {
	background: var(--color-surface-alt);
	color: var(--color-ink);
}

.section--navy h2,
.section--navy h3 {
	color: var(--color-heading);
}

.section-heading {
	max-width: 760px;
	margin-bottom: clamp(40px, 6vw, 60px);
}

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

.section-heading h2 {
	margin-bottom: 16px;
}

.section-heading > p:last-child {
	margin-bottom: 0;
	color: var(--color-muted);
	font-size: 1.05rem;
}

.eyebrow {
	display: flex;
	gap: 12px;
	align-items: center;
	margin-bottom: 18px;
	color: var(--color-gold);
	font-family: var(--font-heading);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.2;
	text-transform: uppercase;
}

.eyebrow::before {
	width: 30px;
	height: 2px;
	content: "";
	background: var(--color-gold);
}

.section-heading--center .eyebrow {
	justify-content: center;
}

.section-heading--center .eyebrow::after {
	width: 30px;
	height: 2px;
	content: "";
	background: var(--color-gold);
}

.inline-link,
.text-link {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	color: var(--color-gold-dark);
	font-family: var(--font-heading);
	font-size: 0.84rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.inline-link:hover,
.text-link:hover {
	color: var(--color-gold-dark);
}

.inline-link span,
.text-link span {
	transition: transform 180ms ease;
}

.inline-link:hover span,
.text-link:hover span {
	transform: translateX(4px);
}

.button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	padding: 13px 24px;
	color: var(--color-ink);
	font-family: var(--font-heading);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-align: center;
	text-transform: uppercase;
	border: 1px solid var(--color-gold-dark);
	border-radius: var(--radius-sm);
	background: transparent;
	transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button--gold {
	color: var(--color-ink);
	border-color: var(--color-gold);
	background: var(--color-gold);
}

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

/* Homepage hero. */
.hero-slider {
	position: relative;
	height: max(650px, 34rem);
	min-height: 550px;
	overflow: hidden;
	background: var(--color-surface);
}

.hero-slider__viewport,
.hero-slide {
	position: absolute;
	inset: 0;
}

.hero-slide {
	z-index: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 800ms ease-in-out;
}

.hero-slide.is-active {
	z-index: 1;
	opacity: 1;
	pointer-events: auto;
}

.hero-slide__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero-slide__image {
	object-fit: cover;
	object-position: center;
}

.hero-slide__content {
	position: relative;
	z-index: 2;
	display: flex;
	width: min(100% - (var(--gutter) * 2), var(--wide-container));
	height: 100%;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding-right: clamp(32px, 8vw, 96px);
	padding-left: clamp(32px, 4vw, 48px);
	transform: translateY(20px);
	opacity: 0;
	transition: opacity 800ms ease-out 300ms, transform 800ms ease-out 300ms;
}

.hero-slide.is-active .hero-slide__content {
	transform: translateY(0);
	opacity: 1;
}

.hero-slide__eyebrow {
	color: var(--color-gold-light);
}

.hero-slide__eyebrow::before {
	background: var(--color-gold-light);
}

.hero-slide__title {
	max-width: 760px;
	margin-bottom: 24px;
	color: var(--color-white);
	font-size: clamp(2.75rem, 5.2vw, 3.75rem);
	letter-spacing: -0.035em;
	text-shadow: 0 2px 8px rgb(0 0 0 / 65%);
}

.hero-slide__description {
	max-width: 630px;
	margin-bottom: 0;
	color: var(--color-white);
	font-size: clamp(1rem, 2vw, 1.15rem);
	font-weight: 500;
	line-height: 1.7;
	text-shadow: 0 2px 6px rgb(0 0 0 / 72%);
}

.hero-slider__control {
	position: absolute;
	z-index: 5;
	top: 50%;
	display: grid;
	width: 48px;
	height: 48px;
	padding: 0;
	place-items: center;
	color: var(--color-ink);
	border: 2px solid var(--color-gold-soft);
	border-radius: 50%;
	background: rgb(255 255 255 / 78%);
	transform: translateY(-50%);
	transition: border-color 180ms ease, background 180ms ease;
}

.hero-slider__control:hover {
	border-color: var(--color-gold-dark);
	background: var(--color-white);
}

.hero-slider__control .dashicons {
	width: auto;
	height: auto;
	font-size: 24px;
}

.hero-slider__prev {
	left: clamp(8px, 2vw, 24px);
}

.hero-slider__next {
	right: clamp(8px, 2vw, 24px);
}

.hero-slider__indicators {
	position: absolute;
	z-index: 5;
	bottom: 30px;
	left: 50%;
	display: flex;
	gap: 0;
	align-items: center;
	transform: translateX(-50%);
}

.hero-slider__indicator {
	position: relative;
	width: 24px;
	height: 24px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: transparent;
	transition: width 300ms ease, height 300ms ease, background 300ms ease;
}

.hero-slider__indicator.is-active {
	width: 32px;
	height: 24px;
}

.hero-slider__indicator::before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 8px;
	height: 8px;
	content: "";
	border-radius: 999px;
	background: rgb(255 255 255 / 85%);
	transform: translate(-50%, -50%);
	transition: width 300ms ease, height 300ms ease, background 300ms ease;
}

.hero-slider__indicator.is-active::before {
	width: 32px;
	height: 6px;
	background: var(--color-gold-dark);
}

/* Homepage-only intrinsic hero sizing. All current slider images are 1376 × 768 (43:24). */
.home .hero-slider {
	height: auto;
	min-height: 0;
	aspect-ratio: 43 / 24;
}

.home .hero-slide__image {
	object-fit: contain;
}

.home .hero-slide__eyebrow {
	font-size: clamp(0.78rem, 0.9vw, 1rem);
}

.home .hero-slide__title {
	max-width: 820px;
	font-size: clamp(3rem, 4.3vw, 5rem);
}

.home .hero-slide__description {
	max-width: 680px;
	font-size: clamp(1rem, 1.25vw, 1.3rem);
}

@media (max-width: 767px) {
	.home .hero-slider {
		height: max(620px, 38rem);
		min-height: 530px;
		aspect-ratio: auto;
	}

	.home .hero-slide__image {
		object-fit: cover;
	}

	.home .hero-slide__title {
		font-size: clamp(2.05rem, 10vw, 2.75rem);
	}
}

/* Homepage sections. */
.home-about__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(42px, 7vw, 84px);
	align-items: center;
}

.home-about__media {
	margin: 0;
	overflow: hidden;
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
}

.home-about__media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.home-about__content > p:not(.eyebrow) {
	color: var(--color-muted);
}

.home-about__capabilities,
.inquiry-section__highlights {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 20px;
	padding: 24px 0;
	margin: 24px 0;
	list-style: none;
	border-block: 1px solid var(--color-border);
}

.home-about__capabilities li,
.inquiry-section__highlights li {
	display: flex;
	gap: 9px;
	align-items: center;
	color: var(--color-ink);
	font-family: var(--font-heading);
	font-size: 0.82rem;
	font-weight: 700;
}

.home-about__capabilities .dashicons,
.inquiry-section__highlights .dashicons {
	color: var(--color-gold-dark);
}

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

.service-card,
.product-group,
.reason-card,
.client-card {
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: var(--color-white);
	box-shadow: var(--shadow-soft);
}

.service-card {
	display: flex;
	min-height: 290px;
	flex-direction: column;
	align-items: flex-start;
	padding: 32px;
	transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-card:hover,
.reason-card:hover,
.client-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 28px rgb(27 28 28 / 10%);
}

.service-card__icon,
.product-group__icon {
	display: grid;
	width: 46px;
	height: 46px;
	margin-bottom: 24px;
	place-items: center;
	color: var(--color-gold-dark);
	font-size: 24px;
	border-radius: var(--radius-sm);
	background: var(--color-gold-light);
}

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

.service-card p {
	color: var(--color-muted);
}

.service-card__icon:is(img) {
	object-fit: cover;
}

.service-card__detail {
	color: var(--color-muted);
	font-size: 0.9rem;
}

.service-card__detail > :last-child {
	margin-bottom: 16px;
}

.service-card__link {
	margin-top: auto;
}

.products-section,
.clients-section {
	background: var(--color-surface-alt);
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}

.product-group {
	padding: 26px;
}

.product-group__heading {
	padding-bottom: 16px;
	margin-bottom: 18px;
	border-bottom: 1px solid var(--color-border);
}

.product-group__icon {
	margin-bottom: 16px;
}

.product-group h3 {
	margin-bottom: 0;
	font-size: 1.05rem;
}

.product-list {
	padding: 0;
	margin: 0;
	list-style: none;
}

.product-list li {
	position: relative;
	padding-left: 18px;
	margin-bottom: 9px;
	color: var(--color-muted);
	font-size: 0.9rem;
	line-height: 1.45;
}

.product-list li::before {
	position: absolute;
	top: 0.58em;
	left: 0;
	width: 6px;
	height: 6px;
	content: "";
	background: var(--color-gold);
}

.product-list__image {
	width: 100%;
	margin: 8px 0 10px;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--radius-sm);
}

.product-list__name,
.product-list__description {
	display: block;
}

.product-list__description {
	margin-top: 3px;
	font-size: 0.78rem;
	line-height: 1.45;
}

.reason-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: center;
}

.reason-card {
	display: flex;
	width: calc(33.333% - 16px);
	min-height: 280px;
	flex-direction: column;
	align-items: center;
	padding: 32px;
	text-align: center;
	transition: transform 200ms ease, box-shadow 200ms ease;
}

.reason-card__icon {
	display: grid;
	width: 62px;
	height: 62px;
	margin-bottom: 22px;
	place-items: center;
	color: var(--color-white);
	font-size: 28px;
	border-radius: 50%;
	background: var(--color-gold-dark);
}

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

.reason-card p {
	margin-bottom: 0;
	color: var(--color-muted);
}

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

.stat-card {
	padding: clamp(28px, 4vw, 42px);
	text-align: center;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: var(--color-white);
	box-shadow: var(--shadow-soft);
}

.stat-card__number {
	display: block;
	margin-bottom: 14px;
	color: var(--color-gold-dark);
	font-family: var(--font-heading);
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	line-height: 1.1;
}

.stat-card h3 {
	margin-bottom: 10px;
}

.stat-card p {
	margin-bottom: 0;
	color: var(--color-muted);
}

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

.client-card {
	display: flex;
	min-height: 150px;
	gap: 20px;
	align-items: flex-start;
	padding: 26px;
	transition: transform 200ms ease, box-shadow 200ms ease;
}

.client-card h3 {
	margin-bottom: 8px;
	font-size: 1rem;
	line-height: 1.45;
}

.client-card__location {
	display: flex;
	gap: 5px;
	align-items: center;
	margin: 0;
	color: var(--color-muted);
	font-size: 0.82rem;
}

.client-card__location .dashicons {
	width: auto;
	height: auto;
	color: var(--color-gold-dark);
	font-size: 16px;
}

.client-card__logo {
	width: auto;
	max-width: 132px;
	max-height: 42px;
	margin-bottom: 12px;
	object-fit: contain;
}

.uae-flag {
	display: flex;
	width: 48px;
	min-width: 48px;
	height: 32px;
	overflow: hidden;
	border: 1px solid rgb(0 0 0 / 12%);
	border-radius: 2px;
}

.uae-flag__red {
	width: 25%;
	height: 100%;
	background: #f00;
}

.uae-flag__stripes {
	display: flex;
	width: 75%;
	height: 100%;
	flex-direction: column;
}

.uae-flag__green,
.uae-flag__white,
.uae-flag__black {
	width: 100%;
	height: 33.333%;
}

.uae-flag__green {
	background: #00732f;
}

.uae-flag__white {
	background: #fff;
}

.uae-flag__black {
	background: #000;
}

.uae-flag > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.client-card__flag {
	display: grid;
	width: 48px;
	min-width: 48px;
	height: 32px;
	place-items: center;
	font-size: 2rem;
	line-height: 1;
}

/* Reusable call to action. */
.cta-section {
	position: relative;
	overflow: hidden;
	text-align: center;
}

.cta-section__media,
.cta-section__overlay {
	position: absolute;
	inset: 0;
}

.cta-section__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cta-section__overlay {
	background: rgb(243 235 221 / 90%);
}

.cta-section__content {
	position: relative;
	z-index: 1;
}

.cta-section__content .eyebrow {
	justify-content: center;
	color: var(--color-gold-dark);
}

.cta-section__content .eyebrow::before {
	background: var(--color-gold-dark);
}

.cta-section__content h2,
.cta-section__content > p {
	max-width: 780px;
	margin-right: auto;
	margin-left: auto;
}

.cta-section__content > p {
	color: var(--color-muted);
}

.cta-section__content .button {
	margin-top: 12px;
}

.inquiry-section__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: clamp(40px, 7vw, 80px);
	align-items: start;
}

.inquiry-section__intro {
	padding-top: 12px;
}

.inquiry-section__intro > p {
	color: var(--color-muted);
	font-size: 1.05rem;
}

.inquiry-section__highlights {
	grid-template-columns: 1fr;
	border: 0;
}

.inquiry-section__highlights li {
	padding: 16px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: var(--color-white);
}

.inquiry-section__direct-contact a {
	word-break: break-word;
}

.contact-form {
	padding: clamp(24px, 4vw, 36px);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: var(--color-white);
	box-shadow: var(--shadow-soft);
}

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

.form-field--full {
	grid-column: 1 / -1;
}

.form-field label {
	display: block;
	margin-bottom: 7px;
	color: var(--color-ink);
	font-family: var(--font-heading);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
	width: 100%;
	padding: 12px 14px;
	color: var(--color-ink);
	border: 1px solid #77736b;
	border-radius: var(--radius-sm);
	background: var(--color-white);
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field input {
	min-height: 48px;
}

.form-field textarea {
	min-height: 140px;
	resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	border-color: var(--color-gold-dark);
	outline: 3px solid var(--color-gold-dark);
	outline-offset: 2px;
	box-shadow: none;
}

.form-field--trap {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.contact-form__submit {
	width: 100%;
	margin-top: 22px;
}

.form-status {
	padding: 14px 16px;
	margin-bottom: 20px;
	border-left: 4px solid var(--color-gold);
	background: var(--color-surface-low);
}

.form-status--success {
	border-left-color: #397a48;
}

.form-status--error {
	border-left-color: #ba1a1a;
}

@media (max-width: 959px) {
	.hero-slide__content {
		padding-inline: 64px;
	}

	.home-about__grid,
	.inquiry-section__grid {
		grid-template-columns: 1fr;
	}

	.home-about__media {
		max-width: 720px;
	}

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

	.reason-card {
		width: calc(50% - 12px);
	}
}

@media (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}
}

@media (max-width: 600px) {
	.hero-slider {
		height: max(620px, 38rem);
		min-height: 530px;
	}

	.hero-slide__content {
		padding: 38px 46px 72px;
	}

	.hero-slide__title {
		font-size: clamp(2.05rem, 10vw, 2.75rem);
	}

	.hero-slider__control {
		width: 40px;
		height: 40px;
	}

	.hero-slider__prev {
		left: 6px;
	}

	.hero-slider__next {
		right: 6px;
	}

	.hero-slider__indicators {
		bottom: 22px;
	}

	.home-about__capabilities,
	.service-grid,
	.product-grid,
	.client-grid,
	.statistics-grid,
	.contact-form__grid {
		grid-template-columns: 1fr;
	}

	.reason-card {
		width: 100%;
	}

	.form-field--full {
		grid-column: auto;
	}

	.client-card {
		min-height: auto;
	}
}

/* Inner-page heroes and editorial layouts. */
.page-hero {
	position: relative;
	display: flex;
	height: auto;
	min-height: clamp(440px, 60vh, 620px);
	align-items: center;
	overflow: hidden;
	background: var(--color-surface);
}

.page-hero__media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.page-hero__media {
	object-fit: cover;
	object-position: center;
}

.page-hero__content {
	position: relative;
	z-index: 1;
	padding-block: 72px;
	text-align: center;
}

.page-hero__content .eyebrow {
	justify-content: center;
	color: var(--color-gold-light);
}

.page-hero__content .eyebrow::before {
	background: var(--color-gold-light);
}

.page-hero__content h1,
.page-hero__content h2 {
	margin-bottom: 14px;
	color: var(--color-white);
	font-size: clamp(2.25rem, 5vw, 3.75rem);
	letter-spacing: -0.025em;
	text-shadow: 0 2px 8px rgb(0 0 0 / 65%);
}

.page-hero__content > p:not(.eyebrow) {
	max-width: 760px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	color: var(--color-white);
	font-size: 1.08rem;
	font-weight: 500;
	text-shadow: 0 2px 6px rgb(0 0 0 / 72%);
}

.split-feature,
.office-card,
.service-detail__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(42px, 7vw, 84px);
	align-items: center;
}

.split-feature__media,
.office-card__media,
.service-detail__media {
	overflow: hidden;
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
}

.split-feature__media img,
.office-card__media img,
.service-detail__media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.split-feature__content > p:not(.eyebrow),
.office-card__content > p:not(.eyebrow),
.service-detail__content > p:not(.eyebrow) {
	color: var(--color-muted);
}

.split-feature--reverse .split-feature__media,
.office-card--reverse .office-card__media,
.service-detail--reverse .service-detail__media {
	order: 2;
}

.journey-timeline {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.journey-timeline::before {
	position: absolute;
	top: 31px;
	right: 9%;
	left: 9%;
	height: 2px;
	content: "";
	background: var(--color-gold-soft);
}

.journey-timeline__item {
	position: relative;
	z-index: 1;
	padding: 0 18px 24px;
	text-align: center;
}

.journey-timeline__marker {
	display: inline-grid;
	min-width: 64px;
	min-height: 64px;
	padding: 10px;
	margin-bottom: 22px;
	place-items: center;
	color: var(--color-white);
	font-family: var(--font-heading);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1.1;
	border-radius: 50%;
	background: var(--color-gold-dark);
}

.journey-timeline__item h3 {
	font-size: 1.05rem;
}

.journey-timeline__item p {
	margin-bottom: 0;
	color: var(--color-muted);
	font-size: 0.9rem;
}

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

.purpose-card {
	padding: clamp(30px, 5vw, 52px);
	border: 1px solid var(--color-gold-soft);
	border-radius: var(--radius);
	background: var(--color-white);
}

.purpose-card .eyebrow {
	color: var(--color-gold-dark);
}

.purpose-card .eyebrow::before {
	background: var(--color-gold-dark);
}

.purpose-card h2 {
	font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.purpose-card p:last-child {
	margin-bottom: 0;
	color: var(--color-muted);
}

.offices-list {
	display: grid;
	gap: clamp(64px, 9vw, 112px);
}

.office-card__content h3 {
	margin-bottom: 18px;
	font-size: clamp(1.6rem, 3vw, 2.15rem);
}

.office-card__focus {
	padding-block: 18px;
	border-block: 1px solid var(--color-border);
}

.office-card__focus strong {
	color: var(--color-gold-dark);
	font-family: var(--font-heading);
	font-size: 0.76rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.office-card address {
	position: relative;
	padding-left: 28px;
	color: var(--color-muted);
	font-style: normal;
}

.office-card address::before {
	position: absolute;
	top: 1px;
	left: 0;
	color: var(--color-gold-dark);
	font-family: dashicons;
	font-size: 20px;
	content: "\f230";
}

/* Services page. */
.services-anchor-nav {
	display: flex;
	max-width: 840px;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-top: 32px;
	margin-inline: auto;
}

.services-anchor-nav a {
	padding: 8px 11px;
	color: var(--color-ink);
	font-family: var(--font-heading);
	font-size: 0.69rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	border: 1px solid var(--color-gold-soft);
	border-radius: var(--radius-sm);
	background: rgb(255 255 255 / 82%);
}

.services-anchor-nav a:hover {
	color: var(--color-white);
	border-color: var(--color-gold-dark);
	background: var(--color-gold-dark);
}

.approach-steps {
	display: grid;
	gap: 18px;
	margin-top: 28px;
}

.approach-step {
	display: flex;
	gap: 18px;
	align-items: flex-start;
}

.approach-step > span {
	display: grid;
	width: 42px;
	min-width: 42px;
	height: 42px;
	place-items: center;
	color: var(--color-gold-dark);
	font-family: var(--font-heading);
	font-size: 0.75rem;
	font-weight: 700;
	border-radius: var(--radius);
	background: var(--color-gold-light);
}

.approach-step h3 {
	margin-bottom: 4px;
	font-size: 1.05rem;
}

.approach-step p {
	margin-bottom: 0;
	color: var(--color-muted);
	font-size: 0.9rem;
}

.service-detail {
	scroll-margin-top: 82px;
}

.service-detail__layout {
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.service-detail__media {
	position: relative;
}

.service-detail__media img {
	min-height: 500px;
}

.service-detail__number {
	position: absolute;
	right: 20px;
	bottom: 18px;
	color: rgb(255 255 255 / 92%);
	font-family: var(--font-heading);
	font-size: 4rem;
	font-weight: 700;
	line-height: 1;
	text-shadow: 0 2px 10px rgb(27 28 28 / 60%);
}

.service-detail__lead {
	color: var(--color-ink) !important;
	font-size: 1.08rem;
	font-weight: 600;
}

.service-detail__columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
	padding-block: 24px;
	margin-block: 24px;
	border-block: 1px solid var(--color-border);
}

.service-detail__columns h3 {
	font-size: 1rem;
}

.check-list,
.process-list {
	padding: 0;
	margin: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 10px;
	color: var(--color-muted);
	font-size: 0.88rem;
}

.check-list li::before {
	position: absolute;
	top: 1px;
	left: 0;
	color: var(--color-gold-dark);
	font-family: dashicons;
	content: "\f12a";
}

.process-list {
	counter-reset: process;
}

.process-list li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 3px 9px;
	margin-bottom: 11px;
	counter-increment: process;
}

.process-list li::before {
	display: grid;
	grid-row: 1 / 3;
	width: 22px;
	height: 22px;
	place-items: center;
	color: var(--color-white);
	font-size: 0.66rem;
	content: counter(process);
	border-radius: 50%;
	background: var(--color-gold-dark);
}

.process-list strong {
	color: var(--color-ink);
	font-size: 0.84rem;
}

.process-list span {
	color: var(--color-muted);
	font-size: 0.82rem;
}

/* Countries and markets. */
.market-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	grid-auto-rows: 1fr;
	gap: 22px;
}

.market-card {
	padding: 30px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: var(--color-white);
	box-shadow: var(--shadow-soft);
}

.market-card__flag {
	display: inline-block;
	margin-bottom: 16px;
	font-size: 2rem;
	line-height: 1;
}

.market-card__highlights {
	padding: 18px 0 0;
	margin: 20px 0 0;
	list-style: none;
	border-top: 1px solid var(--color-border);
}

.market-card__highlights li {
	position: relative;
	padding-left: 18px;
	margin-bottom: 8px;
	font-size: 0.86rem;
}

.market-card__highlights li::before {
	position: absolute;
	top: 0.62em;
	left: 0;
	width: 6px;
	height: 6px;
	content: "";
	background: var(--color-gold);
}

.markets-network__feature {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	overflow: hidden;
	border-radius: var(--radius);
	box-shadow: 0 10px 32px rgb(27 28 28 / 12%);
}

.markets-network__content {
	display: flex;
	min-height: 480px;
	flex-direction: column;
	justify-content: center;
	padding: clamp(34px, 6vw, 70px);
	color: var(--color-ink);
	background: var(--color-surface-low);
}

.markets-network__content h2 {
	color: var(--color-heading);
}

.markets-network__content .eyebrow {
	color: var(--color-gold-dark);
}

.markets-network__content .eyebrow::before {
	background: var(--color-gold-dark);
}

.markets-network__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.network-pillars {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin-top: 28px;
}

.network-pillar {
	padding: 26px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: var(--color-white);
}

.network-pillar > span {
	display: block;
	margin-bottom: 14px;
	color: var(--color-gold-dark);
	font-family: var(--font-heading);
	font-size: 0.76rem;
	font-weight: 700;
}

.network-pillar h3 {
	font-size: 1rem;
}

.network-pillar p {
	margin: 0;
	color: var(--color-muted);
	font-size: 0.88rem;
}

/* Contact and standard WordPress content. */
.contact-introduction {
	padding-top: clamp(84px, 10vw, 130px);
}

.contact-introduction__heading h1,
.contact-introduction__heading h2 {
	margin-bottom: 18px;
}

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

.contact-detail-card {
	padding: 30px;
	text-align: center;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: var(--color-white);
	box-shadow: var(--shadow-soft);
}

.contact-detail-card__icon {
	display: grid;
	width: 54px;
	height: 54px;
	margin: 0 auto 18px;
	place-items: center;
	color: var(--color-white);
	font-size: 25px;
	border-radius: 50%;
	background: var(--color-gold-dark);
}

.contact-detail-card h2 {
	font-size: 1.2rem;
}

.contact-detail-card p {
	margin-bottom: 6px;
	color: var(--color-muted);
	font-size: 0.9rem;
	word-break: break-word;
}

.contact-detail-card a {
	color: var(--color-gold-dark);
	font-weight: 600;
}

.contact-form__notice {
	scroll-margin-top: 120px;

	padding: 14px 16px;
	margin-bottom: 20px;
	border-left: 4px solid var(--color-gold);
	background: var(--color-surface-low);
}

.contact-form__notice--success {
	border-left-color: #397a48;
}

.contact-form__notice--error {
	border-left-color: #ba1a1a;
}

.entry-header {
	padding-top: clamp(72px, 9vw, 112px);
	padding-bottom: clamp(48px, 6vw, 72px);
}

.entry-title,
.archive-header {
	margin-bottom: 0;
}

.entry-content {
	max-width: 850px;
}

.entry-content a {
	color: var(--color-gold-dark);
	text-decoration: underline;
}

.post-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin-top: 40px;
}

.post-card {
	overflow: hidden;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: var(--color-white);
	box-shadow: var(--shadow-soft);
}

.post-card__media img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.post-card__content {
	padding: 24px;
}

.post-card__meta {
	color: var(--color-gold-dark);
	font-size: 0.78rem;
}

.post-card h2 {
	font-size: 1.2rem;
}

.post-card__excerpt {
	color: var(--color-muted);
}

.site-footer__contact a {
	overflow-wrap: anywhere;
}

@media (max-width: 959px) {
	.split-feature,
	.office-card,
	.service-detail__layout {
		grid-template-columns: 1fr;
	}

	.split-feature--reverse .split-feature__media,
	.office-card--reverse .office-card__media,
	.service-detail--reverse .service-detail__media {
		order: 0;
	}

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

	.journey-timeline::before {
		display: none;
	}

	.service-detail__media img {
		min-height: 380px;
	}

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

	.contact-detail-card:first-child {
		grid-column: 1 / -1;
	}

	.markets-network__feature {
		grid-template-columns: 1fr;
	}

	.markets-network__media {
		min-height: 340px;
	}

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

@media (max-width: 600px) {
	.page-hero {
		height: auto;
		min-height: 500px;
	}

	.page-hero__content {
		padding-block: 72px;
	}

	.services-anchor-nav {
		justify-content: center;
	}

	.journey-timeline,
	.company-purpose__grid,
	.service-detail__columns,
	.market-cards,
	.network-pillars,
	.contact-details,
	.post-list {
		grid-template-columns: 1fr;
	}

	.contact-detail-card:first-child {
		grid-column: auto;
	}

	.journey-timeline__item {
		padding-inline: 0;
		text-align: left;
	}

	.journey-timeline__marker {
		margin-bottom: 14px;
	}

	.service-detail__media img {
		min-height: 300px;
	}

	.markets-network__content {
		min-height: auto;
	}

	.markets-network__media {
		min-height: 260px;
	}
}
