/* =============================================================
   MTA Construction & Engineering — Public site stylesheet
   Design system: "Concrete & Hi-Vis"
   Ink graphite + warm concrete neutrals + hi-vis amber accent
   ============================================================= */

/* ---------- 1. Tokens ---------- */
:root {
	--ink-900: #0e1216;
	--ink-800: #141a20;
	--ink-700: #1d262e;
	--ink-600: #2b3742;
	--steel-500: #4e5d6a;
	--steel-400: #6b7a87;
	--steel-300: #97a3ad;
	--line: #e3e1dc;
	--line-2: #eeece7;
	--surface: #faf9f7;
	--surface-2: #f2f0eb;
	--paper: #ffffff;

	--amber: #e89320; /* accent on dark surfaces */
	--amber-2: #ffb446;
	--amber-ink: #8a5406; /* accent text on light surfaces (AA) */
	--amber-soft: #fdf2e2;
	--teal: #0c7d6c;
	--teal-soft: #e5f2f0;
	--red: #c4443a;
	--red-soft: #fbeae8;

	--font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
	--font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, 'Liberation Mono',
		monospace;

	--container: 1160px;
	--radius: 8px;
	--radius-lg: 12px;
	--shadow-sm: 0 1px 2px rgba(14, 18, 22, 0.05),
		0 4px 12px rgba(14, 18, 22, 0.04);
	--shadow-md: 0 2px 4px rgba(14, 18, 22, 0.06),
		0 12px 32px rgba(14, 18, 22, 0.08);
	--header-h: 68px;
	--ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- 2. Reset ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}
html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}
body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.6;
	color: var(--ink-800);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img,
svg,
video {
	display: block;
	max-width: 100%;
}
img {
	height: auto;
}
h1,
h2,
h3,
h4,
h5 {
	margin: 0;
	line-height: 1.15;
	letter-spacing: -0.02em;
	font-weight: 700;
	color: var(--ink-900);
	text-wrap: balance;
}
p {
	margin: 0;
}
a {
	color: inherit;
	text-decoration: none;
}
button,
input,
select,
textarea {
	font: inherit;
	color: inherit;
}
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
:focus-visible {
	outline: 3px solid var(--amber);
	outline-offset: 2px;
	border-radius: 4px;
}
::selection {
	background: var(--amber);
	color: var(--ink-900);
}

/* ---------- 3. Layout primitives ---------- */
.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: 24px;
}
.section {
	padding: clamp(56px, 8vw, 104px) 0;
}
.section--tight {
	padding: clamp(40px, 5vw, 64px) 0;
}
.section--surface {
	background: var(--surface);
}
.section--dark {
	background: var(--ink-900);
	color: #fff;
}
.section--dark h2,
.section--dark h3 {
	color: #fff;
}
.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 200;
	background: var(--amber);
	color: var(--ink-900);
	padding: 12px 20px;
	font-weight: 700;
}
.skip-link:focus {
	left: 12px;
	top: 12px;
}

/* ---------- 4. Type helpers ---------- */
.eyebrow {
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--amber-ink);
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}
.eyebrow::before {
	content: '';
	width: 24px;
	height: 2px;
	background: var(--amber);
	flex: none;
}
.section--dark .eyebrow {
	color: var(--amber-2);
}
.h1 {
	font-size: clamp(2.1rem, 5.4vw, 3.6rem);
}
.h2 {
	font-size: clamp(1.65rem, 3.6vw, 2.5rem);
}
.h3 {
	font-size: clamp(1.15rem, 2vw, 1.35rem);
}
.lead {
	font-size: clamp(1.02rem, 1.6vw, 1.15rem);
	color: var(--steel-500);
	max-width: 60ch;
}
.section--dark .lead {
	color: rgba(255, 255, 255, 0.72);
}
.muted {
	color: var(--steel-400);
}
.section-head {
	max-width: 62ch;
	margin-bottom: clamp(32px, 4vw, 52px);
}
.section-head--center {
	margin-inline: auto;
	text-align: center;
}
.section-head--center .eyebrow {
	justify-content: center;
}
.section-head .lead {
	margin-top: 16px;
}

/* ---------- 5. Buttons ---------- */
.btn {
	--btn-bg: var(--amber);
	--btn-fg: var(--ink-900);
	--btn-bd: var(--amber);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 46px;
	padding: 12px 22px;
	background: var(--btn-bg);
	color: var(--btn-fg);
	border: 1.5px solid var(--btn-bd);
	border-radius: var(--radius);
	font-size: 15px;
	font-weight: 650;
	letter-spacing: 0.01em;
	cursor: pointer;
	transition: transform 0.15s var(--ease), background 0.2s var(--ease),
		color 0.2s var(--ease), border-color 0.2s var(--ease);
	white-space: nowrap;
}
.btn:hover {
	transform: translateY(-1px);
}
.btn:active {
	transform: translateY(0);
}
.btn svg {
	flex: none;
}
.btn--primary:hover {
	--btn-bg: #f5a638;
	--btn-bd: #f5a638;
}
.btn--dark {
	--btn-bg: var(--ink-900);
	--btn-fg: #fff;
	--btn-bd: var(--ink-900);
}
.btn--dark:hover {
	--btn-bg: var(--ink-700);
	--btn-bd: var(--ink-700);
}
.btn--ghost {
	--btn-bg: transparent;
	--btn-fg: var(--ink-900);
	--btn-bd: var(--line);
}
.btn--ghost:hover {
	--btn-bd: var(--ink-900);
}
.btn--onDark {
	--btn-bg: transparent;
	--btn-fg: #fff;
	--btn-bd: rgba(255, 255, 255, 0.35);
}
.btn--onDark:hover {
	--btn-bd: #fff;
	--btn-bg: rgba(255, 255, 255, 0.08);
}
.btn--wa {
	--btn-bg: #1faa54;
	--btn-fg: #fff;
	--btn-bd: #1faa54;
}
.btn--wa:hover {
	--btn-bg: #189247;
	--btn-bd: #189247;
}
.btn--block {
	width: 100%;
}
.btn[disabled] {
	opacity: 0.55;
	cursor: not-allowed;
	transform: none;
}
.btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

