:root {
	--paper: #fdfcfa;
	--off: #f4f2ec;
	--ink: #1a1a1c;
	--slate: #5c6067;
	--faint: #9a9da2;
	--line: #eae8e1;
	--line-2: #e2dfd6;
	--red: #b5301f;
	--navy: #112537;
	--navy-2: #1a3348;
	--navy-line: rgba(255, 255, 255, 0.12);
	--maxw: 1140px;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: "Hanken Grotesk", system-ui, sans-serif;
	color: var(--ink);
	background: var(--paper);
	line-height: 1.7;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
h1,
h2,
h3 {
	font-weight: 500;
	line-height: 1.06;
	letter-spacing: -0.03em;
}
a {
	color: inherit;
	text-decoration: none;
}
img {
	max-width: 100%;
	display: block;
}
.wrap {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 34px;
}
.eyebrow {
	font-family: "IBM Plex Mono", monospace;
	font-size: 11.5px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--faint);
	display: inline-flex;
	align-items: center;
	gap: 12px;
}
.eyebrow::before {
	content: "";
	width: 26px;
	height: 1px;
	background: var(--red);
}
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
	font-size: 14.5px;
	letter-spacing: 0.2px;
	padding: 15px 28px;
	border: 1px solid var(--ink);
	background: var(--ink);
	color: var(--paper);
	transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	border-radius: 2px;
}
.btn:hover {
	background: transparent;
	color: var(--ink);
}
.txtlink {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-weight: 500;
	font-size: 14.5px;
	color: var(--slate);
	transition: 0.18s;
}
.txtlink:hover {
	color: var(--ink);
	gap: 13px;
}
.arrow {
	width: 15px;
	height: 15px;
	flex: 0 0 auto;
}

/* scroll progress */
.progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	width: 0;
	background: var(--red);
	z-index: 80;
	transition: width 0.1s linear;
}

/* UTILITY BAR */
.util {
	background: var(--navy);
	color: rgba(255, 255, 255, 0.72);
}
.util .wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 40px;
	font-family: "IBM Plex Mono", monospace;
	font-size: 11.5px;
	letter-spacing: 0.6px;
}
.util .u-left {
	display: flex;
	align-items: center;
	gap: 10px;
}
.util .u-left .dot {
	width: 5px;
	height: 5px;
	background: var(--red);
	border-radius: 50%;
}
.util .u-right {
	display: flex;
	align-items: center;
	gap: 22px;
}
.util .u-right a {
	color: rgba(255, 255, 255, 0.72);
	transition: 0.15s;
}
.util .u-right a:hover {
	color: #fff;
}
.util .lang a.active {
	color: #fff;
}
.util .sep {
	color: rgba(255, 255, 255, 0.28);
}

/* HEADER */
header {
	position: sticky;
	top: 0;
	z-index: 70;
	background: rgba(253, 252, 250, 0.85);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line);
	transition: 0.25s;
}
header.scrolled {
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}
.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 76px;
	transition: 0.25s;
}
header.scrolled .nav {
	height: 64px;
}
.logo {
	font-weight: 600;
	font-size: 23px;
	letter-spacing: -0.01em;
	color: var(--ink);
}
.logo b {
	color: var(--red);
}
.menu {
	display: flex;
	gap: 38px;
}
.menu a {
	font-size: 16.5px;
	color: var(--slate);
	transition: 0.16s;
	position: relative;
}
.menu a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 0;
	height: 1.5px;
	background: var(--red);
	transition: 0.2s;
}
.menu a:hover,
.menu a.active {
	color: var(--ink);
}
.menu a.active::after {
	width: 100%;
}
.hamb {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 4px;
}
.hamb span {
	width: 24px;
	height: 1.5px;
	background: var(--ink);
	transition: 0.25s;
}
.hamb.open span:nth-child(1) {
	transform: translateY(6.5px) rotate(45deg);
}
.hamb.open span:nth-child(2) {
	opacity: 0;
}
.hamb.open span:nth-child(3) {
	transform: translateY(-6.5px) rotate(-45deg);
}
.btn-header {
	color: var(--off);
	border-color: var(--red);
	background-color: var(--red);
	&:hover {
		color: var(--off);
		border-color: var(--navy);
		background-color: var(--navy);
	}
}
/* mobile nav */
.mnav {
	position: fixed;
	inset: 0;
	top: 0;
	background: var(--paper);
	z-index: 65;
	transform: translateY(-100%);
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	padding: 128px 28px 28px;
	gap: 8px;
	overflow-y: auto;
}
.mnav.open {
	transform: none;
}
.mnav a {
	font-size: 28px;
	font-weight: 500;
	letter-spacing: -0.02em;
	padding: 12px 0;
	border-bottom: 1px solid var(--line);
	color: var(--ink);
}
.mnav .btn {
	margin-top: 26px;
	justify-content: center;
	color: var(--off);
}

