/* Ultima Comp Tech — Industrial Signal design system */

:root {
	--font-display: "Google Sans", sans-serif;
	--font-body: "Google Sans", sans-serif;
	--red: #ED1C24;
	--red-dark: #c9161d;
	--black: #0a0a0a;
	--ink: #1a1a1a;
	--gray: #5c5c5c;
	--gray-light: #e8e6e3;
	--paper: #f4f2ef;
	--white: #ffffff;
	--container: 1180px;
	--header-h: 76px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--ink);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.15;
	color: var(--black);
	margin: 0 0 0.75rem;
}

p {
	margin: 0 0 1rem;
}

.u-container {
	width: min(100% - 2.5rem, var(--container));
	margin-inline: auto;
}

/* Logo stripe motif */
.u-stripe {
	height: 4px;
	background: linear-gradient(90deg, var(--black) 0%, var(--black) 38%, var(--red) 38%, var(--red) 100%);
}

/* Buttons */
.u-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.85rem 1.6rem;
	font-family: var(--font-display);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border: 2px solid transparent;
	cursor: pointer;
	transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.u-btn--primary {
	background: var(--red);
	color: var(--white);
	border-color: var(--red);
}

.u-btn--primary:hover {
	background: var(--red-dark);
	border-color: var(--red-dark);
	color: var(--white);
	transform: translateY(-2px);
}

.u-btn--ghost {
	background: transparent;
	color: var(--white);
	border-color: var(--white);
}

.u-btn--ghost:hover {
	background: var(--white);
	color: var(--black);
}

.u-btn--outline {
	background: transparent;
	color: var(--black);
	border-color: var(--black);
}

.u-btn--outline:hover {
	background: var(--black);
	color: var(--white);
}

/* Section head */
.u-section-head {
	margin-bottom: 3rem;
	max-width: 42rem;
}

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

.u-section-head__eyebrow {
	display: inline-block;
	font-family: var(--font-display);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 0.75rem;
}

.u-section-head__title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	margin-bottom: 0.5rem;
}

.u-section-head__rule {
	width: 100%;
	max-width: 280px;
	height: 4px;
	background: var(--black);
	margin-top: 1rem;
	position: relative;
}

.u-section-head--center .u-section-head__rule {
	margin-inline: auto;
}

.u-section-head__rule::after {
	content: "";
	position: absolute;
	left: 0;
	right: 30%;
	bottom: -4px;
	height: 1px;
	background: var(--gray-light);
}

.u-section-head__lead {
	color: var(--gray);
	font-size: 1.05rem;
	margin-top: 1rem;
	margin-bottom: 0;
}

/* Header */
.u-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: var(--white);
	box-shadow: 0 1px 0 var(--gray-light);
}

.u-header.is-scrolled {
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.u-header__inner {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 1rem;
	min-height: var(--header-h);
}

.u-header__logo img {
	height: 48px;
	width: auto;
}

.u-header__nav {
	display: none;
	margin-left: auto;
}

.u-header__nav ul {
	display: flex;
	gap: 0.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.u-header__nav a {
	display: block;
	padding: 0.5rem 0.75rem;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ink);
	transition: color 0.2s;
	position: relative;
}

.u-header__nav a::after {
	content: "";
	position: absolute;
	left: 0.75rem;
	right: 0.75rem;
	bottom: 0;
	height: 2px;
	background: var(--red);
	transform: scaleX(0);
	transition: transform 0.25s var(--ease);
}

.u-header__nav a:hover,
.u-header__nav a.is-active {
	color: var(--red);
}

.u-header__nav a:hover::after,
.u-header__nav a.is-active::after {
	transform: scaleX(1);
}

.u-header__cta {
	display: none;
	flex-shrink: 0;
	align-self: center;
	white-space: nowrap;
	padding: 0.55rem 1rem;
	font-size: 0.68rem;
	line-height: 1;
	letter-spacing: 0.06em;
}

.u-header__toggle {
	margin-left: auto;
	background: none;
	border: none;
	font-size: 1.35rem;
	color: var(--black);
	cursor: pointer;
	padding: 0.5rem;
}

@media (min-width: 1100px) {
	.u-header__nav {
		display: block;
	}

	.u-header__nav ul {
		gap: 0;
	}

	.u-header__nav a {
		padding: 0.5rem 0.45rem;
		font-size: 0.7rem;
	}

	.u-header__cta {
		display: inline-flex;
		margin-left: 0.5rem;
	}

	.u-header__toggle {
		display: none;
	}
}

@media (min-width: 1280px) {
	.u-header__nav a {
		padding: 0.5rem 0.75rem;
		font-size: 0.78rem;
	}

	.u-header__cta {
		padding: 0.6rem 1.2rem;
		font-size: 0.72rem;
	}
}

.u-header__mobile {
	display: none;
	position: fixed;
	inset: var(--header-h) 0 0 0;
	background: var(--white);
	padding: 1.5rem;
	overflow-y: auto;
	z-index: 999;
	border-top: 1px solid var(--gray-light);
}

.u-header__mobile.is-open {
	display: block;
}

.u-header__mobile a {
	display: block;
	padding: 0.85rem 0;
	font-family: var(--font-display);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	border-bottom: 1px solid var(--gray-light);
}

/* Hero */
.u-hero {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: calc(var(--header-h) + 3rem) 0 4rem;
	overflow: hidden;
	background: var(--black);
}

.u-hero__bg {
	position: absolute;
	inset: 0;
	object-fit: cover;
	object-position: center 40%;
	width: 100%;
	height: 100%;
	opacity: 0.78;
}

.u-hero__mesh {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(237, 28, 36, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(237, 28, 36, 0.05) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: linear-gradient(180deg, transparent 0%, black 40%, black 100%);
	opacity: 0.7;
}

.u-hero__fade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.4) 40%, rgba(10, 10, 10, 0.78) 100%);
}

