@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("assets/fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #111215;
  --graphite: #25282d;
  --steel: #5f6872;
  --muted: #767f89;
  --line: #dde2e8;
  --surface: #f6f7f8;
  --paper: #ffffff;
  --red: #d71920;
  --red-dark: #9f1016;
  --teal: #0f6b68;
  --amber: #b9853d;
  --shadow: 0 24px 60px rgba(17, 18, 21, 0.16);
  --max: 1200px;
  --header: 150px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  width: 100%;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(215, 25, 32, 0.42);
  outline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 12px 16px;
  color: #fff;
  background: var(--red);
  font-weight: 900;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(17, 18, 21, 0.09);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 18px 40px rgba(17, 18, 21, 0.12);
}

.utility {
  background: var(--ink);
  color: #fff;
}

.utility__inner,
.utility__service,
.utility__links,
.main-nav__inner,
.brand,
.nav-menu,
.nav-action,
.btn,
.text-link,
.contact-channels a {
  display: flex;
  align-items: center;
}

.utility__inner {
  min-height: 38px;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
}

.utility__service {
  gap: 12px;
}

.utility__service span,
.utility__links a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.utility__service strong {
  color: #fff;
  font-size: 13px;
}

.utility__links {
  gap: 22px;
}

.utility__links a[aria-current="page"] {
  color: #fff;
}

.main-nav__inner {
  min-height: 112px;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  flex: 0 0 auto;
  gap: 16px;
  min-width: 338px;
}

.brand__mark {
  width: 210px;
  height: 84px;
  object-fit: contain;
  filter: saturate(1.16) contrast(1.08) drop-shadow(0 8px 14px rgba(17, 18, 21, 0.08));
}

.brand__copy {
  display: grid;
  gap: 2px;
  padding-left: 14px;
  border-left: 2px solid rgba(215, 25, 32, 0.24);
  font-family: "Manrope", sans-serif;
  line-height: 1;
}

.brand__copy span {
  font-size: 20px;
  font-weight: 900;
}