/* HERO FULLSCREEN */
.hero-fullscreen {
	position: relative;
	min-height: calc(100svh - 110px);
	display: flex;
	align-items: center;
	color: var(--off);
}
.hero-fullscreen .overlay {
	position: absolute;
	inset: 0;
	background: #00000080;
}
.hero-fullscreen .wrap {
	position: relative;
	max-width: 1120px;
	margin: 0 auto;
	padding: 64px 24px;
	z-index: 1;
}
.hero-fullscreen .eyebrow {
	font-family: "IBM Plex Mono", monospace;
	font-size: 11.5px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--off);
	display: inline-flex;
	align-items: center;
	gap: 12px;
}
.hero-fullscreen h1 {
	font-size: clamp(36px, 5vw, 64px);
	max-width: 15ch;
	margin-top: 32px;
}
.hero-fullscreen .sub {
	font-size: clamp(17px, 1.5vw, 20px);
	max-width: 56ch;
	margin-top: 30px;
}
.hero-fullscreen .btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
	font-size: 14.5px;
	letter-spacing: 0.2px;
	padding: 15px 28px;
	border: 1px solid var(--ink);
	background: var(--ink);
	color: var(--paper);
	transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	border-radius: 2px;

	&:hover {
		color: var(--off);
		border-color: var(--navy);
		background: var(--navy);
	}
}
.hero-fullscreen .txtlink {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-weight: 500;
	font-size: 14.5px;
	color: var(--off);
	transition: 0.18s;
}
@media (width >= 820px) {
	.hero-fullscreen .overlay {
		background: linear-gradient(90deg, #00000080 0%, transparent 80%);
	}
}

/* HERO */
.hero {
	padding: 120px 0 56px;
}
.hero h1 {
	font-size: clamp(36px, 5vw, 64px);
	max-width: 15ch;
	margin-top: 32px;
}
.hero .sub {
	font-size: clamp(17px, 1.5vw, 20px);
	color: var(--slate);
	max-width: 56ch;
	margin-top: 30px;
}
.hero-actions {
	display: flex;
	gap: 32px;
	align-items: center;
	margin-top: 44px;
	flex-wrap: wrap;
}
.hero-top {
	display: grid;
	grid-template-columns: 1.12fr 0.88fr;
	gap: 56px;
	align-items: center;
}
.hero-media {
	position: relative;
	aspect-ratio: 4/3;
	border-radius: 8px;
	overflow: hidden;
	background: repeating-linear-gradient(45deg, #f1eee7 0 14px, #eae6dd 14px 28px);
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.hero-media .ph {
	font-family: "IBM Plex Mono", monospace;
	font-size: 11px;
	letter-spacing: 1.5px;
	color: var(--faint);
	text-transform: uppercase;
	text-align: center;
	line-height: 1.9;
}
@media (max-width: 820px) {
	.hero-top {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.hero-media {
		aspect-ratio: 16/9;
	}
}
.hero-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 96px;
	border-top: 1px solid var(--line);
}
.hstat {
	padding: 34px 30px 40px;
	border-right: 1px solid var(--line);
}
.hstat:first-child {
	padding-left: 0;
}
.hstat:last-child {
	border-right: none;
	padding-right: 0;
}
.hstat .n {
	font-size: clamp(30px, 3vw, 40px);
	font-weight: 500;
	letter-spacing: -0.03em;
	line-height: 1;
	color: var(--red);
}
.hstat .l {
	font-family: "IBM Plex Mono", monospace;
	font-size: 11px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--navy);
	margin-top: 12px;
}

/* QUOTE BUILDER */
.quote-sec {
	padding: 50px 0 0;
}
.quote {
	background: var(--navy);
	color: #fff;
	border-radius: 6px;
	padding: 40px 44px;
	position: relative;
	z-index: 10;
	box-shadow: 0 30px 60px -30px rgba(17, 37, 55, 0.5);
}
.quote .qh {
	margin-bottom: 28px;
}
.quote .qh .t {
	font-size: 22px;
	font-weight: 500;
}
.quote .qh .e {
	font-family: "IBM Plex Mono", monospace;
	font-size: 11px;
	letter-spacing: 2px;
	color: rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
}
.qmode {
	display: inline-flex;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 3px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.06);
}
.qmode button {
	background: transparent;
	color: rgba(255, 255, 255, 0.92);
	border: none;
	padding: 12px 32px;
	cursor: pointer;
	font-family: "Hanken Grotesk", sans-serif;
	font-size: 15px;
	font-weight: 600;
	transition: 0.18s;
}
.qmode button.on {
	background: var(--red);
	color: #fff;
}
.qmode button:not(.on):hover {
	background: rgba(255, 255, 255, 0.12);
}
.qgrid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 22px;
	margin-top: 26px;
}
.qfield label {
	display: block;
	font-family: "IBM Plex Mono", monospace;
	font-size: 10px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 9px;
}
.qfield select {
	width: 100%;
	padding: 12px 14px;
	background: var(--navy-2);
	color: #fff;
	border: 1px solid var(--navy-line);
	border-radius: 3px;
	font-family: "Hanken Grotesk", sans-serif;
	font-size: 15px;
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ffffff88' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
}
.qfield select:focus {
	outline: none;
	border-color: var(--red);
}
.qbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
	margin-top: 30px;
	padding-top: 26px;
	border-top: 1px solid var(--navy-line);
}
.qsummary {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.85);
}
.qsummary b {
	color: #fff;
	font-weight: 600;
}
.qbar .btn {
	background: #fff;
	color: var(--navy);
	border-color: #fff;
	white-space: nowrap;
}
.qbar .btn:hover {
	background: transparent;
	color: #fff;
}