.u-hero__content {
	position: relative;
	z-index: 2;
	width: min(100% - 2.5rem, 720px);
	max-width: 720px;
	margin-inline: auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	align-self: center;
}

.u-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.4rem 0.85rem;
	background: rgba(237, 28, 36, 0.15);
	border: 1px solid rgba(237, 28, 36, 0.4);
	color: var(--white);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
}

.u-hero__badge::before {
	content: "";
	width: 8px;
	height: 8px;
	background: var(--red);
	border-radius: 50%;
	animation: pulse 2s infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.4;
	}
}

.u-hero__title {
	font-size: clamp(2.2rem, 5.5vw, 3.75rem);
	color: var(--white);
	margin-bottom: 1.25rem;
}

.u-hero__title em {
	font-style: normal;
	color: var(--red);
}

.u-hero__text {
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(1rem, 2vw, 1.15rem);
	max-width: 58ch;
	margin-inline: auto;
	margin-bottom: 2rem;
}

.u-hero__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 2.5rem;
}

.u-hero__metrics {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.u-hero__metric {
	text-align: center;
}

.u-hero__metric strong {
	display: block;
	font-family: var(--font-display);
	font-size: 1.75rem;
	color: var(--red);
	line-height: 1;
	margin-bottom: 0.25rem;
}

.u-hero__metric span {
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
}

/* Sections */
.u-section {
	padding: 5.5rem 0;
}

.u-section--paper {
	background: var(--paper);
}

.u-section--white {
	background: var(--white);
}

.u-section--dark {
	background: var(--black);
	color: var(--white);
}

.u-section--dark h2,
.u-section--dark h3,
.u-section--dark h4 {
	color: var(--white);
}

.u-section--dark .u-section-head__lead {
	color: rgba(255, 255, 255, 0.65);
}

/* About */
.u-about__grid {
	display: grid;
	gap: 3rem;
}

.u-about__grid>* {
	min-width: 0;
}

@media (min-width: 900px) {
	.u-about__grid {
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
		align-items: start;
	}
}

.u-about__visual {
	position: relative;
	margin-bottom: 2rem;
	overflow: hidden;
}

.u-about__visual img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	display: block;
}

.u-about__visual::after {
	content: "";
	position: absolute;
	right: 1.25rem;
	bottom: 1.25rem;
	width: 4.5rem;
	height: 4.5rem;
	border-right: 3px solid var(--red);
	border-bottom: 3px solid var(--red);
	pointer-events: none;
}

.u-about__quote {
	border-left: 4px solid var(--red);
	padding-left: 1.25rem;
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--ink);
	margin: 1.5rem 0;
}

.u-about__secondary {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	margin-top: 1.5rem;
	display: block;
}

.u-pillars {
	display: grid;
	gap: 1.5rem;
	margin-top: 3rem;
}

@media (min-width: 640px) {
	.u-pillars {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.75rem;
	}

	.u-pillars .u-pillar:last-child:nth-child(odd) {
		grid-column: 1 / -1;
		max-width: 50%;
		margin-inline: auto;
	}
}

