/* Small custom polish on top of Tailwind. */

:root {
	--brand: #af7d10;
}

html,
body {
	height: 100%;
}

body {
	font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

.skip-link {
	position: absolute;
	left: -999px;
	top: 0;
	padding: 10px 12px;
	background: rgba(17, 17, 17, 0.98);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	color: #fff;
	z-index: 9999;
}

.skip-link:focus {
	left: 12px;
	top: 12px;
	outline: none;
	box-shadow: 0 0 0 2px rgba(175, 125, 16, 0.55);
}

.site-header {
	background: rgba(10, 10, 10, 0.65);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-link,
.mobile-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.45rem 0.5rem;
	border-radius: 0.75rem;
	transition: background-color 160ms ease, color 160ms ease;
}

.nav-link:hover,
.mobile-link:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.06);
}

.stat-tile {
	border-radius: 1rem;
	padding: 0.85rem 1rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.65);
}

.stat-value {
	margin-top: 0.25rem;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.icon-badge {
	width: 2.25rem;
	height: 2.25rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.9rem;
	background: rgba(175, 125, 16, 0.12);
	border: 1px solid rgba(175, 125, 16, 0.25);
	color: var(--brand);
}

.value-card {
	border-radius: 1.25rem;
	padding: 1.25rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-icon {
	width: 2.75rem;
	height: 2.75rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 1rem;
	background: rgba(175, 125, 16, 0.12);
	border: 1px solid rgba(175, 125, 16, 0.25);
	color: var(--brand);
}

.service-card {
	overflow: hidden;
	border-radius: 1.5rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-media {
	position: relative;
}

.service-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.65));
}

.service-body {
	padding: 1.25rem 1.25rem 1.4rem;
}

.service-title {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.impact-card {
	border-radius: 1.25rem;
	padding: 1.25rem;
	background: rgba(10, 10, 10, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.impact-icon {
	width: 2.75rem;
	height: 2.75rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 1rem;
	background: rgba(175, 125, 16, 0.12);
	border: 1px solid rgba(175, 125, 16, 0.25);
	color: var(--brand);
}

.quote-card {
	border-radius: 1.5rem;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.avatar {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 0.95rem;
	background: rgba(175, 125, 16, 0.15);
	border: 1px solid rgba(175, 125, 16, 0.25);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	color: #fff;
}

.logo-tile {
	border-radius: 1rem;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-tile img {
	max-height: 42px;
	width: auto;
	filter: grayscale(1);
	opacity: 0.88;
	transition: filter 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.logo-tile:hover img {
	filter: grayscale(0);
	opacity: 1;
	transform: translateY(-1px);
}

.contact-row {
	display: grid;
	grid-template-columns: 2.5rem 1fr;
	gap: 0.75rem;
	align-items: start;
	padding: 1rem;
	border-radius: 1.25rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-icon {
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 0.95rem;
	background: rgba(175, 125, 16, 0.12);
	border: 1px solid rgba(175, 125, 16, 0.25);
	color: var(--brand);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.form-input {
	width: 100%;
	border-radius: 0.9rem;
	background: rgba(10, 10, 10, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #fff;
	padding: 0.75rem 0.9rem;
	outline: none;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-input:focus {
	border-color: rgba(175, 125, 16, 0.55);
	box-shadow: 0 0 0 3px rgba(175, 125, 16, 0.25);
}

.form-input::placeholder {
	color: rgba(255, 255, 255, 0.45);
}

.social-link {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 1rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.04);
	transition: background-color 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.social-link:hover {
	transform: translateY(-1px);
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(175, 125, 16, 0.35);
}

/* Scroll reveal */
.reveal {
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 550ms ease, transform 550ms ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