/* PHOTO */
.photo-band {
  position: relative;
	height: clamp(300px, 42vw, 520px);
	overflow: hidden;
	background: var(--off);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}
.photo-band img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translate3d(0, 0, 0) scale(1.2);
	will-change: transform;
	backface-visibility: hidden;
}
.photo-band .overlay {
  position: absolute;
  inset: 0;
  background: #00000080;
}
.photo-band .title {
  width: 100%;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
	text-align: center;
	padding-inline: 2rem;
  font-size: clamp(28px, 3vw, 48px);
  color: var(--off);
  z-index: 1;
}
.ph {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	background:
		linear-gradient(115deg, rgba(17, 37, 55, 0.05), transparent 55%),
		repeating-linear-gradient(135deg, #ece9e2, #ece9e2 26px, #e6e2d9 26px, #e6e2d9 52px);
	color: #b3aea2;
	position: relative;
}
.ph svg {
	width: 46px;
	height: 46px;
	stroke-width: 1.2;
}
.ph .lbl {
	font-family: "IBM Plex Mono", monospace;
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
}
.ph .corner {
	position: absolute;
	left: 34px;
	bottom: 26px;
	font-family: "IBM Plex Mono", monospace;
	font-size: 10.5px;
	letter-spacing: 1.5px;
	color: #a7a296;
	text-transform: uppercase;
}
.ph.portrait {
	aspect-ratio: 4/5;
	height: auto;
}

@media (prefers-reduced-motion: reduce) {
	.photo-band img {
		transform: none !important;
	}
}

/* SECTIONS */
section {
	padding: 120px 0;
}
.off {
	background: var(--off);
}
.sec-head {
	max-width: 960px;
  margin-inline: auto;
	margin-bottom: 60px;
  text-align: center;
}
.sec-head h2 {
	font-size: clamp(26px, 3vw, 40px);
	margin-top: 20px;
}
.sec-head p {
	color: var(--slate);
	margin-top: 20px;
	font-size: 17px;
  max-width: 720px;
  margin-inline: auto;
}

/* PILLARS */
.pillars {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid var(--line);
}
.pillar {
	padding: 40px 34px 44px;
	border-right: 1px solid var(--line);
	transition: 0.2s;
}
.pillar:hover {
	background: var(--paper);
}
.pillar:first-child {
	padding-left: 0;
}
.pillar:last-child {
	border-right: none;
	padding-right: 0;
}
.pillar .pn {
	font-family: "IBM Plex Mono", monospace;
	font-size: 12px;
	color: var(--red);
	letter-spacing: 1px;
}
.pillar h3 {
	font-size: 22px;
	margin-top: 20px;
}
.pillar p {
	color: var(--slate);
	font-size: 15px;
	margin-top: 12px;
	line-height: 1.6;
}

/* SERVICES ACCORDION */
.svc-grid {
	border-top: 1px solid var(--line);
}
.svc-item {
	border-bottom: 1px solid var(--line);
}
.svc-head {
	display: grid;
	grid-template-columns: 56px 1fr auto;
	gap: 28px;
	padding: 30px 0;
	cursor: pointer;
	align-items: center;
	transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-item:hover .svc-head {
	padding-left: 12px;
}
.svc-head .no {
	font-family: "IBM Plex Mono", monospace;
	font-size: 12.5px;
	color: var(--red);
}
.svc-head h3 {
	font-size: 22px;
}
.svc-chev {
	width: 26px;
	height: 26px;
	border: 1px solid var(--line-2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--slate);
	transition: 0.3s;
	flex: 0 0 auto;
}
.svc-item.open .svc-chev {
	transform: rotate(180deg);
	border-color: var(--red);
	color: var(--red);
}
.svc-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-body-in {
	padding: 0 60px 34px 84px;
	color: var(--slate);
	font-size: 15.5px;
	line-height: 1.7;
	max-width: 100ch;
  text-wrap: pretty;
}

/* COVERAGE INTERACTIVE */
.cov-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.cov-list {
	margin-top: 10px;
}
.cov-row {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 16px;
	padding: 22px 0;
	cursor: pointer;
	border-bottom: 1px solid var(--line-2);
	align-items: center;
	transition: 0.2s;
}
.cov-row:first-child {
	border-top: 1px solid var(--line-2);
}
.cov-row:hover {
	padding-left: 8px;
}
.cov-row.on .c {
	color: var(--red);
}
.cov-row .c {
	font-size: 20px;
	font-weight: 500;
	transition: 0.2s;
}
.cov-row .d {
	color: var(--slate);
	font-size: 14px;
	margin-top: 3px;
}
.cov-row .t {
	font-family: "IBM Plex Mono", monospace;
	font-size: 10.5px;
	letter-spacing: 1px;
	color: var(--faint);
}
.cov-detail {
	margin-top: 26px;
	padding: 22px;
	background: var(--paper);
	border: 1px solid var(--line-2);
	border-radius: 4px;
	min-height: 96px;
}
.cov-detail .dl {
	display: flex;
	gap: 10px;
	font-size: 14px;
	margin-bottom: 8px;
}
.cov-detail .dl:last-child {
	margin-bottom: 0;
}
.cov-detail .k {
	font-family: "IBM Plex Mono", monospace;
	font-size: 11px;
	letter-spacing: 1px;
	color: var(--faint);
	text-transform: uppercase;
	min-width: 110px;
}
.map-wrap {
	display: flex;
	justify-content: center;
	padding: 10px;
}
.map-wrap svg {
	width: 74%;
	max-width: 310px;
}
.mnode {
	cursor: pointer;
	transition: 0.2s;
}
.mnode circle {
	transition: 0.25s;
}
.mnode.on circle {
	fill: var(--red);
	r: 6;
}
.mnode text {
	transition: 0.2s;
}

/* CLIENTS MARQUEE */
.clients {
	overflow: hidden;
  background-color: var(--navy);
}
.clients .wrap {
	text-align: center;
}
.clients .wrap h2 {
  color: var(--off);
}
.clients .eyebrow {
	margin-bottom: 18px;
	justify-content: center;
	display: inline-flex;
}
.clients h2 {
	font-size: clamp(23px, 2.6vw, 34px);
	margin-bottom: 56px;
}
.marquee {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.mtrack {
	display: flex;
	width: max-content;
	animation: scroll 26s linear infinite;
}
.clients:hover .mtrack {
	animation-play-state: paused;
}
.mtrack .m-logo {
	padding: 42px 56px;
	font-weight: 600;
	font-size: 20px;
	color: #c0bdb6;
	letter-spacing: 0.3px;
	white-space: nowrap;
	transition: 0.2s;

  img {
    filter: brightness(0) invert(1);
    transition: filter 0.5s;
  }
}
.mtrack .m-logo:hover {
	color: var(--slate);
}
@keyframes scroll {
	to {
		transform: translateX(-50%);
	}
}
@media (prefers-reduced-motion: reduce) {
	.mtrack {
		animation: none;
	}
}

/* ABOUT */
.about-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 88px;
	align-items: center;
}
.about .year {
	font-size: clamp(46px, 6vw, 84px);
	font-weight: 500;
	letter-spacing: -0.04em;
	line-height: 0.92;
}
.about .year small {
	display: block;
	font-family: "IBM Plex Mono", monospace;
	font-size: 11.5px;
	letter-spacing: 2px;
	color: var(--faint);
	margin-top: 20px;
	text-transform: uppercase;
}
.about p {
	color: var(--slate);
	font-size: 16.5px;
	margin-top: 20px;
}
.about .facts {
	list-style: none;
	margin-top: 34px;
	border-top: 1px solid var(--line-2);
}
.about .facts li {
	padding: 17px 0;
	border-bottom: 1px solid var(--line-2);
	font-size: 15px;
	display: flex;
  align-items: center;
	gap: 16px;
	color: var(--ink);
}
.about .facts li .k {
  display: inline-flex;
  align-items: center;
	color: var(--red);
	font-family: "IBM Plex Mono", monospace;
	font-size: 11.5px;
}

/* CERT */
.cert {
  padding-inline: 2rem;
	border-top: 1px solid var(--line);
}
.cert .wrap {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 48px;
	align-items: center;
	padding: 56px 0;
}
.cert .txt {
	max-width: 52ch;
}
.cert .txt h3 {
	font-size: 24px;
	margin-top: 14px;
}
.cert .txt p {
	color: var(--slate);
	margin-top: 12px;
	font-size: 15.5px;
}
.cert .badges {
	display: flex;
  flex-wrap: wrap;
  justify-content: center;
	gap: 18px;
}
.cert .badge {
	width: 160px;
	height: 110px;
	border: 1px solid var(--line-2);
	border-radius: 4px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--paper);
	color: #b3aea2;
  padding: 20px;
}
.cert .badge span {
	font-family: "IBM Plex Mono", monospace;
	font-size: 10px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

/* CTA */
.band {
	background: var(--navy);
	color: #fff;
}
.band .wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 44px;
	flex-wrap: wrap;
	padding: 84px 34px;
}
.band .eyebrow {
	color: rgba(255, 255, 255, 0.5);
}
.band h2 {
	font-size: clamp(24px, 3vw, 38px);
	max-width: 19ch;
	margin-top: 18px;
	color: #fff;
}
.band .btn {
	background: #fff;
	color: var(--navy);
	border-color: #fff;
}
.band .btn:hover {
	background: transparent;
	color: #fff;
}

/* CONTACT */
.contact-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 80px;
}
.field {
	margin-bottom: 22px;
}
.field label {
	display: block;
	font-family: "IBM Plex Mono", monospace;
	font-size: 10.5px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--faint);
	margin-bottom: 10px;
}
.field input,
.field textarea,
.field select {
	width: 100%;
	padding: 12px 0;
	border: none;
	border-bottom: 1px solid var(--line-2);
	background: transparent;
	font-family: "Hanken Grotesk", sans-serif;
	font-size: 16px;
	color: var(--ink);
	transition: 0.2s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
	outline: none;
	border-color: var(--ink);
}
.field select {
	cursor: pointer;
}
.field input::placeholder,
.field textarea::placeholder {
	color: #bebbb4;
}
.two {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}
#f-ruta {
	transition: background 0.6s;
}
.field.flash input {
	background: rgba(181, 48, 31, 0.06);
}
.office {
	padding: 30px 0;
	border-top: 1px solid var(--line-2);
}
.office .h {
	font-family: "IBM Plex Mono", monospace;
	font-size: 10.5px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 18px;
}
.office .h.nac {
	color: var(--slate);
}
.office .row {
	display: flex;
	gap: 18px;
	margin-bottom: 10px;
	font-size: 15px;
	color: var(--ink);
}
.office .row .k {
	color: var(--faint);
	min-width: 48px;
	font-size: 13px;
}

