/*
Theme Name: Puja Perkasa
Theme URI: https://pujaperkasaofficial.com/
Author: PT. Puja Perkasa
Description: Custom WordPress theme untuk website resmi PT. Puja Perkasa.
Version: 1.0.0
Text Domain: puja-perkasa
*/

/* =========================================================
   1. DESIGN TOKENS
   ========================================================= */

:root {
	/* Official brand colors */
	--color-brand-red: #ff0000;
	--color-brand-blue: #1503fd;

	/* UI colors */
	--color-navy: #081a3a;
	--color-navy-light: #102a56;
	--color-charcoal: #20242b;
	--color-gray-700: #4b5563;
	--color-gray-500: #6b7280;
	--color-gray-300: #d1d5db;
	--color-gray-200: #e5e7eb;
	--color-gray-100: #f3f4f6;
	--color-off-white: #f8f9fb;
	--color-white: #ffffff;

	/* Text */
	--color-text: var(--color-charcoal);
	--color-text-muted: var(--color-gray-700);
	--color-heading: var(--color-navy);

	/* Layout */
	--container-width: 1280px;
	--container-padding: 24px;

	/* Spacing */
	--space-1: 4px;
	--space-2: 8px;
	--space-3: 12px;
	--space-4: 16px;
	--space-5: 24px;
	--space-6: 32px;
	--space-7: 48px;
	--space-8: 64px;
	--space-9: 96px;

	/* Radius */
	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 20px;

	/* Transition */
	--transition-base: 200ms ease;
}


/* =========================================================
   2. RESET
   ========================================================= */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-white);
	color: var(--color-text);
	font-family:
		Inter,
		Arial,
		Helvetica,
		sans-serif;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

img,
	picture,
	video,
	svg {
	display: block;
	max-width: 100%;
}

img {
	height: auto;
}

button,
	input,
	textarea,
	select {
	font: inherit;
}

button,
	a {
	-webkit-tap-highlight-color: transparent;
}

a {
	color: inherit;
	text-decoration: none;
}

ul,
	ol {
	margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin-top: 0;
}


/* =========================================================
   3. TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--color-heading);
	font-weight: 700;
	line-height: 1.15;
}

h1 {
	font-size: clamp(2.5rem, 6vw, 5rem);
}

h2 {
	font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
}

p {
	margin-bottom: var(--space-5);
}

strong {
	font-weight: 700;
}


/* =========================================================
   4. GLOBAL LAYOUT
   ========================================================= */

.container {
	width: min(
		calc(100% - (var(--container-padding) * 2)),
		var(--container-width)
	);
	margin-inline: auto;
}

.section {
	padding-block: var(--space-9);
}

.section--compact {
	padding-block: var(--space-8);
}


/* =========================================================
   5. BUTTON BASE
   ========================================================= */

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 24px;
	border: 1px solid transparent;
	border-radius: var(--radius-sm);
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition:
		background-color var(--transition-base),
		border-color var(--transition-base),
		color var(--transition-base),
		transform var(--transition-base);
}

.button:hover {
	transform: translateY(-1px);
}

.button:focus-visible {
	outline: 3px solid rgba(21, 3, 253, 0.3);
	outline-offset: 3px;
}

.button--primary {
	background: var(--color-brand-red);
	color: var(--color-white);
}

.button--primary:hover {
	background: #d90000;
}

.button--secondary {
	border-color: var(--color-white);
	color: var(--color-white);
}

.button--secondary:hover {
	background: var(--color-white);
	color: var(--color-navy);
}


/* =========================================================
   6. ACCESSIBILITY
   ========================================================= */

.screen-reader-text {
	position: absolute;
	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 {
	position: fixed;
	top: 16px;
	left: 16px;
	z-index: 99999;
	width: auto;
	height: auto;
	padding: 12px 16px;
	margin: 0;
	overflow: visible;
	clip: auto;
	background: var(--color-white);
	color: var(--color-navy);
	font-weight: 700;
}


/* =========================================================
   7. RESPONSIVE BASE
   ========================================================= */

@media (max-width: 767px) {
	:root {
		--container-padding: 20px;
		--space-9: 64px;
	}

	body {
		font-size: 15px;
	}
}
/* =========================================================
   8. SITE HEADER
   ========================================================= */

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	width: 100%;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid var(--color-gray-200);
	backdrop-filter: blur(12px);
}

.admin-bar .site-header {
	top: 32px;
}

.site-header__inner {
	display: flex;
	align-items: center;
	gap: var(--space-6);
	min-height: 80px;
}

.site-branding {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.custom-logo-link {
	display: block;
}

.custom-logo {
	width: auto;
	max-width: 220px;
	max-height: 58px;
}

.site-branding__text {
	color: var(--color-navy);
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1.2;
}

.primary-navigation {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 1;
}

.primary-navigation__menu {
	display: flex;
	align-items: center;
	gap: var(--space-6);
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-navigation__menu a {
	position: relative;
	display: block;
	padding-block: 28px;
	color: var(--color-charcoal);
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.2;
	transition: color var(--transition-base);
}

.primary-navigation__menu a::after {
	position: absolute;
	right: 0;
	bottom: 20px;
	left: 0;
	height: 2px;
	background: var(--color-brand-red);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform var(--transition-base);
}

.primary-navigation__menu a:hover,
.primary-navigation__menu .current-menu-item > a {
	color: var(--color-brand-blue);
}

.primary-navigation__menu a:hover::after,
.primary-navigation__menu .current-menu-item > a::after {
	transform: scaleX(1);
	transform-origin: left;
}

.site-header__cta {
	flex-shrink: 0;
}


/* =========================================================
   9. HEADER RESPONSIVE PREPARATION
   ========================================================= */

@media (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}
}

@media (max-width: 1023px) {
	.primary-navigation,
	.site-header__cta {
		display: none;
	}

	.site-header__inner {
		min-height: 72px;
	}

	.custom-logo {
		max-width: 190px;
		max-height: 52px;
	}
}
/* =========================================================
   10. MOBILE NAVIGATION
   ========================================================= */

.menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 10px;
	margin-left: auto;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.menu-toggle__line {
	display: block;
	width: 100%;
	height: 2px;
	margin-block: 6px;
	background: var(--color-navy);
	transition:
		transform var(--transition-base),
		opacity var(--transition-base);
}

.primary-navigation__mobile-cta {
	display: none;
}

@media (max-width: 1023px) {
	.site-header__inner {
		position: relative;
	}

	.menu-toggle {
		display: block;
	}

	.primary-navigation {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		display: none;
		flex-direction: column;
		align-items: stretch;
		padding: var(--space-5) var(--container-padding);
		background: var(--color-white);
		border-top: 1px solid var(--color-gray-200);
		box-shadow: 0 18px 40px rgba(8, 26, 58, 0.12);
	}

	.primary-navigation.is-open {
		display: flex;
	}

	.primary-navigation__menu {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		width: 100%;
	}

	.primary-navigation__menu li {
		width: 100%;
		border-bottom: 1px solid var(--color-gray-200);
	}

	.primary-navigation__menu a {
		padding: 16px 0;
		font-size: 1rem;
	}

	.primary-navigation__menu a::after {
		display: none;
	}

	.primary-navigation__mobile-cta {
		display: inline-flex;
		width: 100%;
		margin-top: var(--space-5);
	}

	.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	body.menu-open {
		overflow: hidden;
	}
}
/* =========================================================
   11. SITE FOOTER
   ========================================================= */

.site-footer {
	background: var(--color-navy);
	color: rgba(255, 255, 255, 0.78);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) minmax(180px, 1fr) minmax(180px, 1fr);
	gap: var(--space-8);
	padding-block: var(--space-8);
}