@media (min-width: 900px) {
	.u-pillars {
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
	}

	.u-pillars .u-pillar:last-child:nth-child(odd) {
		max-width: none;
		margin-inline: 0;
	}
}

.u-pillar {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding: 2rem 1.75rem;
	min-height: 6.5rem;
	background: var(--white);
	border: 1px solid var(--gray-light);
	transition: border-color 0.25s, transform 0.25s var(--ease);
}

.u-pillar:hover {
	border-color: var(--red);
	transform: translateY(-3px);
}

.u-pillar__icon {
	flex-shrink: 0;
	width: 4rem;
	height: 4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--black);
	color: var(--red);
	font-size: 1.6rem;
}

.u-pillar__title {
	font-size: 1.1rem;
	line-height: 1.4;
	margin: 0;
}

/* Products */
.u-product-block {
	margin-bottom: 4rem;
}

.u-product-block:last-child {
	margin-bottom: 0;
}

.u-product-block__head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 3px solid var(--black);
}

.u-product-block__head h3 {
	font-size: 1.35rem;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.u-product-block__head h3 i {
	color: var(--red);
}

.u-product-cats {
	display: grid;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

@media (min-width: 768px) {
	.u-product-cats {
		grid-template-columns: 1fr 1fr;
	}
}

.u-product-cats h4 {
	font-size: 1rem;
	color: var(--red);
	margin-bottom: 0.35rem;
}

.u-product-cats p {
	font-size: 0.92rem;
	color: var(--gray);
	margin: 0;
}

.u-product-resources {
	list-style: none;
	margin: 0.85rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.45rem;
}

.u-product-resources a {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--ink);
	transition: color 0.2s var(--ease);
}

.u-product-resources a i {
	color: var(--red);
}

.u-product-resources a:hover {
	color: var(--red);
}

.u-product-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

@media (min-width: 640px) {
	.u-product-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 900px) {
	.u-product-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.u-product-card {
	background: var(--white);
	border: 1px solid var(--gray-light);
	overflow: hidden;
	transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

a.u-product-card {
	display: block;
	color: inherit;
	text-decoration: none;
	cursor: pointer;
}

.u-product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.u-product-card__img {
	aspect-ratio: 1;
	overflow: hidden;
	background: var(--paper);
}

.u-product-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s var(--ease);
}

.u-product-card:hover .u-product-card__img img {
	transform: scale(1.05);
}

.u-product-card__name {
	padding: 0.85rem;
	font-family: var(--font-display);
	font-size: 0.82rem;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin: 0;
	display: block;
}

a.u-product-card__name--link {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s;
}

a.u-product-card__name--link:hover {
	color: var(--red);
}

/* Product card image slider (same product, multiple photos) */
.u-product-card--slider {
	position: relative;
	padding-bottom: 0;
}

.u-product-card--slider:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.u-product-card__viewport {
	position: relative;
	overflow: hidden;
}

.u-product-card__track {
	display: flex;
	transition: transform 0.45s var(--ease);
	will-change: transform;
}

.u-product-card__slide {
	flex: 0 0 100%;
	min-width: 100%;
	display: block;
	color: inherit;
	text-decoration: none;
	cursor: pointer;
}

.u-product-card--slider .u-product-card__img {
	background: var(--white);
}

.u-product-card--slider .u-product-card__img img {
	object-fit: contain;
	padding: 0.75rem;
	transform: none;
}

.u-product-card--slider:hover .u-product-card__img img {
	transform: none;
}

.u-product-card__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 1.85rem;
	height: 1.85rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: rgba(10, 10, 10, 0.72);
	color: var(--white);
	font-size: 0.7rem;
	cursor: pointer;
	opacity: 0;
	transition: opacity 0.2s, background 0.2s;
}

.u-product-card--slider:hover .u-product-card__nav,
.u-product-card--slider:focus-within .u-product-card__nav {
	opacity: 1;
}

.u-product-card__nav:hover {
	background: var(--red);
}

.u-product-card__nav--prev {
	left: 0.5rem;
}

.u-product-card__nav--next {
	right: 0.5rem;
}

.u-product-card__dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.4rem;
	padding: 0.55rem 0.5rem 0;
}

.u-product-card__dot {
	width: 0.45rem;
	height: 0.45rem;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: var(--gray-light);
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
}

.u-product-card__dot.is-active {
	background: var(--red);
	transform: scale(1.15);
}

