:root {
	--red: #ff0000;
	--navy: #001c54;
	--navy-2: #012863;
	--ink: #1a1a1a;
	--muted: #666;
	--line: #e6e6e6;
	--bg: #fff;
	--font-h: "Oswald", "Arial Narrow", Arial, sans-serif;
	--font-b: "Noto Sans", Arial, sans-serif;
	--wrap: 1180px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-b);
	font-size: 16px;
	line-height: 1.55;
	color: var(--ink);
	background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

.wrap {
	width: min(var(--wrap), calc(100% - 40px));
	margin-inline: auto;
}

.vh {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 28px;
	border: 0;
	font-family: var(--font-h);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
	cursor: pointer;
}

.btn--red { background: var(--red); }
.btn--navy { background: var(--navy); }
.btn:hover { filter: brightness(1.08); }

/* Header */
.topbar {
	background: var(--navy);
	color: #fff;
	font-size: 13px;
}

.topbar__inner { padding: 8px 0; }

.topbar__welcome { margin: 0; }

.masthead { background: #fff; border-bottom: 1px solid var(--line); }

.masthead__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 16px 0;
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.brand__mark {
	width: 56px;
	height: 56px;
	display: grid;
	place-items: center;
	background: var(--red);
	color: #fff;
	font-family: var(--font-h);
	font-weight: 700;
	font-size: 20px;
}

.brand img { width: 56px; height: 56px; object-fit: contain; }

.brand__text { display: flex; flex-direction: column; }

.brand__name {
	font-family: var(--font-h);
	font-size: 22px;
	font-weight: 600;
	color: var(--red);
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.brand__name--navy { color: var(--navy); }

.brand__tag { font-size: 13px; color: var(--muted); }

.masthead__contacts {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 28px;
}

.contact-chip,
.footer-card__row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	color: var(--navy);
}

.contact-chip__icon {
	flex: 0 0 36px;
	width: 36px;
	height: 36px;
	display: grid;
	place-items: center;
	background: var(--red);
	color: #fff;
}

.contact-chip__icon--navy { background: var(--navy); }

.mainnav { background: var(--navy); }

.mainnav__inner {
	display: flex;
	align-items: stretch;
	justify-content: flex-end;
	min-height: 56px;
}

.mainnav__list {
	display: flex;
	align-items: center;
	gap: 8px 28px;
	margin: 0;
	padding: 0 0 0 24px;
	list-style: none;
}

.mainnav__list a {
	color: #fff;
	text-decoration: none;
	font-family: var(--font-h);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.mainnav__list a:hover,
.mainnav__list a[aria-current="page"] { color: #ffd0d0; }

.mainnav__toggle {
	display: none;
	margin-left: auto;
	width: 56px;
	border: 0;
	background: var(--red);
	color: #fff;
	cursor: pointer;
}

.mainnav__burger,
.mainnav__burger::before,
.mainnav__burger::after {
	display: block;
	width: 20px;
	height: 2px;
	background: #fff;
	margin: 0 auto;
	position: relative;
}

.mainnav__burger::before,
.mainnav__burger::after {
	content: "";
	position: absolute;
	left: 0;
}

.mainnav__burger::before { top: -6px; }
.mainnav__burger::after { top: 6px; }

/* Hero */
.hero {
	position: relative;
	background: #f3f3f3;
	overflow: hidden;
}

.hero__inner {
	display: grid;
	grid-template-columns: minmax(280px, 520px) 1fr;
	gap: 32px;
	align-items: center;
	padding: 48px 0 110px;
	min-height: 560px;
}

.hero__copy { max-width: 560px; z-index: 1; }

.hero__photo {
	margin: 0;
	height: 100%;
	min-height: 480px;
}

.hero__photo img {
	width: 100%;
	height: 520px;
	object-fit: cover;
	object-position: 70% center;
}

.hero__title {
	margin: 0 0 22px;
	font-family: var(--font-h);
	font-size: clamp(34px, 5vw, 56px);
	font-weight: 700;
	line-height: 1.05;
	text-transform: uppercase;
}

.hero__title-red { display: block; color: var(--red); }
.hero__title-dark { display: block; color: #2a2a2a; }

.hero__feats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin: 0 0 18px;
}

.hero__feats p {
	margin: 0;
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 14px;
}

.hero__feat-ico { color: var(--red); flex: 0 0 auto; }

.hero__lead { margin: 0 0 22px; color: var(--muted); max-width: 46ch; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hub (front page) */
.hub-hero {
	padding: 48px 0 24px;
	background: linear-gradient(180deg, #f7f7f7 0%, #fff 100%);
}

.hub-hero__title {
	margin: 0 0 28px;
	font-family: var(--font-h);
	font-size: clamp(24px, 3.5vw, 36px);
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
	color: var(--navy);
	line-height: 1.2;
}

.hub-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.hub-card {
	position: relative;
	display: block;
	min-height: 360px;
	overflow: hidden;
	text-decoration: none;
	color: #fff;
	border: 3px solid transparent;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hub-card:hover {
	transform: translateY(-4px);
	border-color: var(--red);
	box-shadow: 0 16px 40px rgba(0, 28, 84, 0.2);
}

.hub-card__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1.02);
	transition: transform 0.35s ease;
}

.hub-card:hover .hub-card__bg { transform: scale(1.08); }

.hub-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 28, 84, 0.15) 0%, rgba(0, 28, 84, 0.72) 100%);
}

.hub-card--windows .hub-card__overlay {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.hub-card__body {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 360px;
	padding: 28px;
}

.hub-card__label {
	font-family: var(--font-h);
	font-size: 18px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--red);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.hub-card__headline {
	display: block;
	margin-top: 6px;
	font-family: var(--font-h);
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 700;
	line-height: 1.05;
	text-transform: uppercase;
}

.hub-card__headline--boxed {
	display: inline-block;
	max-width: 14ch;
	padding: 10px 14px;
	background: rgba(255, 255, 255, 0.95);
	color: var(--ink);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hub-card__feats {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
	margin-top: 18px;
	font-size: 13px;
	font-weight: 700;
}

.hub-card__feats span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.hub-hero__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 28px;
}

.about--hub { padding-top: 56px; }

/* Services band */
.services-band {
	padding: 64px 0 72px;
	background: var(--navy);
	color: #fff;
}

.services-band__title {
	margin: 0 0 32px;
	font-family: var(--font-h);
	font-size: 40px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
}

.services-band__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.service-card {
	background: #fff;
	color: var(--ink);
	padding: 24px 20px;
	min-height: 200px;
}

.service-card__ico {
	display: inline-grid;
	place-items: center;
	width: 52px;
	height: 52px;
	margin-bottom: 14px;
	background: var(--red);
	color: #fff;
}

.service-card h3 {
	margin: 0 0 8px;
	font-family: var(--font-h);
	font-size: 18px;
	text-transform: uppercase;
	color: var(--navy);
}

.service-card p {
	margin: 0;
	font-size: 14px;
	color: var(--muted);
	line-height: 1.5;
}

.hero--landing .hero__inner { padding-bottom: 80px; }

.offer__more {
	margin: 28px 0 0;
	text-align: center;
}

/* CTA bar */
.cta-bar { background: var(--red); color: #fff; }

.cta-bar__inner {
	display: grid;
	grid-template-columns: 1.1fr 1.4fr;
	gap: 32px;
	align-items: stretch;
}

.cta-card {
	background: #fff;
	color: var(--ink);
	padding: 28px 32px;
	margin-top: -36px;
	margin-bottom: 28px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.cta-card h2,
.cta-points h3,
.pages-band h2,
.about h2,
.lead h2,
.offer h2,
.entry h1,
.entry h2 {
	margin: 0 0 10px;
	font-family: var(--font-h);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.cta-card h2 { font-size: 28px; }

.cta-card p { margin: 0 0 10px; color: var(--muted); font-size: 14px; }

.cta-card__phone {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-h);
	font-size: 26px;
	font-weight: 600;
	color: var(--navy);
}

.cta-card__phone a { text-decoration: none; }

.cta-points {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	padding: 36px 0;
}

.cta-points h3 { font-size: 20px; color: #fff; }

.cta-points p { margin: 0; font-size: 14px; opacity: 0.92; }

.cta-points__ico { display: inline-block; margin-bottom: 8px; }

/* Info / two pages */
.pages-band {
	background: var(--navy);
	color: #fff;
	padding: 64px 0 80px;
}

.pages-band__inner {
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 40px;
	align-items: center;
}

.pages-band h2 { font-size: 40px; }

.pages-band__photo {
	margin: 24px 0 0;
	overflow: hidden;
}

.pages-band__photo img {
	width: 100%;
	height: 340px;
	object-fit: cover;
	object-position: 70% center;
}

.pages-card {
	background: #fff;
	color: var(--ink);
	padding: 8px 0;
	box-shadow: -16px 0 0 var(--red);
}

.pages-card__item {
	display: flex;
	gap: 16px;
	padding: 22px 28px;
	text-decoration: none;
	border-bottom: 1px solid var(--line);
}

.pages-card__item:last-child { border-bottom: 0; }

.pages-card__item:hover { background: #fafafa; }

.pages-card__ico {
	flex: 0 0 52px;
	width: 52px;
	height: 52px;
	display: grid;
	place-items: center;
	background: var(--red);
	color: #fff;
}

.pages-card__item strong {
	display: block;
	font-family: var(--font-h);
	font-size: 20px;
	text-transform: uppercase;
}

.pages-card__item em {
	display: block;
	margin-top: 4px;
	font-style: normal;
	color: var(--muted);
	font-size: 14px;
}

.pages-card__empty { margin: 0; padding: 32px 28px; color: var(--muted); }

/* About */
.about { padding: 80px 0; background: #fff; }

.about__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.about__photos img {
	width: 100%;
	height: 460px;
	object-fit: cover;
	object-position: 80% center;
}

.eyebrow {
	margin: 0 0 8px;
	font-family: var(--font-h);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--navy);
	font-size: 13px;
}

.about h2 { font-size: 42px; }

.about__copy p { color: var(--muted); }

.about__stats {
	list-style: none;
	margin: 20px 0 28px;
	padding: 0;
}

.about__stats li {
	position: relative;
	padding: 8px 0 8px 22px;
	font-family: var(--font-h);
	font-size: 18px;
	text-transform: uppercase;
	color: var(--navy);
}

.about__stats li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 16px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--red);
}

/* Lead form */
.lead { background: var(--red); color: #fff; padding: 40px 0; }

.lead__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 28px;
}

.lead h2 { font-size: 32px; margin: 0 28px 0 0; }

.lead__form {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	flex: 1;
}

.lead__form input[type="text"],
.lead__form input[type="tel"] {
	flex: 1 1 180px;
	min-height: 48px;
	border: 0;
	padding: 0 14px;
	font: inherit;
}

.lead__agree {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	flex: 1 1 100%;
	font-size: 13px;
}

.lead__ok,
.lead__err { flex: 1 1 100%; margin: 0; }

/* Products */
.offer {
	background: var(--navy);
	color: #fff;
	padding: 64px 0 80px;
}

.offer h2 {
	text-align: center;
	font-size: 40px;
	margin-bottom: 36px;
}

.offer__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.product-card {
	position: relative;
	background: #fff;
	color: var(--ink);
	padding: 16px 16px 48px;
	text-decoration: none;
}

.product-card img {
	width: 100%;
	height: 160px;
	object-fit: contain;
	margin-bottom: 12px;
}

.product-card__name {
	display: block;
	font-weight: 700;
	margin-bottom: 6px;
}

.product-card__go {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	background: var(--red);
	color: #fff;
}

.offer__empty {
	text-align: center;
	padding: 20px 0 10px;
}

.offer__empty p { margin: 0 0 20px; }

/* Inner pages */
.page-main { padding: 48px 0 72px; background: #f7f7f7; }

.page-main__inner {
	background: #fff;
	padding: 36px 40px;
}

.entry__content { color: #333; }

.page-main--shop .woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 18px;
}

.page-main--shop .woocommerce ul.products li.product {
	background: #fff;
	padding: 12px;
	list-style: none;
}

/* Footer */
.footer-band {
	background: var(--navy);
	padding: 48px 0;
}

.footer-band__grid {
	display: block;
}

.footer-card--wide {
	max-width: 720px;
}

.footer-card {
	background: #fff;
	padding: 28px 32px;
}

.footer-card__text { color: var(--muted); }

.footer-card a { text-decoration: none; color: var(--navy); font-weight: 700; }

.footer-card__contacts {
	display: grid;
	gap: 12px;
	margin-top: 16px;
}

.footer-copy {
	background: var(--red);
	color: #fff;
	padding: 16px 0;
	font-size: 14px;
}

.footer-copy p { margin: 0; }

@media (max-width: 900px) {
	.masthead__inner,
	.cta-bar__inner,
	.about__inner,
	.hero__feats,
	.cta-points,
	.offer__grid,
	.hub-cards,
	.services-band__grid {
		grid-template-columns: 1fr;
	}

	.masthead__inner { flex-direction: column; align-items: flex-start; }

	.mainnav__inner {
		position: relative;
		justify-content: flex-start;
	}

	.mainnav__toggle { display: block; }

	.mainnav__list {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		background: var(--navy-2);
		padding: 12px 20px 20px;
		z-index: 20;
	}

	.mainnav.is-open .mainnav__list { display: flex; }

	.hero__inner {
		grid-template-columns: 1fr;
		padding: 36px 0 80px;
		min-height: 0;
	}

	.hero__photo { min-height: 0; order: -1; }

	.hero__photo img { height: 240px; }

	.cta-card { margin-top: -24px; }

	.about__photos img { height: 260px; }

	.hub-card,
	.hub-card__body { min-height: 280px; }

	.lead__inner { flex-direction: column; align-items: stretch; }
}