.site-footer__brand {
	max-width: 520px;
}

.site-footer__logo {
	display: inline-block;
	margin-bottom: var(--space-5);
	padding: 10px 14px;
	background: var(--color-white);
	border-radius: var(--radius-sm);
}

.site-footer__logo .custom-logo {
	max-width: 210px;
	max-height: 56px;
}

.site-footer__title {
	display: inline-block;
	margin-bottom: var(--space-5);
	color: var(--color-white);
	font-size: 1.5rem;
	font-weight: 800;
}

.site-footer__description {
	max-width: 48ch;
	margin-bottom: 0;
	line-height: 1.8;
}

.site-footer__heading {
	margin-bottom: var(--space-5);
	color: var(--color-white);
	font-size: 1rem;
	font-weight: 700;
}

.footer-navigation,
.site-footer__links ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-navigation li,
.site-footer__links li {
	margin-bottom: var(--space-3);
}

.footer-navigation a,
.site-footer__links a {
	color: rgba(255, 255, 255, 0.78);
	transition: color var(--transition-base);
}

.footer-navigation a:hover,
.site-footer__links a:hover {
	color: var(--color-white);
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__bottom .container {
	padding-block: var(--space-5);
}

.site-footer__bottom p {
	margin: 0;
	font-size: 0.875rem;
}


/* =========================================================
   12. FOOTER RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {
	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.site-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 600px) {
	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: var(--space-7);
		padding-block: var(--space-7);
	}

	.site-footer__brand {
		grid-column: auto;
	}
}
/* =========================================================
   13. HOME HERO
   ========================================================= */

.home-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: min(820px, calc(100svh - 80px));
	background-color: var(--color-navy);
	background-position: center;
	background-size: cover;
	color: var(--color-white);
	overflow: hidden;
}

.home-hero::after {
	position: absolute;
	inset: auto 0 0;
	height: 5px;
	background:
		linear-gradient(
			90deg,
			var(--color-brand-red) 0 35%,
			var(--color-brand-blue) 35% 100%
		);
	content: "";
}

.home-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: inherit;
	padding-block: var(--space-9);
}

.home-hero__content {
	max-width: 760px;
}

.home-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: var(--space-3);
	margin-bottom: var(--space-5);
	color: var(--color-white);
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.home-hero__eyebrow::before {
	width: 42px;
	height: 3px;
	background: var(--color-brand-red);
	content: "";
}

.home-hero__title {
	max-width: 900px;
	margin-bottom: var(--space-5);
	color: var(--color-white);
	font-size: clamp(3rem, 7vw, 6.5rem);
	letter-spacing: -0.04em;
}

.home-hero__description {
	max-width: 660px;
	margin-bottom: var(--space-7);
	color: rgba(255, 255, 255, 0.84);
	font-size: clamp(1rem, 1.5vw, 1.2rem);
	line-height: 1.8;
}

.home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-4);
}


/* =========================================================
   14. HOME HERO RESPONSIVE
   ========================================================= */

@media (max-width: 767px) {
	.home-hero {
		min-height: calc(100svh - 72px);
		background-position: 62% center;
	}

	.home-hero__inner {
		padding-block:
			var(--space-8)
			calc(var(--space-8) + 16px);
	}

	.home-hero__title {
		font-size: clamp(2.7rem, 13vw, 4.5rem);
	}

	.home-hero__description {
		font-size: 1rem;
		line-height: 1.7;
	}

	.home-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.home-hero__actions .button {
		width: 100%;
	}
}
/* =========================================================
   15. HOME TRUST
   ========================================================= */

.section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: var(--space-3);
	margin-bottom: var(--space-4);
	color: var(--color-brand-red);
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.section-eyebrow::before {
	width: 36px;
	height: 3px;
	background: currentColor;
	content: "";
}

.home-trust {
	background: var(--color-white);
	padding-block: var(--space-8);
}

.home-trust__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
	gap: var(--space-8);
	align-items: center;
}

.home-trust__content h2 {
	max-width: 820px;
	margin-bottom: var(--space-5);
}

.home-trust__content p {
	max-width: 760px;
	margin-bottom: 0;
	color: var(--color-text-muted);
	font-size: 1.0625rem;
}

.home-trust__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-4);
}

.trust-stat {
	min-height: 160px;
	padding: var(--space-5);
	background: var(--color-off-white);
	border: 1px solid var(--color-gray-200);
	border-radius: var(--radius-md);
}

.trust-stat strong {
	display: block;
	margin-bottom: var(--space-3);
	color: var(--color-navy);
	font-size: clamp(2rem, 4vw, 3.25rem);
	font-weight: 800;
	line-height: 1;
}