/* ---------- 6. Badges & chips ---------- */
.badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 500;
	padding: 5px 10px;
	border-radius: 999px;
	background: var(--surface-2);
	color: var(--ink-700);
	border: 1px solid var(--line);
}
.badge--dept {
	background: var(--ink-900);
	color: #fff;
	border-color: var(--ink-900);
}
.badge--done {
	background: var(--teal-soft);
	color: #075f52;
	border-color: #bcdfd9;
}
.badge--wip {
	background: var(--amber-soft);
	color: var(--amber-ink);
	border-color: #f0d6ae;
}
.badge--awarded {
	background: #eaf0f6;
	color: #2c4f74;
	border-color: #ccdcea;
}
.badge--dot::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
}

/* ---------- 7. Utility bar ---------- */
.utilbar {
	background: var(--ink-900);
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
}
.utilbar .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	height: 38px;
}
.utilbar a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}
.utilbar a:hover {
	color: var(--amber-2);
}
.utilbar-left,
.utilbar-right {
	display: flex;
	align-items: center;
	gap: 22px;
}
.utilbar-tag {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--amber-2);
}

/* ---------- 8. Header ---------- */
.header {
	position: sticky;
	top: 0;
	z-index: 90;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: saturate(1.4) blur(12px);
	border-bottom: 1px solid var(--line);
}
.header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	height: var(--header-h);
}
.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}
.brand-mark {
	width: 40px;
	height: 40px;
	flex: none;
	border-radius: 6px;
	background: var(--ink-900);
	color: var(--amber);
	display: grid;
	place-items: center;
	font-family: var(--font-mono);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.02em;
}
.brand-text {
	min-width: 0;
}
.brand-name {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--ink-900);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.brand-sub {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--steel-400);
	white-space: nowrap;
}
.nav {
	display: flex;
	align-items: center;
	gap: 4px;
}
.nav a {
	padding: 9px 13px;
	border-radius: 6px;
	font-size: 14.5px;
	font-weight: 550;
	color: var(--ink-700);
	position: relative;
}
.nav a:hover {
	background: var(--surface-2);
}
.nav a[aria-current='page'] {
	color: var(--ink-900);
}
.nav a[aria-current='page']::after {
	content: '';
	position: absolute;
	left: 13px;
	right: 13px;
	bottom: 2px;
	height: 2px;
	background: var(--amber);
}
.header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}
.burger {
	display: none;
	width: 46px;
	height: 46px;
	place-items: center;
	background: transparent;
	border: 1.5px solid var(--line);
	border-radius: var(--radius);
	cursor: pointer;
}
.burger span {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--ink-900);
	border-radius: 2px;
	transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.burger span + span {
	margin-top: 5px;
}
.burger[aria-expanded='true'] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.burger[aria-expanded='true'] span:nth-child(2) {
	opacity: 0;
}
.burger[aria-expanded='true'] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.drawer {
	position: fixed;
	inset: 0;
	z-index: 95;
	background: var(--ink-900);
	color: #fff;
	padding: 22px 24px calc(28px + env(safe-area-inset-bottom));
	display: flex;
	flex-direction: column;
	gap: 8px;
	transform: translateX(100%);
	transition: transform 0.3s var(--ease);
	overflow-y: auto;
	visibility: hidden;
}
.drawer.is-open {
	transform: none;
	visibility: visible;
}
.drawer-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
}
.drawer-close {
	width: 46px;
	height: 46px;
	display: grid;
	place-items: center;
	background: transparent;
	border: 1.5px solid rgba(255, 255, 255, 0.25);
	border-radius: var(--radius);
	color: #fff;
	cursor: pointer;
}
.drawer nav {
	display: flex;
	flex-direction: column;
}
.drawer nav a {
	padding: 16px 0;
	font-size: 1.35rem;
	font-weight: 650;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.drawer nav a[aria-current='page'] {
	color: var(--amber-2);
}
.drawer nav a span {
	font-family: var(--font-mono);
	font-size: 11px;
	color: rgba(255, 255, 255, 0.35);
}
.drawer-foot {
	margin-top: auto;
	padding-top: 24px;
	display: grid;
	gap: 10px;
}
.drawer-meta {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.7;
}
.drawer-brand .brand-name {
	color: #fff;
}

/* ---------- 9. Hero ---------- */
.hero {
	position: relative;
	background: var(--ink-900);
	color: #fff;
	overflow: hidden;
	isolation: isolate;
}
.hero-media {
	position: absolute;
	inset: 0;
	z-index: -2;
}
.hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 60%;
}
.hero::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(
			100deg,
			rgba(10, 14, 18, 0.95) 0%,
			rgba(10, 14, 18, 0.82) 42%,
			rgba(10, 14, 18, 0.45) 72%,
			rgba(10, 14, 18, 0.35) 100%
		),
		linear-gradient(to top, rgba(10, 14, 18, 0.9), transparent 45%);
}
.hero-inner {
	padding: clamp(56px, 9vw, 116px) 0 clamp(40px, 5vw, 56px);
	max-width: 44rem;
}
.hero h1 {
	color: #fff;
	font-size: clamp(2.15rem, 6vw, 3.7rem);
	letter-spacing: -0.03em;
}
.hero h1 em {
	font-style: normal;
	color: var(--amber-2);
}
.hero-sub {
	margin-top: 20px;
	font-size: clamp(1rem, 1.7vw, 1.14rem);
	color: rgba(255, 255, 255, 0.76);
	max-width: 54ch;
}
.hero .btn-row {
	margin-top: 32px;
}
.hero-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 22px;
}
.hero-chip {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 6px 11px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.86);
}
.hero-chip svg {
	color: var(--amber-2);
}