.brand__copy small {
  color: var(--red);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.nav-menu {
  justify-content: center;
  gap: clamp(16px, 2.3vw, 34px);
  flex: 1;
}

.nav-menu a {
  position: relative;
  padding-block: 34px;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
  transition: transform 160ms ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after,
.nav-menu a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-action,
.btn {
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.nav-action {
  min-width: 132px;
  padding: 0 18px;
  color: #fff;
  background: var(--red);
  box-shadow: 0 14px 34px rgba(215, 25, 32, 0.22);
}

.nav-action svg,
.btn svg,
.text-link svg {
  width: 18px;
  height: 18px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 4px;
  color: #fff;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(760px, 86svh);
  padding-top: var(--header);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.hero__image,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
  filter: saturate(0.96) contrast(1.05);
}

.hero__veil {
  background:
    linear-gradient(90deg, rgba(17, 18, 21, 0.92) 0%, rgba(17, 18, 21, 0.66) 40%, rgba(17, 18, 21, 0.16) 100%),
    linear-gradient(0deg, rgba(17, 18, 21, 0.72) 0%, rgba(17, 18, 21, 0) 44%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: clamp(82px, 12vh, 128px);
}

.hero__content,
.page-hero__content,
.section-head,
.contact-copy,
.split-feature__content,
.product-card div {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(54px, 9.2vw, 118px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.42;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  padding: 0 22px;
}

.btn--primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 18px 42px rgba(215, 25, 32, 0.26);
}

.btn--light {
  color: var(--ink);
  background: #fff;
}

.btn--outline {
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
}

.finder {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.finder__inner {
  min-height: 116px;
  display: grid;
  grid-template-columns: minmax(250px, 340px) 1fr;
  align-items: center;
  gap: 28px;
}

.finder__title {
  display: grid;
  gap: 4px;
}

.finder__title span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.finder__title strong {
  font-size: 20px;
  line-height: 1.25;
}

.finder__links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: #fff;
}

.finder__links a {
  min-height: 62px;
  padding: 16px;
  border-right: 1px solid var(--line);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--graphite);
  font-size: 13px;
  font-weight: 900;
}

.finder__links a:last-child {
  border-right: 0;
}

.section {
  padding-block: clamp(76px, 10vw, 122px);
}

.section-head {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-head--row {
  max-width: none;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
}

.section-head h2,
.split-feature__content h2,
.service-band h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.section-head p:not(.section-kicker),
.split-feature__content p,
.contact-copy p {
  margin: 20px 0 0;
  color: var(--steel);
  font-size: 17px;
  line-height: 1.68;
}

.product-overview {
  background: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  min-height: 520px;
  display: grid;
  grid-template-rows: 250px 1fr;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}

.product-card--wide {
  grid-column: span 2;
  min-height: 460px;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  grid-template-rows: none;
}

.product-card img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.product-card div {
  padding: clamp(26px, 4vw, 48px);
  display: grid;
  align-content: end;
}

.product-card span,
.catalog-feature span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card h3,
.catalog-feature h3,
.sector-grid h3 {
  margin: 12px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(24px, 3.1vw, 38px);
  font-weight: 900;
  line-height: 1.05;
}

.product-card p,
.catalog-feature p,
.sector-grid p {
  margin: 18px 0 0;
  color: var(--steel);
}

.product-card a {
  width: fit-content;
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
}

.product-card a svg {
  width: 17px;
  height: 17px;
  color: var(--red);
}

.product-card--dark {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(17, 18, 21, 0.94), rgba(47, 51, 57, 0.96)),
    url("assets/images/gallery-01.jpeg") center/cover;
}

.product-card--dark h3,
.product-card--dark a {
  color: #fff;
}

.product-card--dark p {
  color: rgba(255, 255, 255, 0.76);
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  min-height: 700px;
  background: var(--ink);
  color: #fff;
}

.split-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-feature__content {
  padding: clamp(54px, 7vw, 96px);
  display: grid;
  align-content: center;
}

.split-feature__content h2 {
  color: #fff;
}

.split-feature__content p {
  color: rgba(255, 255, 255, 0.76);
}

.feature-steps {
  margin-top: 36px;
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.feature-steps div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.feature-steps strong {
  color: var(--red);
  font-size: 15px;
  font-weight: 900;
}

.feature-steps span {
  color: rgba(255, 255, 255, 0.9);
}

.sectors {
  background: var(--surface);
}

.text-link {
  gap: 10px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: #fff;
}

.sector-grid article {
  min-height: 330px;
  padding: 32px;
  border-right: 1px solid var(--line);
  display: grid;
  align-content: end;
}

.sector-grid article:last-child {
  border-right: 0;
}

.sector-grid svg {
  width: 36px;
  height: 36px;
  color: var(--red);
  margin-bottom: 36px;
}

.sector-grid h3 {
  font-size: 23px;
}

.catalog-center {
  background: #fff;
}

.catalog-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.catalog-feature {
  min-height: 610px;
  display: grid;
  grid-template-rows: 360px 1fr;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #fff;
}

.catalog-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-feature div {
  padding: 34px;
}

.catalog-feature--dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.catalog-feature--dark h3 {
  color: #fff;
}

.catalog-feature--dark p {
  color: rgba(255, 255, 255, 0.74);
}

.service-band {
  background: var(--ink);
  color: #fff;
}

.service-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 54px;
  align-items: center;
}

.service-band h2 {
  color: #fff;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.service-list div {
  min-height: 150px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  align-content: space-between;
}

.service-list div:nth-child(2n) {
  border-right: 0;
}

.service-list div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.service-list svg {
  width: 30px;
  height: 30px;
  color: var(--red);
}

.service-list span {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 900;
}

.visual-story {
  background: var(--surface);
}

.visual-story__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.95fr;
  gap: 18px;
}

.visual-story button {
  position: relative;
  min-height: 420px;
  padding: 0;
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
}

.visual-story button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 18, 21, 0.68), rgba(17, 18, 21, 0.02));
}

.visual-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.visual-story button:hover img {
  transform: scale(1.04);
}