.trust-stat span {
	display: block;
	color: var(--color-text-muted);
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.45;
}


/* =========================================================
   16. HOME TRUST RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {
	.home-trust__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.home-trust {
		padding-block: var(--space-7);
	}

	.home-trust__stats {
		grid-template-columns: 1fr;
	}

	.trust-stat {
		min-height: auto;
	}
}

/* =========================================================
   17. SECTION HEADER
   ========================================================= */

.section-header {
	max-width: 860px;
	margin-bottom: var(--space-7);
}

.section-header h2 {
	margin-bottom: 0;
}

.section-action {
	margin-top: var(--space-7);
}


/* =========================================================
   18. HOME EXPERTISE
   ========================================================= */

.home-expertise {
	background: var(--color-off-white);
	padding-block: var(--space-9);
}

.expertise-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-5);
}

.expertise-card {
	position: relative;
	min-height: 330px;
	padding: var(--space-6);
	background: var(--color-white);
	border: 1px solid var(--color-gray-200);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition:
		transform var(--transition-base),
		box-shadow var(--transition-base),
		border-color var(--transition-base);
}

.expertise-card::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background:
		linear-gradient(
			90deg,
			var(--color-brand-red),
			var(--color-brand-blue)
		);
	content: "";
}

.expertise-card:hover {
	transform: translateY(-4px);
	border-color: rgba(21, 3, 253, 0.22);
	box-shadow: 0 22px 48px rgba(8, 26, 58, 0.12);
}

.expertise-card__number {
	display: inline-block;
	margin-bottom: var(--space-7);
	color: rgba(8, 26, 58, 0.18);
	font-size: 3rem;
	font-weight: 800;
	line-height: 1;
}

.expertise-card h3 {
	margin-bottom: var(--space-4);
}

.expertise-card p {
	margin-bottom: 0;
	color: var(--color-text-muted);
}


/* =========================================================
   19. HOME EXPERTISE RESPONSIVE
   ========================================================= */

@media (max-width: 1023px) {
	.expertise-grid {
		grid-template-columns: 1fr;
	}

	.expertise-card {
		min-height: auto;
	}
}

@media (max-width: 767px) {
	.home-expertise {
		padding-block: var(--space-7);
	}
}
/* =========================================================
   20. HOME ABOUT
   ========================================================= */

.home-about {
	background: var(--color-white);
	padding-block: var(--space-9);
}

.home-about__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: var(--space-8);
	align-items: center;
}

.home-about__media {
	position: relative;
	min-height: 520px;
	background:
		linear-gradient(
			135deg,
			rgba(8, 26, 58, 0.9),
			rgba(21, 3, 253, 0.58)
		),
		linear-gradient(
			45deg,
			var(--color-gray-200),
			var(--color-off-white)
		);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.home-about__media::before {
	position: absolute;
	inset: 28px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	content: "";
}

.home-about__media::after {
	position: absolute;
	right: -80px;
	bottom: -80px;
	width: 240px;
	height: 240px;
	background: var(--color-brand-red);
	border-radius: 50%;
	opacity: 0.82;
	content: "";
}

.home-about__card {
	position: absolute;
	right: var(--space-6);
	bottom: var(--space-6);
	z-index: 1;
	max-width: 280px;
	padding: var(--space-6);
	background: var(--color-white);
	border-radius: var(--radius-md);
	box-shadow: 0 22px 50px rgba(8, 26, 58, 0.25);
}

.home-about__card strong {
	display: block;
	margin-bottom: var(--space-3);
	color: var(--color-brand-red);
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1;
}

.home-about__card span {
	display: block;
	color: var(--color-navy);
	font-weight: 800;
	line-height: 1.45;
}

.home-about__content h2 {
	margin-bottom: var(--space-5);
}

.home-about__content p {
	color: var(--color-text-muted);
	font-size: 1.0625rem;
	line-height: 1.8;
}

.home-about__list {
	display: grid;
	gap: var(--space-3);
	padding: 0;
	margin: 0 0 var(--space-7);
	list-style: none;
}

.home-about__list li {
	position: relative;
	padding-left: 28px;
	color: var(--color-charcoal);
	font-weight: 700;
}

.home-about__list li::before {
	position: absolute;
	top: 0.7em;
	left: 0;
	width: 10px;
	height: 10px;
	background: var(--color-brand-red);
	border-radius: 50%;
	content: "";
}


/* =========================================================
   21. HOME ABOUT RESPONSIVE
   ========================================================= */

@media (max-width: 1023px) {
	.home-about__grid {
		grid-template-columns: 1fr;
	}

	.home-about__media {
		min-height: 380px;
	}
}

@media (max-width: 767px) {
	.home-about {
		padding-block: var(--space-7);
	}

	.home-about__media {
		min-height: 320px;
	}

	.home-about__card {
		right: var(--space-5);
		bottom: var(--space-5);
		left: var(--space-5);
		max-width: none;
	}

	.home-about__card strong {
		font-size: 2.75rem;
	}
}
/* =========================================================
   22. HOME PROJECTS
   ========================================================= */

.section-header--split {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--space-6);
	max-width: none;
}

.section-header--split > div {
	max-width: 820px;
}

.home-projects {
	background: var(--color-navy);
	padding-block: var(--space-9);
	color: var(--color-white);
}

.home-projects .section-eyebrow,
.home-projects h2 {
	color: var(--color-white);
}

.home-projects .section-eyebrow {
	color: rgba(255, 255, 255, 0.86);
}

.project-preview-grid {
	display: grid;
	grid-template-columns: 1.25fr 1fr 1fr;
	grid-auto-rows: 280px;
	gap: var(--space-5);
}

.project-preview {
	position: relative;
	min-height: 280px;
	background:
		linear-gradient(
			135deg,
			rgba(21, 3, 253, 0.6),
			rgba(8, 26, 58, 0.92)
		),
		linear-gradient(
			45deg,
			var(--color-gray-300),
			var(--color-gray-100)
		);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.project-preview::before {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			135deg,
			transparent 0 45%,
			rgba(255, 0, 0, 0.28) 45% 100%
		);
	content: "";
}

.project-preview--large {
	grid-row: span 2;
}