/* Stat strip */
.stats {
	position: relative;
	z-index: 2;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	overflow: hidden;
	margin-bottom: -46px;
}
.stat {
	padding: 22px 24px;
	border-right: 1px solid var(--line-2);
}
.stat:last-child {
	border-right: 0;
}
.stat-num {
	font-size: clamp(1.7rem, 3vw, 2.2rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	color: var(--ink-900);
	line-height: 1;
}
.stat-num sup {
	font-size: 0.5em;
	color: var(--amber-ink);
	top: -0.7em;
}
.stat-label {
	margin-top: 8px;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--steel-400);
}
.stats-wrap {
	position: relative;
	z-index: 3;
}
.after-stats {
	padding-top: 76px;
}

/* ---------- 10. Credential strip ---------- */
.creds {
	border-bottom: 1px solid var(--line);
	background: var(--surface);
}
.creds-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1px;
	background: var(--line);
}
.cred {
	background: var(--surface);
	padding: 20px 22px;
}
.cred-label {
	font-family: var(--font-mono);
	font-size: 10.5px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--steel-400);
}
.cred-value {
	margin-top: 6px;
	font-size: 15px;
	font-weight: 650;
	color: var(--ink-900);
}

/* ---------- 11. About / split blocks ---------- */
.split {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
}
.split--reverse .split-media {
	order: -1;
}
.split-body p + p {
	margin-top: 16px;
}
.split-body .lead {
	margin-bottom: 20px;
}
.split-media {
	position: relative;
}
.split-media img {
	width: 100%;
	border-radius: var(--radius-lg);
	aspect-ratio: 4 / 3;
	object-fit: cover;
}
.media-note {
	position: absolute;
	left: 0;
	bottom: -18px;
	background: var(--ink-900);
	color: #fff;
	padding: 14px 18px;
	border-radius: var(--radius);
	max-width: 230px;
	box-shadow: var(--shadow-md);
}
.media-note strong {
	display: block;
	font-size: 1.5rem;
	letter-spacing: -0.02em;
	line-height: 1;
}
.media-note span {
	font-family: var(--font-mono);
	font-size: 10.5px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--amber-2);
}
.pill-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 26px;
}
.checklist {
	display: grid;
	gap: 12px;
	margin-top: 24px;
}
.checklist li {
	display: flex;
	gap: 11px;
	align-items: flex-start;
	font-size: 15px;
}
.checklist svg {
	flex: none;
	margin-top: 3px;
	color: var(--amber-ink);
}
.section--dark .checklist svg {
	color: var(--amber-2);
}

/* ---------- 12. Capability cards ---------- */
.cap-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}
.cap {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 26px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: border-color 0.2s var(--ease), transform 0.2s var(--ease),
		box-shadow 0.2s var(--ease);
}
.cap:hover {
	border-color: var(--ink-600);
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}
.cap-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.cap-icon {
	width: 46px;
	height: 46px;
	border-radius: var(--radius);
	background: var(--ink-900);
	color: var(--amber);
	display: grid;
	place-items: center;
}
.cap-index {
	font-family: var(--font-mono);
	font-size: 12px;
	color: var(--steel-300);
	letter-spacing: 0.08em;
}
.cap h3 {
	font-size: 1.2rem;
}
.cap p {
	color: var(--steel-500);
	font-size: 14.5px;
}
.cap-tags {
	margin-top: auto;
	padding-top: 6px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.cap-tag {
	font-family: var(--font-mono);
	font-size: 10.5px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--steel-500);
	background: var(--surface-2);
	padding: 4px 9px;
	border-radius: 4px;
}

/* ---------- 13. Process ---------- */
.steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
	counter-reset: step;
}
.step {
	position: relative;
	padding-top: 26px;
	border-top: 2px solid rgba(255, 255, 255, 0.16);
}
.step::before {
	counter-increment: step;
	content: '0' counter(step);
	position: absolute;
	top: -13px;
	left: 0;
	background: var(--ink-900);
	padding-right: 12px;
	font-family: var(--font-mono);
	font-size: 13px;
	color: var(--amber-2);
	letter-spacing: 0.06em;
}
.step h3 {
	font-size: 1.05rem;
	margin-bottom: 8px;
}
.step p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.66);
}

/* ---------- 14. Project cards ---------- */
.proj-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 22px;
}
.proj {
	position: relative;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	text-align: left;
	padding: 0;
	cursor: pointer;
	transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease),
		border-color 0.22s var(--ease);
}
.proj:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: var(--ink-600);
}
.proj-media {
	position: relative;
	aspect-ratio: 16 / 10;
	background: var(--surface-2);
	overflow: hidden;
}
.proj-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s var(--ease);
}
.proj:hover .proj-media img {
	transform: scale(1.045);
}
.proj-media-empty {
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
	color: var(--steel-300);
	background: repeating-linear-gradient(
		45deg,
		#f4f2ee,
		#f4f2ee 12px,
		#eeece7 12px,
		#eeece7 24px
	);
}
.proj-badges {
	position: absolute;
	top: 12px;
	left: 12px;
	right: 12px;
	display: flex;
	gap: 8px;
	justify-content: space-between;
	align-items: flex-start;
}
.proj-count {
	position: absolute;
	bottom: 12px;
	right: 12px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-mono);
	font-size: 11px;
	color: #fff;
	background: rgba(14, 18, 22, 0.72);
	padding: 5px 9px;
	border-radius: 999px;
	backdrop-filter: blur(4px);
}
.proj-body {
	padding: 18px 20px 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}