/* FOOTER */
footer {
	background: var(--navy);
	color: rgba(255, 255, 255, 0.6);
	padding: 64px 0 34px;
}
.foot-top {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 36px;
	border-bottom: 1px solid var(--navy-line);
}
.foot-brand .logo {
	color: #fff;
}
.foot-brand .logo b {
	color: var(--red);
}
.foot-brand p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.55);
	margin-top: 16px;
	max-width: 34ch;
	line-height: 1.6;
}
.foot-col h4 {
	font-family: "IBM Plex Mono", monospace;
	font-size: 11px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
	margin-bottom: 16px;
}
.foot-col a,
.foot-col p {
	display: block;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.72);
	margin-bottom: 10px;
}
.foot-col a:hover {
	color: #fff;
}
.foot-bottom {
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	align-items: center;
	font-family: "IBM Plex Mono", monospace;
	font-size: 11.5px;
	color: rgba(255, 255, 255, 0.4);
	letter-spacing: 0.5px;
}
.social {
	display: flex;
	gap: 14px;
}
.social a {
	color: rgba(255, 255, 255, 0.55);
	transition: 0.15s;
}
.social a:hover {
	color: #fff;
}

/* WA */
.wa {
	position: fixed;
	right: 26px;
	bottom: 26px;
	z-index: 60;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 26px rgba(0, 0, 0, 0.18);
	transition: 0.22s;
}
.wa:hover {
	transform: translateY(-3px);
	background: var(--navy-2);
}
.wa svg {
	width: 32px;
	height: 32px;
}

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.in {
	opacity: 1;
	transform: none;
}
@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