.u-product-card__dot:hover {
	background: var(--gray);
}

.u-product-card--slider .u-product-card__name {
	padding-top: 0.55rem;
}

@media (hover: none) {
	.u-product-card__nav {
		opacity: 1;
	}
}

/* Events */
.u-events__grid {
	display: grid;
	gap: 1.25rem;
}

@media (min-width: 640px) {
	.u-events__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	.u-events__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.u-event {
	position: relative;
	overflow: hidden;
	margin: 0;
	background: var(--black);
}

.u-event img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	filter: grayscale(15%);
	transition: filter 0.4s, transform 0.5s var(--ease);
}

.u-event:hover img {
	filter: grayscale(0%);
	transform: scale(1.03);
}

.u-event::after {
	content: "";
	position: absolute;
	inset: 0;
	border: 2px solid transparent;
	transition: border-color 0.3s;
	pointer-events: none;
}

.u-event:hover::after {
	border-color: var(--red);
}

.u-event__label {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	padding: 1.75rem 1rem 0.75rem;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
	color: var(--white);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.u-event__label::before {
	content: "";
	display: inline-block;
	width: 1.25rem;
	height: 2px;
	margin-right: 0.5rem;
	vertical-align: middle;
	background: var(--red);
}

/* Schemes */
.u-schemes {
	display: grid;
	gap: 2.5rem;
	align-items: center;
}

@media (min-width: 900px) {
	.u-schemes {
		grid-template-columns: 1fr 1fr;
	}
}

.u-schemes__visual {
	margin-bottom: 1.5rem;
	border: 1px solid var(--gray-light);
	overflow: hidden;
}

.u-schemes__visual img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
}

.u-schemes__panel {
	background: var(--black);
	color: var(--white);
	padding: 2rem;
	position: relative;
	overflow: hidden;
}

.u-schemes__panel::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: var(--red);
}

.u-schemes__panel h4 {
	color: var(--white);
	margin-bottom: 1.25rem;
}

.u-schemes__panel ul {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem;
}

.u-schemes__panel li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.6rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.95rem;
}

.u-schemes__panel li i {
	color: var(--red);
}

.u-schemes__gallery {
	display: grid;
	gap: 1.25rem;
	margin-top: 2.5rem;
}

@media (min-width: 640px) {
	.u-schemes__gallery {
		grid-template-columns: repeat(2, 1fr);
	}
}

.u-scheme-card {
	position: relative;
	overflow: hidden;
	margin: 0;
	border: 1px solid var(--gray-light);
	background: var(--paper);
}

.u-scheme-card img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
	transition: transform 0.5s var(--ease);
}

.u-scheme-card:hover img {
	transform: scale(1.04);
}

.u-scheme-card__label {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1.75rem 1rem 0.75rem;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
	color: var(--white);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.u-scheme-card__label::before {
	content: "";
	display: inline-block;
	width: 1.25rem;
	height: 2px;
	margin-right: 0.5rem;
	vertical-align: middle;
	background: var(--red);
}

/* BOQ */
.u-boq {
	display: grid;
	gap: 2.5rem;
	align-items: center;
}

@media (min-width: 900px) {
	.u-boq {
		grid-template-columns: 0.95fr 1.05fr;
	}
}

.u-boq__img {
	position: relative;
}

.u-boq__img img {
	width: 100%;
	aspect-ratio: 5/4;
	object-fit: cover;
}

.u-boq__img::before {
	content: "BOQ";
	position: absolute;
	top: 1rem;
	left: 1rem;
	font-family: var(--font-display);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	background: var(--red);
	color: var(--white);
	padding: 0.35rem 0.65rem;
}

.u-boq__list {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0 2rem;
	display: grid;
	gap: 0.5rem;
}

@media (min-width: 500px) {
	.u-boq__list {
		grid-template-columns: 1fr 1fr;
	}
}

.u-boq__list li {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-size: 0.92rem;
}

.u-boq__list i {
	color: var(--red);
	margin-top: 0.2rem;
}

/* Presence */
.u-branches {
	display: grid;
	gap: 1.25rem;
}

@media (min-width: 768px) {
	.u-branches {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	.u-branches {
		grid-template-columns: repeat(4, 1fr);
	}
}

.u-branch {
	display: flex;
	flex-direction: column;
	background: var(--white);
	border: 1px solid var(--gray-light);
	overflow: hidden;
	position: relative;
	transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.u-branch:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.u-branch::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--red);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.35s var(--ease);
}

.u-branch:hover::after {
	transform: scaleX(1);
}

.u-branch__img {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--paper);
}