.proj-body h3 {
	font-size: 1.08rem;
	line-height: 1.3;
}
.proj-meta {
	display: grid;
	gap: 7px;
	margin-top: 2px;
}
.proj-meta div {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13.5px;
	color: var(--steel-500);
}
.proj-meta svg {
	flex: none;
	color: var(--steel-300);
}
.proj-foot {
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid var(--line-2);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.proj-dept-full {
	font-family: var(--font-mono);
	font-size: 10.5px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--steel-400);
}
.proj-open {
	font-size: 13px;
	font-weight: 650;
	color: var(--amber-ink);
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

/* ---------- 15. Filters ---------- */
.filters {
	position: sticky;
	top: var(--header-h);
	z-index: 40;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
	padding: 14px 0;
}
.filters-row {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}
.filter-group {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.filter-legend {
	font-family: var(--font-mono);
	font-size: 10.5px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--steel-400);
	margin-right: 2px;
}
.chip {
	min-height: 38px;
	padding: 8px 15px;
	border-radius: 999px;
	border: 1.5px solid var(--line);
	background: var(--paper);
	font-size: 13.5px;
	font-weight: 600;
	color: var(--steel-500);
	cursor: pointer;
	transition: all 0.18s var(--ease);
	white-space: nowrap;
}
.chip:hover {
	border-color: var(--ink-600);
	color: var(--ink-900);
}
.chip[aria-pressed='true'] {
	background: var(--ink-900);
	border-color: var(--ink-900);
	color: #fff;
}
.search {
	position: relative;
	margin-left: auto;
	flex: 1;
	min-width: 220px;
	max-width: 320px;
}
.search svg {
	position: absolute;
	left: 13px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--steel-300);
	pointer-events: none;
}
.search input {
	width: 100%;
	min-height: 42px;
	padding: 10px 14px 10px 40px;
	border: 1.5px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
	font-size: 14.5px;
}
.search input:focus {
	outline: none;
	border-color: var(--ink-600);
	background: var(--paper);
}
.result-line {
	margin-bottom: 22px;
	font-size: 14px;
	color: var(--steel-400);
	font-family: var(--font-mono);
	letter-spacing: 0.04em;
}

/* ---------- 16. Skeleton / empty / error ---------- */
.sk {
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--paper);
}
.sk-media {
	aspect-ratio: 16 / 10;
	background: var(--surface-2);
}
.sk-body {
	padding: 18px 20px 22px;
	display: grid;
	gap: 10px;
}
.sk-line {
	height: 12px;
	border-radius: 4px;
	background: var(--surface-2);
}
.sk-line.w70 {
	width: 70%;
}
.sk-line.w45 {
	width: 45%;
}
.sk-shimmer {
	position: relative;
	overflow: hidden;
}
.sk-shimmer::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.65),
		transparent
	);
	transform: translateX(-100%);
	animation: shimmer 1.4s infinite;
}
@keyframes shimmer {
	to {
		transform: translateX(100%);
	}
}
.state {
	grid-column: 1 / -1;
	text-align: center;
	padding: clamp(40px, 7vw, 76px) 24px;
	border: 1px dashed var(--line);
	border-radius: var(--radius-lg);
	background: var(--surface);
}
.state-icon {
	width: 54px;
	height: 54px;
	margin: 0 auto 18px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--surface-2);
	color: var(--steel-400);
}
.state h3 {
	font-size: 1.15rem;
	margin-bottom: 8px;
}
.state p {
	color: var(--steel-400);
	max-width: 44ch;
	margin: 0 auto;
	font-size: 14.5px;
}
.state .btn {
	margin-top: 20px;
}

/* ---------- 17. Project modal ---------- */
.modal {
	position: fixed;
	inset: 0;
	z-index: 120;
	display: none;
	place-items: center;
	padding: 24px;
}
.modal.is-open {
	display: grid;
}
.modal-scrim {
	position: absolute;
	inset: 0;
	background: rgba(10, 14, 18, 0.72);
	backdrop-filter: blur(3px);
}
.modal-card {
	position: relative;
	width: min(920px, 100%);
	max-height: min(88vh, 900px);
	background: var(--paper);
	border-radius: var(--radius-lg);
	overflow: hidden auto;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
	-webkit-overflow-scrolling: touch;
}
.modal-close {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 3;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 0;
	background: rgba(14, 18, 22, 0.72);
	color: #fff;
	display: grid;
	place-items: center;
	cursor: pointer;
	backdrop-filter: blur(4px);
}
.modal-close:hover {
	background: var(--ink-900);
}
.modal-hero {
	position: relative;
	aspect-ratio: 16 / 9;
	background: var(--surface-2);
}
.modal-hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.modal-body {
	padding: clamp(20px, 3vw, 30px);
}
.modal-badges {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 14px;
}
.modal-body h2 {
	font-size: clamp(1.35rem, 3vw, 1.85rem);
	margin-bottom: 8px;
}
.modal-desc {
	margin-top: 18px;
	color: var(--steel-500);
	font-size: 15px;
	white-space: pre-line;
}
.spec-grid {
	margin-top: 22px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
}
.spec {
	background: var(--paper);
	padding: 14px 16px;
}
.spec dt {
	font-family: var(--font-mono);
	font-size: 10.5px;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: var(--steel-400);
}
.spec dd {
	margin: 5px 0 0;
	font-size: 14.5px;
	font-weight: 600;
	color: var(--ink-900);
}
.gallery {
	margin-top: 24px;
}
.gallery h4 {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--steel-400);
	margin-bottom: 12px;
	font-weight: 500;
}
.gallery-strip {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(160px, 1fr);
	gap: 10px;
	overflow-x: auto;
	padding-bottom: 6px;
	scroll-snap-type: x mandatory;
}
.gallery-strip img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--radius);
	scroll-snap-align: start;
	cursor: zoom-in;
	border: 1px solid var(--line);
}