.project-preview__overlay {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	padding: var(--space-6);
	background:
		linear-gradient(
			0deg,
			rgba(8, 26, 58, 0.96),
			rgba(8, 26, 58, 0)
		);
}

.project-preview__overlay span {
	display: inline-block;
	margin-bottom: var(--space-3);
	color: var(--color-brand-red);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.project-preview__overlay h3 {
	max-width: 360px;
	margin-bottom: 0;
	color: var(--color-white);
	font-size: clamp(1.25rem, 2vw, 1.75rem);
}


/* =========================================================
   23. HOME PROJECTS RESPONSIVE
   ========================================================= */

@media (max-width: 1023px) {
	.section-header--split {
		align-items: flex-start;
		flex-direction: column;
	}

	.project-preview-grid {
		grid-template-columns: 1fr 1fr;
		grid-auto-rows: 260px;
	}

	.project-preview--large {
		grid-column: 1 / -1;
		grid-row: auto;
	}
}

@media (max-width: 767px) {
	.home-projects {
		padding-block: var(--space-7);
	}

	.project-preview-grid {
		grid-template-columns: 1fr;
		grid-auto-rows: 240px;
	}
}
/* =========================================================
   24. HOME STATS
   ========================================================= */

.home-stats {
	background: var(--color-white);
	padding-block: var(--space-8);
}

.home-stats__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: var(--space-8);
	align-items: center;
}

.home-stats__intro h2 {
	margin-bottom: 0;
}

.home-stats__items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-4);
}

.home-stat {
	padding: var(--space-6);
	background: var(--color-off-white);
	border: 1px solid var(--color-gray-200);
	border-radius: var(--radius-md);
}

.home-stat strong {
	display: block;
	margin-bottom: var(--space-3);
	color: var(--color-brand-red);
	font-size: clamp(2.2rem, 4vw, 3.8rem);
	font-weight: 800;
	line-height: 1;
}

.home-stat span {
	display: block;
	color: var(--color-navy);
	font-size: 0.9375rem;
	font-weight: 800;
	line-height: 1.45;
}


/* =========================================================
   25. HOME STATS RESPONSIVE
   ========================================================= */

@media (max-width: 1023px) {
	.home-stats__grid {
		grid-template-columns: 1fr;
	}

	.home-stats__items {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 767px) {
	.home-stats {
		padding-block: var(--space-7);
	}

	.home-stats__items {
		grid-template-columns: 1fr;
	}
}
/* =========================================================
   26. HOME EQUIPMENT
   ========================================================= */

.home-equipment {
	background: var(--color-off-white);
	padding-block: var(--space-9);
}

.home-equipment__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: var(--space-8);
	align-items: center;
}

.home-equipment__content h2 {
	margin-bottom: var(--space-5);
}

.home-equipment__content p {
	max-width: 620px;
	color: var(--color-text-muted);
	font-size: 1.0625rem;
	line-height: 1.8;
}

.equipment-preview-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	grid-auto-rows: 220px;
	gap: var(--space-5);
}

.equipment-preview {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 220px;
	padding: var(--space-5);
	background:
		linear-gradient(
			135deg,
			rgba(8, 26, 58, 0.92),
			rgba(21, 3, 253, 0.5)
		),
		linear-gradient(
			45deg,
			var(--color-gray-300),
			var(--color-white)
		);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.equipment-preview::before {
	position: absolute;
	inset: 24px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	content: "";
}

.equipment-preview::after {
	position: absolute;
	right: -48px;
	bottom: -48px;
	width: 150px;
	height: 150px;
	background: var(--color-brand-red);
	border-radius: 50%;
	opacity: 0.78;
	content: "";
}

.equipment-preview--large {
	grid-row: span 2;
}

.equipment-preview span {
	position: relative;
	z-index: 1;
	color: var(--color-white);
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}


/* =========================================================
   27. HOME EQUIPMENT RESPONSIVE
   ========================================================= */

@media (max-width: 1023px) {
	.home-equipment__grid {
		grid-template-columns: 1fr;
	}

	.equipment-preview-grid {
		grid-template-columns: 1fr 1fr;
	}

	.equipment-preview--large {
		grid-column: 1 / -1;
		grid-row: auto;
	}
}

@media (max-width: 767px) {
	.home-equipment {
		padding-block: var(--space-7);
	}

	.equipment-preview-grid {
		grid-template-columns: 1fr;
		grid-auto-rows: 220px;
	}
}
/* =========================================================
   28. HOME CLIENTS
   ========================================================= */

.home-clients {
	background: var(--color-white);
	padding-block: var(--space-9);
}

.client-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: var(--space-4);
}

.client-card {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 110px;
	padding: var(--space-5);
	background: var(--color-off-white);
	border: 1px solid var(--color-gray-200);
	border-radius: var(--radius-md);
	color: var(--color-navy);
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-align: center;
	transition:
		transform var(--transition-base),
		border-color var(--transition-base),
		background-color var(--transition-base);
}

.client-card:hover {
	transform: translateY(-3px);
	background: var(--color-white);
	border-color: rgba(21, 3, 253, 0.28);
}

.home-clients__note {
	max-width: 860px;
	margin: var(--space-5) 0 0;
	color: var(--color-text-muted);
	font-size: 0.875rem;
	line-height: 1.7;
}


/* =========================================================
   29. HOME CLIENTS RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {
	.client-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 767px) {
	.home-clients {
		padding-block: var(--space-7);
	}

	.client-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.client-card {
		min-height: 92px;
		padding: var(--space-4);
		font-size: 0.8rem;
	}
}
/* =========================================================
   30. HOME QUALITY
   ========================================================= */

.home-quality {
	background:
		linear-gradient(
			135deg,
			var(--color-navy),
			var(--color-navy-light)
		);
	padding-block: var(--space-9);
	color: var(--color-white);
}

.home-quality .section-eyebrow,
.home-quality h2 {
	color: var(--color-white);
}

.home-quality .section-eyebrow {
	color: rgba(255, 255, 255, 0.86);
}

.home-quality__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: var(--space-8);
	align-items: start;
}

.home-quality__content p {
	max-width: 680px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.0625rem;
	line-height: 1.8;
}

.quality-list {
	display: grid;
	gap: var(--space-4);
}