.visual-story span {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.contact-section {
  padding-block: clamp(78px, 10vw, 124px);
  background: #fff;
}

.contact-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 0.8fr);
  gap: clamp(40px, 7vw, 86px);
  align-items: start;
}

.contact-channels {
  margin-top: 34px;
  display: grid;
  border: 1px solid var(--line);
}

.contact-channels a {
  min-height: 72px;
  padding: 18px 20px;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 900;
}

.contact-channels a:last-child {
  border-bottom: 0;
}

.contact-channels svg {
  width: 22px;
  height: 22px;
  color: var(--red);
}

.quote-form {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  background: var(--surface);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--graphite);
  font-size: 13px;
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid #cfd6dd;
  border-radius: 0;
  padding: 14px 15px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.quote-form textarea {
  min-height: 128px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(215, 25, 32, 0.12);
}

.quote-form__privacy {
  margin: 4px 0 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.quote-form button[disabled] {
  cursor: wait;
  opacity: 0.7;
}

.form-status {
  min-height: 0;
  margin: 18px 0 0;
  padding: 0;
  color: var(--steel);
  font-size: 13px;
  font-weight: 800;
}

.form-status:not(:empty) {
  min-height: 48px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  background: #fff;
}

.form-status.is-success {
  border-color: rgba(15, 107, 104, 0.32);
  color: #095a57;
  background: #eef8f7;
}

.form-status.is-error {
  border-color: rgba(215, 25, 32, 0.3);
  color: var(--red-dark);
  background: #fff1f1;
}

.form-status a {
  text-decoration: underline;
}

.footer {
  padding-block: 64px 30px;
  color: rgba(255, 255, 255, 0.78);
  background: #111215;
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(160px, 1fr));
  gap: 34px;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 18px;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 900;
}

.footer p {
  max-width: 380px;
  margin: 0;
}

.footer h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.75);
}

.footer__bottom {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;
}

.footer__bottom a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #fff;
}

.footer__bottom svg {
  width: 16px;
  height: 16px;
}