/* ---------- 18. Founder ---------- */
.founder {
	background: var(--ink-900);
	color: #fff;
	overflow: hidden;
}
.founder-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: clamp(28px, 5vw, 64px);
	align-items: center;
}
.founder-photo {
	position: relative;
}
.founder-photo img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: center 22%;
	border-radius: var(--radius-lg);
	filter: saturate(0.92) contrast(1.03);
}
.founder-photo::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: var(--radius-lg);
	box-shadow: inset 0 -70px 90px -30px rgba(14, 18, 22, 0.8);
}
.founder-quote {
	margin: 22px 0 0;
	padding-left: 20px;
	border-left: 3px solid var(--amber);
	font-size: clamp(1.1rem, 2.2vw, 1.42rem);
	line-height: 1.45;
	letter-spacing: -0.015em;
	color: #fff;
}
.founder-name {
	font-size: clamp(1.5rem, 3vw, 2.05rem);
	color: #fff;
}
.founder-role {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--amber-2);
	margin-top: 10px;
}
.founder-bio {
	margin-top: 20px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 15px;
}

/* ---------- 19. CTA band ---------- */
.cta {
	background: var(--amber);
	color: var(--ink-900);
}
.cta-grid {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}
.cta h2 {
	font-size: clamp(1.5rem, 3.4vw, 2.2rem);
}
.cta p {
	margin-top: 10px;
	color: rgba(14, 18, 22, 0.72);
	max-width: 46ch;
}
.cta .btn--dark {
	--btn-bd: var(--ink-900);
}
.cta .btn--ghost {
	--btn-bd: rgba(14, 18, 22, 0.35);
	--btn-fg: var(--ink-900);
}
.cta .btn--ghost:hover {
	--btn-bd: var(--ink-900);
	--btn-bg: rgba(255, 255, 255, 0.28);
}

/* ---------- 20. Footer ---------- */
.footer {
	background: var(--ink-900);
	color: rgba(255, 255, 255, 0.66);
	padding: clamp(44px, 6vw, 68px) 0 0;
	font-size: 14.5px;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: clamp(28px, 4vw, 48px);
}
.footer h5 {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 16px;
	font-weight: 500;
}
.footer-col a,
.footer-col p {
	display: block;
	padding: 5px 0;
}
.footer-col a:hover {
	color: var(--amber-2);
}
.footer-about p {
	margin-top: 16px;
	max-width: 34ch;
}
.footer .brand-name {
	color: #fff;
}
.footer .brand-sub {
	color: var(--amber-2);
}
.footer-bottom {
	margin-top: clamp(32px, 4vw, 48px);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 20px 0 calc(20px + env(safe-area-inset-bottom));
	display: flex;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.48);
}
.footer-bottom a:hover {
	color: var(--amber-2);
}

/* ---------- 21. Mobile action bar ---------- */
.actionbar {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 80;
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(12px);
	border-top: 1px solid var(--line);
	padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}
.actionbar a {
	min-height: 48px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
	border-radius: var(--radius);
	font-size: 11.5px;
	font-weight: 650;
	color: var(--ink-800);
	background: var(--surface-2);
}
.actionbar a.is-accent {
	background: var(--amber);
	color: var(--ink-900);
}
.actionbar a.is-wa {
	background: #1faa54;
	color: #fff;
}

/* ---------- 22. Page header (inner pages) ---------- */
.pagehead {
	position: relative;
	background: var(--ink-900);
	color: #fff;
	padding: clamp(44px, 6vw, 76px) 0;
	overflow: hidden;
	isolation: isolate;
}
.pagehead-media {
	position: absolute;
	inset: 0;
	z-index: -2;
}
.pagehead-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pagehead::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(
		95deg,
		rgba(10, 14, 18, 0.94),
		rgba(10, 14, 18, 0.7) 70%,
		rgba(10, 14, 18, 0.5)
	);
}
.pagehead h1 {
	color: #fff;
	font-size: clamp(1.9rem, 4.6vw, 3rem);
	max-width: 24ch;
}
.pagehead p {
	margin-top: 16px;
	color: rgba(255, 255, 255, 0.74);
	max-width: 58ch;
}
.crumbs {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 18px;
}
.crumbs a:hover {
	color: var(--amber-2);
}