.quality-item {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: var(--space-5);
	padding: var(--space-5);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius-md);
}

.quality-item > span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: var(--color-brand-red);
	border-radius: 50%;
	color: var(--color-white);
	font-weight: 800;
	line-height: 1;
}

.quality-item h3 {
	margin-bottom: var(--space-2);
	color: var(--color-white);
	font-size: 1.15rem;
}

.quality-item p {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.76);
	line-height: 1.7;
}


/* =========================================================
   31. HOME QUALITY RESPONSIVE
   ========================================================= */

@media (max-width: 1023px) {
	.home-quality__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.home-quality {
		padding-block: var(--space-7);
	}

	.quality-item {
		grid-template-columns: 1fr;
	}

	.quality-item > span {
		width: 44px;
		height: 44px;
	}
}
/* =========================================================
   32. HOME NEWS
   ========================================================= */

.home-news {
	background: var(--color-off-white);
	padding-block: var(--space-9);
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-5);
}

.news-card {
	background: var(--color-white);
	border: 1px solid var(--color-gray-200);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition:
		transform var(--transition-base),
		box-shadow var(--transition-base),
		border-color var(--transition-base);
}

.news-card:hover {
	transform: translateY(-4px);
	border-color: rgba(21, 3, 253, 0.22);
	box-shadow: 0 22px 48px rgba(8, 26, 58, 0.12);
}

.news-card__link {
	display: block;
	height: 100%;
}

.news-card__image {
	aspect-ratio: 16 / 10;
	background: var(--color-gray-200);
	overflow: hidden;
}

.news-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-base);
}

.news-card:hover .news-card__image img {
	transform: scale(1.04);
}

.news-card__content {
	padding: var(--space-5);
}

.news-card__content time {
	display: block;
	margin-bottom: var(--space-3);
	color: var(--color-brand-red);
	font-size: 0.8125rem;
	font-weight: 800;
}

.news-card__content h3 {
	margin-bottom: var(--space-3);
	font-size: 1.25rem;
}

.news-card__content p {
	margin-bottom: 0;
	color: var(--color-text-muted);
	line-height: 1.7;
}

.news-empty {
	padding: var(--space-6);
	background: var(--color-white);
	border: 1px solid var(--color-gray-200);
	border-radius: var(--radius-md);
}

.news-empty p {
	margin-bottom: 0;
	color: var(--color-text-muted);
}


/* =========================================================
   33. HOME NEWS RESPONSIVE
   ========================================================= */

@media (max-width: 1023px) {
	.news-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 767px) {
	.home-news {
		padding-block: var(--space-7);
	}

	.news-grid {
		grid-template-columns: 1fr;
	}
}
/* =========================================================
   34. INTERNAL PAGE TEMPLATE
   ========================================================= */

.page-hero {
	position: relative;
	background:
		linear-gradient(
			135deg,
			var(--color-navy),
			var(--color-navy-light)
		);
	color: var(--color-white);
	overflow: hidden;
}

.page-hero::after {
	position: absolute;
	inset: auto 0 0;
	height: 5px;
	background:
		linear-gradient(
			90deg,
			var(--color-brand-red) 0 35%,
			var(--color-brand-blue) 35% 100%
		);
	content: "";
}

.page-hero__inner {
	position: relative;
	z-index: 1;
	padding-block: var(--space-9);
}

.page-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: var(--space-3);
	margin-bottom: var(--space-4);
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.page-hero__eyebrow::before {
	width: 36px;
	height: 3px;
	background: var(--color-brand-red);
	content: "";
}

.page-hero__title {
	max-width: 920px;
	margin-bottom: var(--space-5);
	color: var(--color-white);
	font-size: clamp(2.5rem, 5vw, 5rem);
	letter-spacing: -0.04em;
}

.page-hero__description {
	max-width: 760px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: clamp(1rem, 1.5vw, 1.2rem);
	line-height: 1.8;
}

.page-content-section {
	background: var(--color-white);
	padding-block: var(--space-9);
}

.page-content {
	max-width: 960px;
}

.page-content__featured-image {
	margin-bottom: var(--space-7);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.page-content__featured-image img {
	width: 100%;
}

.page-content h2,
.page-content h3,
.page-content h4 {
	margin-top: var(--space-7);
	margin-bottom: var(--space-4);
}

.page-content p,
.page-content ul,
.page-content ol {
	color: var(--color-text-muted);
	font-size: 1.0625rem;
	line-height: 1.85;
}

.page-content a {
	color: var(--color-brand-blue);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.page-content ul,
.page-content ol {
	padding-left: 1.4em;
}

.page-content li {
	margin-bottom: var(--space-2);
}

.page-links {
	margin-top: var(--space-6);
}


/* =========================================================
   35. INTERNAL PAGE RESPONSIVE
   ========================================================= */

@media (max-width: 767px) {
	.page-hero__inner {
		padding-block: var(--space-8);
	}

	.page-content-section {
		padding-block: var(--space-7);
	}

	.page-content p,
	.page-content ul,
	.page-content ol {
		font-size: 1rem;
	}
}
/* =========================================================
   36. PROJECT GALLERY PAGE
   ========================================================= */

.project-gallery-page {
	background: var(--color-white);
	padding-block: var(--space-9);
}

.project-gallery-page__intro {
	max-width: 860px;
	margin-bottom: var(--space-7);
}

.project-gallery-page__intro h2 {
	margin-bottom: var(--space-4);
}

.project-gallery-page__intro p {
	margin-bottom: 0;
	color: var(--color-text-muted);
	font-size: 1.0625rem;
	line-height: 1.8;
}

.project-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-5);
}

.project-gallery-card {
	background: var(--color-white);
	border: 1px solid var(--color-gray-200);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition:
		transform var(--transition-base),
		box-shadow var(--transition-base),
		border-color var(--transition-base);
}

.project-gallery-card:hover {
	transform: translateY(-4px);
	border-color: rgba(21, 3, 253, 0.22);
	box-shadow: 0 22px 48px rgba(8, 26, 58, 0.12);
}

.project-gallery-card__image {
	aspect-ratio: 16 / 10;
	background: var(--color-gray-200);
	overflow: hidden;
}