.u-branch__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.u-branch__body {
	padding: 1.25rem 1rem 1.5rem;
	text-align: center;
}

.u-branch h4 {
	margin: 0 0 0.35rem;
	font-size: 1.05rem;
}

.u-branch__label {
	margin: 0 0 0.65rem;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--gray);
}

.u-branch__address {
	margin: 0;
	font-size: 0.82rem;
	line-height: 1.55;
	color: var(--gray-dark);
	text-transform: none;
	letter-spacing: normal;
}

/* Contact */
#contact.u-section {
	padding-bottom: 3.5rem;
}

.u-contact {
	display: grid;
	gap: 2.5rem;
	align-items: start;
}

@media (min-width: 900px) {
	.u-contact {
		grid-template-columns: 0.4fr 0.6fr;
	}
}

.u-careers {
	background: var(--black);
	color: rgba(255, 255, 255, 0.8);
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	border-top: 4px solid var(--red);
	margin-top: 0.5rem;
}

.u-careers__eyebrow {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 0.65rem;
}

.u-careers__title {
	color: var(--white);
	font-size: 1.25rem;
	margin: 0 0 0.75rem;
}

.u-careers__text {
	margin: 0 0 1.25rem;
	font-size: 0.9rem;
	line-height: 1.55;
}

.u-careers .u-btn {
	align-self: flex-start;
}

.u-contact__info {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	border-left: 3px solid var(--red);
	padding-left: 1.25rem;
	align-self: start;
}

.u-contact__card {
	display: grid;
	grid-template-columns: 2.75rem 1fr;
	align-items: start;
	gap: 1rem;
	padding: 0;
	background: transparent;
	border-left: none;
}

.u-contact__card--stack {
	grid-template-columns: 1fr;
	gap: 0.75rem;
}

.u-contact__icon {
	flex-shrink: 0;
	width: 2.75rem;
	height: 2.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--black);
	color: var(--red);
	font-size: 1.15rem;
	line-height: 1;
}

.u-contact__icon i {
	display: block;
	line-height: 1;
}

.u-contact__icon .fa-linkedin-in {
	transform: translateX(1px);
}

.u-contact__body {
	min-width: 0;
}

.u-contact__card h3 {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--gray);
	margin: 0 0 0.35rem;
}

.u-contact__card p {
	margin: 0;
	font-weight: 500;
	line-height: 1.55;
}

.u-contact__card a:hover {
	color: var(--red);
}

.u-form {
	background: var(--white);
	padding: 2rem;
	border: 1px solid var(--gray-light);
}

.u-form label {
	display: block;
	font-size: 0.78rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 0.4rem;
}

.u-form .form-control,
.u-form .form-select {
	border: 1px solid var(--gray-light);
	border-radius: 0;
	padding: 0.75rem 1rem;
	font-family: var(--font-body);
}

.u-form .form-control:focus,
.u-form .form-select:focus {
	border-color: var(--red);
	box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.12);
}

.u-alert {
	padding: 1rem;
	margin-bottom: 1rem;
	font-size: 0.9rem;
}

.u-alert--success {
	background: #e8f5e9;
	color: #1b5e20;
	border-left: 4px solid #2e7d32;
}

.u-alert--error {
	background: #fdecea;
	color: #b71c1c;
	border-left: 4px solid var(--red);
}

/* Footer */
.u-footer {
	background: var(--black);
	color: rgba(255, 255, 255, 0.75);
}

.u-footer__bar {
	height: 4px;
	background: var(--red);
}

.u-footer__grid {
	display: grid;
	gap: 2.5rem;
	padding: 3rem 0;
	align-items: start;
}

@media (min-width: 768px) {
	.u-footer__grid {
		grid-template-columns: 1.3fr 1fr 1fr;
		gap: 3rem;
	}
}

.u-footer__col {
	min-width: 0;
}

.u-footer__logo {
	display: inline-block;
	margin-bottom: 1.25rem;
}

.u-footer__logo img {
	height: 52px;
	background: var(--white);
	padding: 0.5rem 0.75rem;
	display: block;
}

.u-footer__tagline {
	margin: 0 0 1.5rem;
	font-size: 0.92rem;
	line-height: 1.6;
	max-width: 22rem;
}

.u-footer__title {
	color: var(--white);
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin: 0 0 1.25rem;
	padding-bottom: 0.65rem;
	border-bottom: 2px solid var(--red);
}

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