@media (max-width: 900px) {
	.util .txt-hide {
		display: none;
	}
	.menu {
		display: none;
	}
	.hamb {
		display: flex;
	}
	.hero {
		padding-top: 48px;
	}
	.hero-stats {
		grid-template-columns: 1fr 1fr;
		margin-top: 64px;
	}
	.hstat {
		border-bottom: 1px solid var(--line);
		padding: 26px 22px;
	}
	.hstat:first-child,
	.hstat:nth-child(3) {
		padding-left: 0;
	}
	.hstat:nth-child(2) {
		border-right: none;
	}
	.quote {
		padding: 30px 24px;
		margin-top: -40px;
	}
	.qgrid {
		grid-template-columns: 1fr;
	}
	.pillars {
		grid-template-columns: 1fr;
	}
	.pillar {
		border-right: none;
		border-bottom: 1px solid var(--line);
		padding: 30px 0;
	}
	.pillar:last-child {
		border-bottom: none;
	}
	.svc-head {
		grid-template-columns: 36px 1fr auto;
		gap: 14px;
	}
	.svc-body-in {
		padding: 0 0 30px 50px;
	}
	.cov-grid,
	.about-grid,
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.cert .wrap {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.foot-top {
		grid-template-columns: 1fr 1fr;
	}
	section {
		padding: 82px 0;
	}
}
@media (max-width: 540px) {
	.util .u-mail {
		display: none;
	}
	.util .u-right {
		gap: 12px;
	}
	.hero-stats,
	.two {
		grid-template-columns: 1fr 1fr;
	}
	.band .wrap {
		flex-direction: column;
		align-items: flex-start;
		gap: 28px;
	}
	.foot-top {
		grid-template-columns: 1fr;
	}
}

/* COVERAGE (mapa) */
.coverage {
	padding: 80px 0;
	background: var(--paper);
}
.coverage .card {
	max-width: var(--maxw);
	margin: 0 auto;
	background: var(--navy);
	border-radius: 10px;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
}
.cov-map {
	position: relative;
	background: #0e2032;
	padding: 26px 22px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.cov-map .grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 42px 42px;
}
.cov-map svg {
	position: relative;
	width: 100%;
	max-height: 540px;
	height: auto;
}
.cov-panel {
	padding: 54px 48px;
	color: #fff;
}
.cov-panel .eyebrow {
	color: rgba(255, 255, 255, 0.5);
}
.cov-panel h2 {
	font-size: clamp(23px, 2.4vw, 32px);
	color: #fff;
	margin: 14px 0 26px;
	font-weight: 500;
}
.cov-legend {
	display: flex;
	gap: 24px;
	margin-bottom: 22px;
	font-family: "IBM Plex Mono", monospace;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.7);
}
.cov-legend span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.cov-legend i {
	width: 11px;
	height: 11px;
	border-radius: 3px;
	display: inline-block;
}
.cov-legend i.op {
	background: var(--red);
}
.cov-legend i.reg {
	background: rgba(255, 255, 255, 0.28);
}
.cov-legend i.esp {
	background: repeating-linear-gradient(45deg, #c4382a 0 2px, #eae4d8 2px 4px);
}
.cov-item {
	display: flex;
	gap: 14px;
	padding: 22px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.cov-item:first-of-type {
	border-top: none;
	padding-top: 0;
}
.cov-item .pin {
	color: var(--red);
	flex: 0 0 auto;
	margin-top: 3px;
}
.cov-item h3 {
	font-size: 20px;
	font-weight: 600;
	color: #fff;
}
.cov-item p {
	color: rgba(255, 255, 255, 0.62);
	font-size: 14.5px;
	margin-top: 6px;
	line-height: 1.55;
}
@media (max-width: 820px) {
	.coverage .card {
		grid-template-columns: 1fr;
	}
	.cov-map {
		padding: 22px;
	}
	.cov-panel {
		padding: 36px 28px;
	}
}
.logo-link {
	display: inline-flex;
	align-items: center;
}
.logo-img {
	height: 46px;
	width: auto;
	display: block;
}
@media (max-width: 540px) {
	.logo-img {
		height: 38px;
	}
}