.project-gallery-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-base);
}

.project-gallery-card:hover .project-gallery-card__image img {
	transform: scale(1.04);
}

.project-gallery-card__content {
	padding: var(--space-5);
}

.project-gallery-card__content h3 {
	margin-bottom: var(--space-3);
	font-size: 1.25rem;
}

.project-gallery-card__content p {
	margin-bottom: 0;
	color: var(--color-text-muted);
	line-height: 1.7;
}

.project-gallery-empty {
	padding: var(--space-6);
	background: var(--color-off-white);
	border: 1px solid var(--color-gray-200);
	border-radius: var(--radius-md);
}

.project-gallery-empty p {
	margin-bottom: 0;
	color: var(--color-text-muted);
}


/* =========================================================
   37. PROJECT GALLERY PAGE RESPONSIVE
   ========================================================= */

@media (max-width: 1023px) {
	.project-gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.project-gallery-page {
		padding-block: var(--space-7);
	}

	.project-gallery-grid {
		grid-template-columns: 1fr;
	}
}
/* =========================================================
   38. EQUIPMENT GALLERY PAGE
   ========================================================= */

.equipment-gallery-page {
	background: var(--color-white);
	padding-block: var(--space-9);
}

.equipment-gallery-page__intro {
	max-width: 860px;
	margin-bottom: var(--space-7);
}

.equipment-gallery-page__intro h2 {
	margin-bottom: var(--space-4);
}

.equipment-gallery-page__intro p {
	margin-bottom: 0;
	color: var(--color-text-muted);
	font-size: 1.0625rem;
	line-height: 1.8;
}

.equipment-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-5);
}

.equipment-gallery-card {
	background: var(--color-white);
	border: 1px solid var(--color-gray-200);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition:
		transform var(--transition-base),
		box-shadow var(--transition-base),
		border-color var(--transition-base);
}

.equipment-gallery-card:hover {
	transform: translateY(-4px);
	border-color: rgba(21, 3, 253, 0.22);
	box-shadow: 0 22px 48px rgba(8, 26, 58, 0.12);
}

.equipment-gallery-card__image {
	aspect-ratio: 16 / 10;
	background: var(--color-gray-200);
	overflow: hidden;
}

.equipment-gallery-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-base);
}

.equipment-gallery-card:hover .equipment-gallery-card__image img {
	transform: scale(1.04);
}

.equipment-gallery-card__content {
	padding: var(--space-5);
}

.equipment-gallery-card__content h3 {
	margin-bottom: var(--space-3);
	font-size: 1.25rem;
}

.equipment-gallery-card__content p {
	margin-bottom: 0;
	color: var(--color-text-muted);
	line-height: 1.7;
}

.equipment-gallery-empty {
	padding: var(--space-6);
	background: var(--color-off-white);
	border: 1px solid var(--color-gray-200);
	border-radius: var(--radius-md);
}

.equipment-gallery-empty p {
	margin-bottom: 0;
	color: var(--color-text-muted);
}


/* =========================================================
   39. EQUIPMENT GALLERY PAGE RESPONSIVE
   ========================================================= */

@media (max-width: 1023px) {
	.equipment-gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.equipment-gallery-page {
		padding-block: var(--space-7);
	}

	.equipment-gallery-grid {
		grid-template-columns: 1fr;
	}
}
/* =========================================================
   40. CAREER PAGE
   ========================================================= */

.career-page {
	background: var(--color-white);
	padding-block: var(--space-9);
}

.career-page__intro {
	max-width: 860px;
	margin-bottom: var(--space-7);
}

.career-page__intro h2 {
	margin-bottom: var(--space-4);
}

.career-page__intro p {
	margin-bottom: 0;
	color: var(--color-text-muted);
	font-size: 1.0625rem;
	line-height: 1.8;
}

.career-job-list {
	display: grid;
	gap: var(--space-5);
}

.career-job-card {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: var(--space-6);
	align-items: start;
	padding: var(--space-6);
	background: var(--color-white);
	border: 1px solid var(--color-gray-200);
	border-radius: var(--radius-lg);
	box-shadow: 0 16px 36px rgba(8, 26, 58, 0.08);
}

.career-job-card__content h3 {
	margin-bottom: var(--space-3);
	font-size: 1.5rem;
}

.career-job-card__excerpt {
	margin-bottom: var(--space-4);
	color: var(--color-text-muted);
	font-size: 1.0625rem;
	line-height: 1.75;
}

.career-job-card__description {
	color: var(--color-text-muted);
	line-height: 1.8;
}

.career-job-card__description p,
.career-job-card__description ul,
.career-job-card__description ol {
	margin-bottom: var(--space-4);
}

.career-job-card__description ul,
.career-job-card__description ol {
	padding-left: 1.4em;
}

.career-job-card__action {
	padding-top: var(--space-1);
}

.career-empty,
.career-application-placeholder {
	margin-top: var(--space-7);
	padding: var(--space-6);
	background: var(--color-off-white);
	border: 1px solid var(--color-gray-200);
	border-radius: var(--radius-md);
}

.career-empty p,
.career-application-placeholder p {
	margin-bottom: 0;
	color: var(--color-text-muted);
	line-height: 1.8;
}

.career-application-placeholder h2 {
	margin-bottom: var(--space-4);
}


/* =========================================================
   41. CAREER PAGE RESPONSIVE
   ========================================================= */

@media (max-width: 767px) {
	.career-page {
		padding-block: var(--space-7);
	}

	.career-job-card {
		grid-template-columns: 1fr;
		padding: var(--space-5);
	}

	.career-job-card__action .button {
		width: 100%;
	}
}
/* =========================================================
   42. CAREER APPLICATION FORM
   ========================================================= */

.career-application-form {
	margin-top: var(--space-8);
	padding: var(--space-7);
	background: var(--color-off-white);
	border: 1px solid var(--color-gray-200);
	border-radius: var(--radius-lg);
}

.career-application-form h2 {
	margin-bottom: var(--space-4);
}

.career-application-form > p {
	max-width: 760px;
	margin-bottom: var(--space-6);
	color: var(--color-text-muted);
	line-height: 1.8;
}