.u-footer__links li {
	margin-bottom: 0.65rem;
}

.u-footer__links a {
	color: rgba(255, 255, 255, 0.75);
	transition: color 0.2s;
}

.u-footer__links a:hover {
	color: var(--red);
}

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

.u-footer__office {
	margin-bottom: 1.1rem;
}

.u-footer__office:last-child {
	margin-bottom: 0;
}

.u-footer__office strong {
	display: block;
	color: var(--white);
	font-size: 0.92rem;
	margin-bottom: 0.15rem;
}

.u-footer__office span {
	display: block;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.55);
	margin-bottom: 0.35rem;
}

.u-footer__office p {
	margin: 0;
	font-size: 0.82rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.75);
}

.u-footer__contact p {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	margin-bottom: 0.75rem;
	font-size: 0.9rem;
}

.u-footer__contact p:last-child {
	margin-bottom: 0;
}

.u-footer__contact-icon {
	flex-shrink: 0;
	width: 2rem;
	height: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.08);
	color: var(--red);
	font-size: 0.9rem;
}

.u-footer__contact a {
	color: rgba(255, 255, 255, 0.85);
}

.u-footer__contact a:hover {
	color: var(--red);
}

.u-footer__social a {
	display: inline-flex;
	width: 2rem;
	height: 2rem;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.08);
	color: var(--red);
	margin-top: 1.25rem;
	font-size: 0.9rem;
	transition: color 0.2s, background 0.2s;
}

.u-footer__social a:hover {
	background: rgba(255, 255, 255, 0.14);
	color: var(--red);
}

.u-footer__copy {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1.5rem 0;
	text-align: center;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.5;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.u-footer__copy p {
	margin: 0;
	font-size: inherit;
}

.u-footer__copy-credit {
	margin-top: 0.5rem !important;
	color: rgba(255, 255, 255, 0.45);
}

.u-footer__copy-credit a {
	color: rgba(255, 255, 255, 0.7);
	transition: color 0.2s var(--ease);
}

.u-footer__copy-credit a:hover {
	color: var(--white);
}

.u-footer__copy-symbol {
	display: inline-block;
	margin-right: 0.35em;
	font-size: 1.35em;
	font-weight: 600;
	line-height: 1;
	vertical-align: -0.08em;
}

.u-footer__copy strong {
	color: var(--white);
	font-weight: 600;
	text-transform: uppercase;
}

/* Scroll top */
.u-scroll-top {
	position: fixed;
	right: 1.25rem;
	bottom: 1.25rem;
	width: 44px;
	height: 44px;
	background: var(--red);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s, background 0.2s;
	z-index: 900;
}

.u-scroll-top.is-visible {
	opacity: 1;
	visibility: visible;
}

.u-scroll-top:hover {
	background: var(--red-dark);
	color: var(--white);
}

/* Preloader */
#preloader {
	position: fixed;
	inset: 0;
	background: var(--white);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.4s;
}

#preloader::after {
	content: "";
	width: 40px;
	height: 40px;
	border: 3px solid var(--gray-light);
	border-top-color: var(--red);
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* Utility */
.u-text-center {
	text-align: center;
}

.u-mt-lg {
	margin-top: 2.5rem;
}

/* Site lock */
.u-site-lock {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem 1.25rem;
	background: var(--black);
}

.u-site-lock__panel {
	width: min(100%, 26rem);
	padding: 2.5rem 2rem;
	background: var(--white);
	border-top: 4px solid var(--red);
	text-align: center;
}

.u-site-lock__logo {
	height: 52px;
	margin: 0 auto 1.5rem;
	background: var(--white);
	padding: 0.5rem 0.75rem;
}

.u-site-lock__title {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.u-site-lock__lead {
	color: var(--gray);
	font-size: 0.95rem;
	margin-bottom: 1.5rem;
}

.u-site-lock__error {
	margin-bottom: 1rem;
	text-align: left;
}

.u-site-lock__form {
	text-align: left;
}

.u-site-lock__form label {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gray);
	margin-bottom: 0.4rem;
}

.u-site-lock__form .form-control {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid var(--gray-light);
	font-family: var(--font-body);
	font-size: 1rem;
	margin-bottom: 1.25rem;
}

.u-site-lock__form .form-control:focus {
	outline: none;
	border-color: var(--red);
	box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.12);
}

.u-site-lock__submit {
	width: 100%;
}
