/* Our Offices — polished compact section */
.nh-offices {
	--nh-orange: #F46E2E;
	--nh-grad: linear-gradient(105deg, #f45e33 0%, #f79823 100%);
	--nh-navy: #050748;
	--nh-text: #5c5c7a;
	--nh-ease: cubic-bezier(0.22, 1, 0.36, 1);
	padding: 70px 0;
	background:
		radial-gradient(circle at 10% 0%, rgba(249, 169, 80, 0.12) 0%, transparent 45%),
		#fff;
	position: relative;
	overflow: hidden;
}

.nh-offices__head {
	margin: 0 auto 32px;
	text-align: center;
}

.nh-offices__eyebrow {
	display: inline-block;
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--nh-orange);
}

.nh-offices__head h2 {
	margin: 0;
	font-size: clamp(26px, 3vw, 36px);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.2;
	color: var(--nh-navy);
	text-transform: none;
}

.nh-offices__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	max-width: 980px;
	margin: 0 auto;
}

.nh-office {
	margin: 0;
}

.nh-office__card {
	display: block;
	height: 100%;
	border-radius: 18px;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(5, 7, 72, 0.08);
	box-shadow: 0 10px 28px rgba(5, 7, 72, 0.05);
	text-decoration: none !important;
	color: inherit;
	transition: transform 0.35s var(--nh-ease), box-shadow 0.35s var(--nh-ease), border-color 0.35s ease;
}

.nh-office__card:hover {
	transform: translateY(-6px);
	border-color: rgba(244, 110, 46, 0.35);
	box-shadow: 0 20px 40px rgba(244, 94, 51, 0.14);
}

.nh-office__media {
	position: relative;
	margin: 0;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #fbf4f1;
}

.nh-office__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s var(--nh-ease);
}

.nh-office__card:hover .nh-office__media img {
	transform: scale(1.05);
}

.nh-office__badge {
	position: absolute;
	left: 12px;
	top: 12px;
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #fff;
	background: var(--nh-grad);
	box-shadow: 0 6px 14px rgba(244, 94, 51, 0.28);
}

.nh-office__body {
	display: flex;
	gap: 12px;
	padding: 18px 18px 20px;
	align-items: flex-start;
}

.nh-office__pin {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	color: #fff;
	background: var(--nh-grad);
	box-shadow: 0 6px 14px rgba(244, 94, 51, 0.2);
}

.nh-office__info h3 {
	margin: 0 0 6px;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.25;
	color: var(--nh-navy);
	text-transform: none;
}

.nh-office__info p {
	margin: 0 0 12px;
	font-size: 14px;
	line-height: 1.55;
	color: var(--nh-text);
}

.nh-office__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	color: var(--nh-orange);
	transition: gap 0.3s var(--nh-ease), color 0.25s ease;
}

.nh-office__link i {
	font-size: 11px;
	transition: transform 0.3s var(--nh-ease);
}

.nh-office__card:hover .nh-office__link {
	gap: 11px;
	color: #e25a1d;
}

.nh-office__card:hover .nh-office__link i {
	transform: translateX(2px);
}

@media (max-width: 767px) {
	.nh-offices {
		padding: 56px 0;
	}

	.nh-offices__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.nh-office__body {
		padding: 16px;
	}

	.nh-office__info h3 {
		font-size: 17px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.nh-office__card,
	.nh-office__media img,
	.nh-office__link,
	.nh-office__link i {
		transition: none !important;
	}
}