.career-application-success {
	margin-bottom: var(--space-5);
	padding: var(--space-4);
	background: #eef9f1;
	border: 1px solid #b7e3c1;
	border-radius: var(--radius-md);
	color: #146c2e;
	font-weight: 700;
}

.career-form {
	display: grid;
	gap: var(--space-5);
}

.career-form__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-5);
}

.career-form__field {
	margin-bottom: 0;
}

.career-form__field label {
	display: block;
	margin-bottom: var(--space-2);
	color: var(--color-navy);
	font-weight: 800;
}

.career-form__field label span {
	color: var(--color-brand-red);
}

.career-form__field input,
.career-form__field select,
.career-form__field textarea {
	width: 100%;
	padding: 0.9rem 1rem;
	background: var(--color-white);
	border: 1px solid var(--color-gray-300);
	border-radius: var(--radius-md);
	color: var(--color-text);
	font: inherit;
}

.career-form__field input:focus,
.career-form__field select:focus,
.career-form__field textarea:focus {
	outline: 3px solid rgba(21, 3, 253, 0.16);
	border-color: var(--color-brand-blue);
}

.career-form__field textarea {
	resize: vertical;
}

@media (max-width: 767px) {
	.career-application-form {
		padding: var(--space-5);
	}

	.career-form__grid {
		grid-template-columns: 1fr;
	}

	.career-form .button {
		width: 100%;
	}
}
/* =========================================================
   45. SINGLE NEWS
   ========================================================= */

.single-news {
	background: var(--color-white);
	padding-block: var(--space-9);
}

.single-news__container {
	max-width: 960px;
}

.single-news__featured-image {
	margin-bottom: var(--space-7);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.single-news__featured-image img {
	width: 100%;
}

.single-news__content {
	color: var(--color-text-muted);
	font-size: 1.0625rem;
	line-height: 1.9;
}

.single-news__content p,
.single-news__content ul,
.single-news__content ol {
	margin-bottom: var(--space-5);
}

.single-news__content h2,
.single-news__content h3,
.single-news__content h4 {
	margin-top: var(--space-7);
	margin-bottom: var(--space-4);
	color: var(--color-navy);
}

.single-news__content ul,
.single-news__content ol {
	padding-left: 1.4em;
}

.single-news__back {
	margin-top: var(--space-7);
}


/* =========================================================
   46. SINGLE NEWS RESPONSIVE
   ========================================================= */

@media (max-width: 767px) {
	.single-news {
		padding-block: var(--space-7);
	}
}
/* =========================================================
   47. HERO SPACING FIX
   ========================================================= */

.home-hero {
	padding-inline: clamp(1rem, 4vw, 4rem);
}

.home-hero__inner {
	max-width: 1320px;
	margin-inline: auto;
	padding-inline: 0;
}

.home-hero__content {
	max-width: 760px;
}

.home-hero__title {
	max-width: 820px;
}

.home-hero__description {
	max-width: 720px;
}

@media (min-width: 1440px) {
	.home-hero {
		padding-inline: 6rem;
	}
}

@media (max-width: 1023px) {
	.home-hero {
		padding-inline: 1.5rem;
	}

	.home-hero__content {
		max-width: 680px;
	}
}

@media (max-width: 767px) {
	.home-hero {
		padding-inline: 1rem;
	}

	.home-hero__title {
		font-size: clamp(2.6rem, 13vw, 4.2rem);
	}

	.home-hero__description {
		font-size: 1rem;
		line-height: 1.75;
	}
}
/* =========================================================
   48. FINAL FIX - HOMEPAGE PROJECT PREVIEW MOBILE
   Correct target: project-preview-grid / project-preview
   ========================================================= */

@media (max-width: 767px) {
	.home-projects {
		padding-top: 4rem !important;
		padding-bottom: 4rem !important;
		overflow: visible !important;
	}

	.home-projects .container {
		width: calc(100% - 32px) !important;
		max-width: none !important;
	}

	.section-header--split {
		display: block !important;
		margin-bottom: 2rem !important;
	}

	.section-header--split > div {
		max-width: 100% !important;
	}

	.home-projects h2 {
		font-size: clamp(2rem, 9vw, 2.75rem) !important;
		line-height: 1.15 !important;
		letter-spacing: -0.03em !important;
	}

	.section-header--split .section-action,
	.section-action {
		margin-top: 1.5rem !important;
	}

	.section-action .button {
		width: 100% !important;
		justify-content: center !important;
	}

	.project-preview-grid {
		display: flex !important;
		flex-direction: column !important;
		grid-template-columns: none !important;
		grid-auto-rows: unset !important;
		gap: 0 !important;
	}

	.project-preview {
		position: relative !important;
		display: block !important;
		width: 100% !important;
		height: 280px !important;
		min-height: 280px !important;
		margin: 0 0 2rem 0 !important;
		border-radius: 1.25rem !important;
		overflow: hidden !important;
	}

	.project-preview:last-child {
		margin-bottom: 0 !important;
	}

	.project-preview--large {
		grid-row: auto !important;
		grid-column: auto !important;
	}

	.project-preview__overlay {
		position: absolute !important;
		right: 0 !important;
		bottom: 0 !important;
		left: 0 !important;
		padding: 2rem !important;
	}

	.project-preview__overlay span {
		margin-bottom: 0.9rem !important;
		font-size: 0.72rem !important;
		line-height: 1.2 !important;
		letter-spacing: 0.16em !important;
	}

	.project-preview__overlay h3 {
		max-width: 100% !important;
		margin: 0 !important;
		font-size: 1.35rem !important;
		line-height: 1.2 !important;
	}
}


/* =========================================================
   49. FINAL FIX - HOMEPAGE DESKTOP HERO SPACING
   ========================================================= */

.home-hero {
	padding-inline: clamp(1rem, 4vw, 4rem);
}

.home-hero__inner {
	max-width: 1320px;
	margin-inline: auto;
	padding-inline: 0;
}

.home-hero__content {
	max-width: 760px;
}

.home-hero__title {
	max-width: 820px;
}

.home-hero__description {
	max-width: 720px;
}

@media (min-width: 1440px) {
	.home-hero {
		padding-inline: 6rem;
	}
}

@media (max-width: 1023px) {
	.home-hero {
		padding-inline: 1.5rem;
	}

	.home-hero__content {
		max-width: 680px;
	}
}

@media (max-width: 767px) {
	.home-hero {
		padding-inline: 1rem;
	}

	.home-hero__title {
		font-size: clamp(2.6rem, 13vw, 4.2rem);
	}

	.home-hero__description {
		font-size: 1rem;
		line-height: 1.75;
	}
}
/* =========================================================
   50. TRANSPARENT HEADER ON HOMEPAGE
   ========================================================= */

.home .site-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: transparent;
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
	backdrop-filter: none;
}