/* ---------- 23. Contact ---------- */
.contact-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: clamp(28px, 4vw, 56px);
	align-items: start;
}
.info-card {
	background: var(--ink-900);
	color: #fff;
	border-radius: var(--radius-lg);
	padding: clamp(24px, 3vw, 34px);
	position: sticky;
	top: calc(var(--header-h) + 24px);
}
.info-card h2 {
	color: #fff;
	font-size: 1.4rem;
}
.info-list {
	margin-top: 26px;
	display: grid;
	gap: 4px;
}
.info-item {
	display: flex;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	align-items: flex-start;
}
.info-item:last-child {
	border-bottom: 0;
}
.info-ico {
	width: 38px;
	height: 38px;
	flex: none;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.08);
	color: var(--amber-2);
	display: grid;
	place-items: center;
}
.info-label {
	font-family: var(--font-mono);
	font-size: 10.5px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 3px;
}
.info-value {
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	line-height: 1.45;
	word-break: break-word;
}
.info-value a:hover {
	color: var(--amber-2);
}
.form-card {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: clamp(24px, 3.5vw, 38px);
	box-shadow: var(--shadow-sm);
}
.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	margin-top: 26px;
}
.field {
	display: grid;
	gap: 7px;
}
.field--full {
	grid-column: 1 / -1;
}
.field label {
	font-size: 13px;
	font-weight: 650;
	color: var(--ink-800);
	display: flex;
	gap: 5px;
}
.field label .req {
	color: var(--red);
}
.control {
	width: 100%;
	min-height: 48px;
	padding: 12px 14px;
	border: 1.5px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
	font-size: 15px;
	transition: border-color 0.18s var(--ease), background 0.18s var(--ease);
}
.control:focus {
	outline: none;
	border-color: var(--ink-700);
	background: var(--paper);
}
.control[aria-invalid='true'] {
	border-color: var(--red);
	background: var(--red-soft);
}
textarea.control {
	min-height: 130px;
	resize: vertical;
	line-height: 1.55;
}
select.control {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7a87' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 40px;
}
.err {
	font-size: 12.5px;
	color: var(--red);
	display: none;
}
.field.has-error .err {
	display: block;
}
.hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.consent {
	display: flex;
	gap: 11px;
	align-items: flex-start;
	font-size: 13.5px;
	color: var(--steel-500);
	line-height: 1.5;
}
.consent input {
	width: 20px;
	height: 20px;
	flex: none;
	margin-top: 1px;
	accent-color: var(--ink-900);
}
.form-note {
	margin-top: 16px;
	font-size: 13px;
	color: var(--steel-400);
	display: flex;
	gap: 8px;
	align-items: flex-start;
}
.form-note svg {
	flex: none;
	margin-top: 2px;
}
.alert {
	display: none;
	gap: 12px;
	padding: 14px 16px;
	border-radius: var(--radius);
	font-size: 14px;
	margin-top: 20px;
	align-items: flex-start;
}
.alert.is-shown {
	display: flex;
}
.alert--err {
	background: var(--red-soft);
	border: 1px solid #f0cdc9;
	color: #8e2d25;
}
.alert--warn {
	background: var(--amber-soft);
	border: 1px solid #f0d6ae;
	color: var(--amber-ink);
}
.alert svg {
	flex: none;
	margin-top: 2px;
}
.success {
	display: none;
	text-align: center;
	padding: clamp(28px, 5vw, 52px) 8px;
}
.success.is-shown {
	display: block;
}
.success-ico {
	width: 66px;
	height: 66px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: var(--teal-soft);
	color: var(--teal);
	display: grid;
	place-items: center;
}
.success h3 {
	font-size: 1.5rem;
	margin-bottom: 10px;
}
.success p {
	color: var(--steel-500);
	max-width: 42ch;
	margin: 0 auto;
}
.success .ref {
	margin-top: 18px;
	font-family: var(--font-mono);
	font-size: 12.5px;
	color: var(--steel-400);
}
.spin {
	width: 16px;
	height: 16px;
	border: 2px solid rgba(0, 0, 0, 0.2);
	border-top-color: currentColor;
	border-radius: 50%;
	animation: spin 0.7s linear infinite;
}
@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* ---------- 24. Reveal (fail-safe) ---------- */
.reveal {
	opacity: 1;
}
html.js .reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
html.js .reveal.is-in,
html.reveal-failsafe .reveal {
	opacity: 1 !important;
	transform: none !important;
}
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	html.js .reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}

/* ---------- 25. Responsive ---------- */
@media (max-width: 1040px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
	.founder-grid {
		grid-template-columns: 1fr;
	}
	.founder-photo img {
		aspect-ratio: 16 / 10;
		object-position: center 18%;
	}
	.contact-grid {
		grid-template-columns: 1fr;
	}
	.info-card {
		position: static;
	}
}

@media (max-width: 900px) {
	.nav,
	.header-actions .btn {
		display: none;
	}
	.burger {
		display: grid;
	}
	.utilbar-left a:not(:first-child),
	.utilbar-right {
		display: none;
	}
	.split,
	.split--reverse .split-media {
		grid-template-columns: 1fr;
		order: 0;
	}
	.stats {
		grid-template-columns: 1fr 1fr;
		margin-bottom: -32px;
	}
	.stat:nth-child(2) {
		border-right: 0;
	}
	.stat:nth-child(-n + 2) {
		border-bottom: 1px solid var(--line-2);
	}
	.after-stats {
		padding-top: 60px;
	}
	.actionbar {
		display: grid;
	}
	body {
		padding-bottom: 74px;
	}
	.footer-bottom {
		padding-bottom: 20px;
	}
	.media-note {
		position: static;
		margin-top: 14px;
		max-width: none;
		display: flex;
		align-items: center;
		gap: 12px;
	}
	.media-note strong {
		font-size: 1.3rem;
	}
	.filters {
		position: static;
	}
	.search {
		margin-left: 0;
		max-width: none;
	}
}

@media (max-width: 620px) {
	.container {
		padding-inline: 18px;
	}
	.form-grid {
		grid-template-columns: 1fr;
	}
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 26px;
	}
	.proj-grid {
		grid-template-columns: 1fr;
	}
	.hero .btn-row .btn {
		flex: 1 1 100%;
	}
	.cta-grid {
		flex-direction: column;
		align-items: flex-start;
	}
	.cta .btn-row .btn {
		flex: 1 1 auto;
	}
	.modal {
		padding: 0;
	}
	.modal-card {
		max-height: 100vh;
		border-radius: 0;
		height: 100%;
	}
	.filter-group {
		width: 100%;
		overflow-x: visible;
		flex-wrap: wrap;
		gap: 8px;
		padding-bottom: 0;
	}
	.filter-legend {
		width: 100%;
		margin-bottom: 2px;
	}
	.spec-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 400px) {
	.stats {
		grid-template-columns: 1fr;
	}
	.stat {
		border-right: 0;
		border-bottom: 1px solid var(--line-2);
	}
	.brand-sub {
		display: none;
	}
}