.mobile-actions {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  padding: 34px;
  display: grid;
  place-items: center;
  background: rgba(17, 18, 21, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 84vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.lightbox__close {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  cursor: pointer;
}

.lightbox__close svg {
  width: 22px;
  height: 22px;
}

.page-hero {
  position: relative;
  min-height: 620px;
  padding-top: var(--header);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.page-hero--compact {
  min-height: 560px;
}

.page-hero__image,
.page-hero__veil {
  position: absolute;
  inset: 0;
}

.page-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.06);
}

.page-hero__veil {
  background:
    linear-gradient(90deg, rgba(17, 18, 21, 0.92) 0%, rgba(17, 18, 21, 0.62) 48%, rgba(17, 18, 21, 0.2) 100%),
    linear-gradient(0deg, rgba(17, 18, 21, 0.66) 0%, rgba(17, 18, 21, 0) 52%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding-block: clamp(72px, 10vh, 116px);
}

.breadcrumb {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a {
  color: #fff;
}

.page-hero h1 {
  max-width: 860px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(52px, 8.5vw, 104px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
}

.page-hero p:not(.breadcrumb, .eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.48;
}

.detail-zone {
  background: var(--surface);
}

.detail-zone--white {
  background: #fff;
}

.detail-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.detail-card,
.process-grid article {
  min-height: 300px;
  padding: 34px;
  border: 1px solid var(--line);
  display: grid;
  align-content: end;
  background: #fff;
}

.detail-card svg {
  width: 34px;
  height: 34px;
  color: var(--red);
  margin-bottom: 44px;
}

.detail-card h2,
.process-grid h2,
.page-cta h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

.detail-card p,
.process-grid p {
  margin: 18px 0 0;
  color: var(--steel);
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid article {
  min-height: 340px;
}

.process-grid span {
  width: 46px;
  height: 46px;
  margin-bottom: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  font-weight: 900;
}

.resource-zone {
  background: var(--surface);
}

.resource-list {
  display: grid;
  gap: 14px;
}

.resource-list a {
  min-height: 96px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) 1fr auto;
  gap: 24px;
  align-items: center;
  background: #fff;
}

.resource-list span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.resource-list strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  line-height: 1.05;
}

.resource-list svg {
  width: 22px;
  height: 22px;
  color: var(--red);
}

.split-feature--page {
  min-height: 760px;
}

.page-cta {
  padding-block: clamp(54px, 7vw, 84px);
  color: #fff;
  background: var(--ink);
}

.page-cta__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.page-cta h2 {
  max-width: 720px;
  color: #fff;
}

.contact-section--page {
  background: var(--surface);
}

@media (max-width: 1080px) {
  :root {
    --header: 112px;
  }

  .utility {
    display: none;
  }

  .main-nav__inner {
    min-height: 112px;
    justify-content: flex-start;
  }

  .brand {
    min-width: 0;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    order: 3;
    flex: 0 0 46px;
    margin-left: auto;
  }

  .nav-action {
    display: none;
  }

  .nav-menu {
    position: fixed;
    inset: 112px 0 auto;
    max-height: calc(100svh - 112px);
    padding: 22px 24px 34px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 30px 60px rgba(17, 18, 21, 0.16);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-menu a::after {
    display: none;
  }

  .product-card--wide,
  .split-feature,
  .service-band__inner,
  .contact-section__inner {
    grid-template-columns: 1fr;
  }

  .product-card--wide {
    grid-template-rows: 310px 1fr;
  }

  .sector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sector-grid article:nth-child(2n) {
    border-right: 0;
  }

  .sector-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .detail-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-list a {
    grid-template-columns: 1fr auto;
  }

  .resource-list span {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 32px), var(--max));
  }

  .main-nav__inner {
    gap: 16px;
  }

  .brand__mark {
    width: 178px;
    height: 72px;
  }

  .brand__copy {
    display: none;
  }

  .hero {
    min-height: 780px;
  }

  .page-hero,
  .page-hero--compact {
    min-height: 600px;
  }

  .hero__content {
    padding-block: 74px 110px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .hero__lead,
  .page-hero p:not(.breadcrumb, .eyebrow) {
    font-size: 18px;
  }

  .hero__actions,
  .section-head--row,
  .footer__bottom,
  .page-cta__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .finder__inner {
    grid-template-columns: 1fr;
    padding-block: 92px 24px;
  }

  .finder__links {
    grid-template-columns: 1fr;
  }

  .finder__links a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .finder__links a:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 72px;
  }

  .product-grid,
  .catalog-layout,
  .visual-story__grid,
  .form-grid,
  .footer__inner,
  .service-list,
  .sector-grid,
  .detail-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card--wide {
    grid-column: span 1;
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 250px 1fr;
  }

  .split-feature {
    min-height: auto;
  }

  .split-feature__media {
    min-height: 340px;
  }

  .split-feature__content {
    padding: 44px 24px;
  }

  .feature-steps div {
    grid-template-columns: 48px 1fr;
  }

  .sector-grid article,
  .sector-grid article:nth-child(-n + 2),
  .sector-grid article:nth-child(2n),
  .service-list div,
  .service-list div:nth-child(2n),
  .service-list div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-list div {
    border-bottom-color: rgba(255, 255, 255, 0.16);
  }

  .sector-grid article:last-child,
  .service-list div:last-child {
    border-bottom: 0;
  }

  .catalog-feature {
    min-height: auto;
    grid-template-rows: 270px 1fr;
  }

  .detail-card,
  .process-grid article {
    min-height: auto;
    padding: 28px;
  }

  .detail-card svg,
  .process-grid span {
    margin-bottom: 34px;
  }

  .resource-list a {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .visual-story button {
    min-height: 290px;
  }

  .contact-section__inner {
    grid-template-columns: 1fr;
  }

  .quote-form {
    padding: 24px;
  }

  .mobile-actions {
    position: fixed;
    inset: auto 0 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -14px 34px rgba(17, 18, 21, 0.14);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .mobile-actions a {
    min-height: 58px;
    display: grid;
    place-items: center;
    gap: 3px;
    color: var(--ink);
    font-size: 11px;
    font-weight: 900;
  }

  .mobile-actions svg {
    width: 20px;
    height: 20px;
    color: var(--red);
  }

  .footer {
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