.home.admin-bar .site-header {
	top: 32px;
}

.home .site-header__inner {
	min-height: 92px;
}

.home .primary-navigation__menu a {
	color: rgba(255, 255, 255, 0.92);
}

.home .primary-navigation__menu a:hover,
.home .primary-navigation__menu .current-menu-item > a {
	color: var(--color-white);
}

.home .primary-navigation__menu a::after {
	background: var(--color-brand-red);
}

.home .site-header__cta .button {
	background: var(--color-brand-red);
	color: var(--color-white);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.home .custom-logo-link {
	padding: 8px 12px;
	background: rgba(255, 255, 255, 0.92);
	border-radius: var(--radius-sm);
}

.home .home-hero {
	padding-top: 92px;
	min-height: 100svh;
}


/* =========================================================
   51. TRANSPARENT HEADER MOBILE
   ========================================================= */

@media (max-width: 1023px) {
	.home .site-header {
		position: absolute;
		background: transparent;
		border-bottom: 1px solid rgba(255, 255, 255, 0.16);
	}

	.home .site-header__inner {
		min-height: 82px;
	}

	.home .custom-logo-link {
		padding: 6px 10px;
		background: rgba(255, 255, 255, 0.94);
		border-radius: var(--radius-sm);
	}

	.home .menu-toggle__line {
		background: var(--color-white);
	}

	.home .menu-toggle {
		background: rgba(8, 26, 58, 0.42);
		border-radius: var(--radius-sm);
	}

	.home .primary-navigation {
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(12px);
	}

	.home .primary-navigation__menu a {
		color: var(--color-charcoal);
	}

	.home .primary-navigation__menu a:hover,
	.home .primary-navigation__menu .current-menu-item > a {
		color: var(--color-brand-blue);
	}

	.home .home-hero {
		padding-top: 82px;
	}
}

@media (max-width: 782px) {
	.home.admin-bar .site-header {
		top: 46px;
	}
}
/* =========================================================
   52. REMOVE HOMEPAGE LOGO BACKGROUND
   ========================================================= */

.home .custom-logo-link {
	padding: 0 !important;
	background: transparent !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

.home .custom-logo {
	filter:
		drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25))
		drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}
/* =========================================================
   NEWS ARCHIVE PAGE
   ========================================================= */

.news-page {
	padding-block: 80px;
	background: var(--color-off-white);
}

.news-page__intro {
	max-width: 760px;
	margin-bottom: 40px;
}

.news-page__intro h2 {
	margin-bottom: 12px;
	font-size: clamp(2rem, 4vw, 3rem);
	color: var(--color-navy);
}

.news-page__intro p {
	margin-bottom: 0;
	color: var(--color-text-muted);
	font-size: 1rem;
	line-height: 1.8;
}

.news-page-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.news-page-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: var(--color-white);
	border: 1px solid var(--color-gray-200);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 12px 32px rgba(8, 26, 58, 0.07);
}

.news-page-card__image {
	display: block;
	aspect-ratio: 16 / 10;
	background: var(--color-gray-200);
	overflow: hidden;
}

.news-page-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-page-card__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px;
}

.news-page-card__content time {
	display: block;
	margin-bottom: 12px;
	color: var(--color-brand-red);
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.03em;
}

.news-page-card__content h3 {
	margin-bottom: 14px;
	font-size: clamp(1.2rem, 2vw, 1.5rem);
	line-height: 1.35;
}

.news-page-card__content h3 a {
	color: var(--color-navy);
}

.news-page-card__content h3 a:hover {
	color: var(--color-brand-blue);
}

.news-page-card__content p {
	margin-bottom: 24px;
	color: var(--color-text-muted);
	font-size: 0.9375rem;
	line-height: 1.75;
}

.news-page-card__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: fit-content;
	min-height: 46px;
	margin-top: auto;
	padding: 11px 18px;
	background: var(--color-navy);
	border: 1px solid var(--color-navy);
	border-radius: 10px;
	color: var(--color-white);
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	box-shadow: 0 8px 20px rgba(8, 26, 58, 0.14);
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.2s ease;
}
.news-page-card__link::after {
	content: "→";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	line-height: 1;
	transition: transform 0.2s ease;
}
.news-page-card__link:hover {
	background: var(--color-brand-blue);
	border-color: var(--color-brand-blue);
	color: var(--color-white);
	box-shadow: 0 12px 26px rgba(22, 54, 255, 0.22);
	transform: translateY(-2px);
}

.news-page-card__link:hover::after {
	transform: translateX(4px);
}

.news-page-card__link:focus-visible {
	outline: 3px solid rgba(22, 54, 255, 0.25);
	outline-offset: 3px;
}

.news-page-pagination {
	margin-top: 48px;
}

.news-page-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}

.news-page-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 8px 14px;
	background: var(--color-white);
	border: 1px solid var(--color-gray-200);
	border-radius: 8px;
	color: var(--color-navy);
	font-weight: 700;
}

.news-page-pagination .page-numbers.current,
.news-page-pagination .page-numbers:hover {
	background: var(--color-navy);
	border-color: var(--color-navy);
	color: var(--color-white);
}

.news-page-empty {
	padding: 32px;
	background: var(--color-white);
	border: 1px solid var(--color-gray-200);
	border-radius: 16px;
	text-align: center;
}

.news-page-empty p {
	margin-bottom: 0;
	color: var(--color-text-muted);
}

@media (max-width: 1023px) {
	.news-page-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.news-page {
		padding-block: 56px;
	}

	.news-page__intro {
		margin-bottom: 28px;
	}

	.news-page-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.news-page-card__content {
		padding: 20px;
	}
}