@media print {
	.header,
	.utilbar,
	.actionbar,
	.filters,
	.cta {
		display: none !important;
	}
}
/* ==========================================================
   26. MOBILE POLISH v2 — sirf phone / tablet ke liye
   (saare rules max-width ke andar hain, laptop par koi asar nahi)
   ========================================================== */

/* --- A. Neeche ka floating Call / WhatsApp / Enquire bar hataya --- */
@media (max-width: 900px) {
	.actionbar {
		display: none !important;
	}
	body {
		padding-bottom: 0 !important;
	}
	.footer-bottom {
		padding-bottom: 16px;
	}
	.utilbar {
		font-size: 12px;
	}
	.utilbar .container {
		height: 34px;
		justify-content: center;
	}
}

/* --- B. Hero chips: tooti 3 + 1 line ki jagah saaf 2 x 2 grid --- */
@media (max-width: 620px) {
	.hero-chips {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 6px;
		margin-bottom: 16px;
	}
	.hero-chip {
		justify-content: center;
		gap: 5px;
		padding: 9px 6px;
		font-size: 9.5px;
		letter-spacing: 0.05em;
	}

	/* Hero text compact — pehli screen me poora message dikhe */
	.hero-inner {
		padding: 34px 0 30px;
	}
	.hero h1 {
		font-size: clamp(1.6rem, 7.6vw, 2.1rem);
		line-height: 1.16;
		letter-spacing: -0.02em;
	}
	.hero-sub {
		margin-top: 14px;
		font-size: 14.5px;
		line-height: 1.6;
	}
	.hero .btn-row {
		margin-top: 20px;
		gap: 10px;
	}

	/* Section spacing + heading size */
	.section {
		padding: 46px 0;
	}
	.section--tight {
		padding: 32px 0;
	}
	.section-head {
		margin-bottom: 24px;
	}
	.h2,
	h2 {
		font-size: clamp(1.5rem, 6.6vw, 1.95rem);
		letter-spacing: -0.015em;
	}
	.h3,
	h3 {
		font-size: 1.08rem;
	}
	.lead {
		font-size: 15px;
	}

	/* Stat strip compact */
	.stat {
		padding: 16px 14px;
	}
	.stats {
		margin-bottom: -24px;
	}

	/* Har button ka tap area minimum 46px */
	.btn {
		min-height: 46px;
	}

	/* Mobile menu chhoti screen par scroll ho jaye */
	.drawer {
		overflow-y: auto;
	}

	/* Kuch bhi side me bahar na nikle */
	img,
	video,
	table {
		max-width: 100%;
	}
}

/* --- C. 400px se choti screen: stats 1 column ki jagah 2 x 2 --- */
@media (max-width: 400px) {
	.stats {
		grid-template-columns: 1fr 1fr;
	}
	.stat {
		border-right: 0;
		border-bottom: 0;
	}
	.stat:nth-child(odd) {
		border-right: 1px solid var(--line-2);
	}
	.stat:nth-child(-n + 2) {
		border-bottom: 1px solid var(--line-2);
	}
	.hero-chip {
		font-size: 9px;
		padding: 8px 4px;
	}
}
/* ==========================================================
   26. MOBILE UI v3 — phone ka final layout
   Saare rules max-width ke andar hain → laptop par koi asar nahi
   ========================================================== */

@media (max-width: 900px) {
	/* 1. Neeche ka floating Call / WhatsApp / Enquire bar band */
	.actionbar {
		display: none !important;
	}
	body {
		padding-bottom: 0 !important;
	}
	.footer-bottom {
		padding-bottom: 18px;
	}

	/* 2. Upar ka contact strip — patla aur premium */
	.utilbar {
		font-size: 11px;
	}
	.utilbar .container {
		height: 32px;
		justify-content: center;
	}
	.utilbar a {
		font-family: var(--font-mono);
		letter-spacing: 0.08em;
		color: rgba(255, 255, 255, 0.82);
	}
	.utilbar a svg {
		width: 12px;
		height: 12px;
		color: var(--amber-2);
	}

	/* 3. Header compact */
	.header .container {
		height: 58px;
		gap: 12px;
	}
	.brand {
		gap: 10px;
	}
	.brand-mark {
		width: 34px;
		height: 34px;
		font-size: 11.5px;
		border-radius: 7px;
	}
	.brand-name {
		font-size: 14px;
	}

	/* 4. Menu button (3 line) — chhota, halka, professional */
	.burger {
		width: 38px;
		height: 38px;
		border: 1px solid var(--line);
		border-radius: 9px;
		background: var(--surface-2);
	}
	.burger span {
		width: 15px;
		height: 1.6px;
		background: var(--ink-800);
	}
	.burger span + span {
		margin-top: 4px;
	}
	.burger span:nth-child(3) {
		width: 10px;
	}
	.burger[aria-expanded='true'] {
		background: var(--ink-900);
		border-color: var(--ink-900);
	}
	.burger[aria-expanded='true'] span {
		background: #fff;
	}
	.burger[aria-expanded='true'] span:nth-child(1) {
		transform: translateY(5.6px) rotate(45deg);
	}
	.burger[aria-expanded='true'] span:nth-child(3) {
		width: 15px;
		transform: translateY(-5.6px) rotate(-45deg);
	}
}

@media (max-width: 620px) {
	/* 5. Hero ke chips — ek hi saaf line, chhote aur barabar */
	.hero-chips {
		display: flex;
		flex-wrap: nowrap;
		gap: 6px;
		margin-bottom: 18px;
		overflow-x: auto;
		scrollbar-width: none;
	}
	.hero-chips::-webkit-scrollbar {
		display: none;
	}
	.hero-chip {
		flex: 0 0 auto;
		justify-content: center;
		gap: 5px;
		padding: 6px 10px;
		font-size: 9px;
		letter-spacing: 0.06em;
	}
	.hero-chip svg {
		width: 11px;
		height: 11px;
	}

	/* 6. Hero text compact */
	.hero-inner {
		padding: 30px 0 34px;
	}
	.hero h1 {
		font-size: clamp(1.6rem, 7.4vw, 2.05rem);
		line-height: 1.15;
		letter-spacing: -0.022em;
	}
	.hero-sub {
		margin-top: 12px;
		font-size: 14.5px;
		line-height: 1.62;
	}
	.hero .btn-row {
		margin-top: 22px;
		gap: 10px;
	}

	/* 7. Har jagah button poori chaudai — ek jaisa saaf look */
	.btn-row {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
	}
	.btn-row .btn {
		flex: 1 1 100%;
	}
	.btn {
		min-height: 46px;
		font-size: 14.5px;
	}

	/* 8. Section spacing + heading scale */
	.section {
		padding: 44px 0;
	}
	.section--tight {
		padding: 30px 0;
	}
	.section-head {
		margin-bottom: 22px;
	}
	.h2,
	h2 {
		font-size: clamp(1.45rem, 6.4vw, 1.9rem);
		line-height: 1.18;
		letter-spacing: -0.02em;
	}
	.h3,
	h3 {
		font-size: 1.05rem;
	}
	.lead {
		font-size: 14.5px;
		line-height: 1.62;
	}

	/* 9. Stat strip compact */
	.stat {
		padding: 15px 14px;
	}
	.stats {
		margin-bottom: -22px;
	}

	/* 10. Khali "—" wali credential rows phone par chhupi
	      (Registration no. / GSTIN / PAN milte hi wapas on kar denge) */
	.creds-grid .cred:nth-child(n + 2) {
		display: none;
	}
	.cred {
		padding: 14px 2px;
	}

	/* 11. Mobile menu scroll ho jaye */
	.drawer {
		overflow-y: auto;
	}

	/* 12. Kuch bhi side me bahar na nikle */
	img,
	video,
	table {
		max-width: 100%;
	}
}

@media (max-width: 400px) {
	/* 13. Chhote phone: stats 1 column ki jagah 2 x 2 */
	.stats {
		grid-template-columns: 1fr 1fr;
	}
	.stat {
		border-right: 0;
		border-bottom: 0;
	}
	.stat:nth-child(odd) {
		border-right: 1px solid var(--line-2);
	}
	.stat:nth-child(-n + 2) {
		border-bottom: 1px solid var(--line-2);
	}
	.brand-name {
		font-size: 13px;
	}
	.hero-chip {
		font-size: 8.5px;
		padding: 6px 8px;
	}
}
/* ============================================================
   27. FIX PACK v4 — contact page ka khali white space, stats box
   ka naya look, credentials strip hataya, phone par hero image
   ki position
   ============================================================ */

/* --- 27.1 Credentials strip (Registration No. / GSTIN / PAN) hataya --- */
.creds {
	display: none !important;
}
.creds + .section {
	padding-top: 92px;
}

/* --- 27.2 Stats box ka naya look --- */
.stats {
	border-color: rgba(14, 18, 22, 0.1);
	border-radius: 14px;
	box-shadow:
		0 20px 46px rgba(14, 18, 22, 0.14),
		0 2px 6px rgba(14, 18, 22, 0.05);
}
.stats::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 3px;
	background: linear-gradient(
		90deg,
		var(--amber) 0%,
		var(--amber-2) 45%,
		rgba(255, 180, 70, 0) 100%
	);
	z-index: 4;
}
.stat {
	padding: 26px 26px 24px;
	transition: background 0.25s var(--ease);
}
.stat:hover {
	background: var(--surface-2);
}
.stat-num {
	font-size: clamp(1.85rem, 3.1vw, 2.45rem);
}
.stat-label {
	margin-top: 10px;
	font-size: 10.5px;
	letter-spacing: 0.13em;
	color: var(--steel-500);
}

/* --- 27.3 Inner pages: pehla section turant dikhe (white gap fix) --- */
html.js .pagehead + .section .reveal,
html.js .contact-grid .reveal,
html.js .info-card.reveal,
html.js .form-card.reveal {
	opacity: 1 !important;
	transform: none !important;
}
.pagehead + .section {
	padding-top: 56px;
}
/* Failsafe: JS ruk bhi jaye to content chhupa na rahe */
html.js .reveal {
	animation: revealFailsafe 0.01s linear 1.6s forwards;
}
@keyframes revealFailsafe {
	to {
		opacity: 1;
		transform: none;
	}
}

/* --- 27.4 Phone: hero background image ki position aur overlay --- */
@media (max-width: 620px) {
	.hero-media img {
		object-position: 64% 48%;
	}
	.hero::after {
		background: linear-gradient(
			180deg,
			rgba(10, 14, 18, 0.9) 0%,
			rgba(10, 14, 18, 0.62) 42%,
			rgba(10, 14, 18, 0.84) 100%
		);
	}
	.pagehead-media img {
		object-position: 60% 50%;
	}
	.creds + .section {
		padding-top: 46px;
	}
	.pagehead + .section {
		padding-top: 34px;
	}
}