:root {
  --navy: #0b2d47;
  --home-navy: var(--navy);
  --home-near-black: #081b2c;
  --home-red: var(--red);
  --home-white: var(--white);
  --home-light: #f5f6f7;
  --home-yellow: var(--yellow);
  --white: #ffffff;
  --red: #f5211a;
  --red-dark: #c9150d;
  --yellow: #e2a83c;
  --line: rgba(255, 255, 255, 0.28);
}

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

html,
body {
  width: 100%;
  min-width: 320px;
  height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  background: #000000;
  font-family: Arial, Helvetica, sans-serif;
}

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

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000000;
  color: var(--white);
}

.hero-video-stack {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: #000000;
}

.hero::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(
      100deg,
      rgba(0, 0, 0, 0.58) 0%,
      rgba(0, 0, 0, 0.34) 30%,
      rgba(0, 0, 0, 0.12) 58%,
      rgba(0, 0, 0, 0) 100%
    );
  content: "";
  pointer-events: none;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.4s linear;
  pointer-events: none;
  will-change: opacity;
}

.bg-video.is-visible {
  opacity: 1;
}

.site-header {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  height: 78px;
  grid-template-columns: minmax(220px, 1fr) auto 190px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 29, 51, 0.36);
  backdrop-filter: blur(5px);
}

.home-page .site-header {
  position: fixed;
  z-index: 30;
}

.brand {
  display: inline-flex;
  align-items: flex-end;
  gap: 7px;
  padding-left: 29px;
  line-height: 1;
}

.brand strong {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.055em;
}

.brand span {
  padding-bottom: 2px;
  color: var(--yellow);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 32px;
}

.main-navigation a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.main-navigation a.is-active {
  color: var(--yellow);
}

.header-button {
  display: flex;
  height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 25px;
  border-left: 1px solid var(--line);
  background: var(--red);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.header-button:hover {
  background: var(--red-dark);
}

.hero-content {
  position: absolute;
  z-index: 4;
  bottom: 58px;
  left: clamp(30px, 4.2vw, 68px);
  width: min(650px, calc(100% - 60px));
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.38);
}

.hero-kicker {
  margin: 0 0 16px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0 0 18px;
  font-size: clamp(3rem, 5.6vw, 5.7rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.hero-description {
  max-width: 560px;
  margin: 0 0 27px;
  font-size: 1rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.hero-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 12px 22px;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-shadow: none;
}

.hero-button-primary {
  background: var(--red);
}

.hero-button-secondary {
  background: var(--white);
  color: #172027;
}

.home-page {
  overflow-x: hidden;
  overflow-y: auto;
}

.home-shell {
  width: min(1180px, calc(100% - 60px));
  margin: 0 auto;
}

.home-content {
  background: var(--home-light);
  color: #172027;
}

.home-kicker {
  margin: 0 0 16px;
  color: var(--home-red);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-kicker-yellow {
  color: var(--home-yellow);
}

.home-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.home-button-red {
  background: var(--home-red);
  color: var(--home-white);
}

.home-button-white {
  background: var(--home-white);
  color: #172027;
}

.home-company-panel {
  display: grid;
  min-height: 500px;
  grid-template-columns: minmax(190px, 24%) minmax(0, 76%);
  background: var(--home-white);
}

.home-company-brand {
  display: flex;
  position: relative;
  min-height: 500px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 52px);
  background: var(--home-red);
  color: var(--home-white);
}

.home-company-logo {
  position: absolute;
  top: 28px;
  left: 50%;
  width: clamp(42px, 4.6vw, 64px);
  height: auto;
  transform: translateX(-50%);
}

.home-company-brand strong {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  writing-mode: vertical-rl;
  transform: translate(-50%, -50%) rotate(180deg);
  transform-origin: center;
  font-size: clamp(2.8rem, 5.8vw, 5.6rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 0.82;
}

.home-company-brand span {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: 100%;
  margin: 0;
  padding: 0 18px;
  max-width: none;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-align: center;
  transform: translateX(-50%);
}

.home-company-copy {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: clamp(42px, 6vw, 76px);
}

.home-company-copy .home-kicker {
  width: 100%;
  margin-bottom: 12px;
  font-size: 0.62rem;
}

.home-company-copy h2,
.home-service-rows h2,
.home-equipment-editorial h2,
.home-method h2,
.home-final-cta h2 {
  margin: 0;
  font-size: clamp(1.9rem, 2.6vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.home-company-copy h2 {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  line-height: 1.06;
}

.home-company-copy h2 span {
  display: block;
  white-space: nowrap;
}

.home-company-image-wrap {
  width: 100%;
  max-width: none;
  margin: 30px 0 26px;
  overflow: hidden;
}

.home-company-image {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
  object-fit: cover;
  transform: scale(1.14);
  transform-origin: center;
}

.home-company-copy p:not(.home-kicker) {
  width: 100%;
  max-width: none;
  margin: 0 0 0;
  color: #26313a;
  font-size: 1.08rem;
  line-height: 1.72;
}

.home-company-copy .home-button {
  margin-top: 28px;
  align-self: flex-start;
}

.home-service-rows {
  padding: 110px 0;
  background: var(--home-light);
}

.home-service-rows .home-shell {
  width: min(1540px, calc(100% - 90px));
}

.home-services-kicker {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
}

.home-service-rows h2 {
  max-width: none;
  margin-bottom: 54px;
  color: var(--home-navy);
}

.home-row-list {
  border-top: 1px solid #d1d7dd;
}

.home-service-row {
  display: grid;
  min-height: 146px;
  grid-template-columns: 58px minmax(420px, 0.9fr) minmax(520px, 1fr) 44px;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid #d1d7dd;
  color: var(--home-navy);
  transition: background 180ms ease, color 180ms ease, padding 180ms ease;
}

.home-service-row:hover {
  padding-right: 18px;
  background: var(--home-navy);
  color: var(--home-white);
}

.home-row-icon {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid var(--home-red);
  color: var(--home-red);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.home-row-icon::before,
.home-row-icon::after {
  position: absolute;
  background: currentColor;
  content: "";
}

.home-row-icon::before {
  width: 14px;
  height: 2px;
}

.home-row-icon::after {
  width: 2px;
  height: 14px;
}

.home-service-row strong {
  font-size: clamp(1.55rem, 2.55vw, 2.6rem);
  line-height: 1.05;
}

.home-row-text {
  color: #4d5964;
  font-size: 1.06rem;
  line-height: 1.55;
  transition: color 180ms ease;
}

.home-row-arrow {
  justify-self: end;
  color: var(--home-red);
  font-size: 2rem;
  line-height: 1;
  transition: color 180ms ease, transform 180ms ease;
}

.home-service-row:hover .home-row-icon,
.home-service-row:hover .home-row-arrow {
  color: var(--home-yellow);
}

.home-service-row:hover .home-row-icon {
  border-color: var(--home-yellow);
  transform: rotate(45deg);
}

.home-service-row:hover .home-row-text {
  color: rgba(255, 255, 255, 0.78);
}

.home-service-row:hover .home-row-arrow {
  transform: translateX(4px);
}

.home-equipment-editorial {
  padding: 112px 0;
  background: var(--home-navy);
  color: var(--home-white);
}

.home-equipment-editorial .home-shell {
  width: min(1500px, calc(100% - 90px));
}

.home-equipment-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.56fr);
  gap: clamp(38px, 7vw, 110px);
  align-items: end;
  margin-bottom: 62px;
}

.home-equipment-head h2 {
  max-width: 610px;
  font-size: clamp(1.9rem, 2.6vw, 2.7rem);
  line-height: 1.05;
}

.home-equipment-copy {
  padding-left: 28px;
  border-left: 3px solid var(--home-red);
}

.home-equipment-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 1.18vw, 1.24rem);
  line-height: 1.62;
}

.home-equipment-copy .home-button {
  margin-top: 28px;
}

.home-equipment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(360px, 1fr);
  gap: 22px;
}

.home-equipment-stack {
  display: grid;
  gap: 22px;
}

.home-equipment-block {
  position: relative;
  display: flex;
  min-height: 285px;
  align-items: flex-end;
  padding: clamp(26px, 3.5vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 46%),
    rgba(255, 255, 255, 0.045);
  overflow: hidden;
  isolation: isolate;
  transition: border-color 220ms ease, transform 220ms ease;
}

.home-equipment-block::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(7, 29, 51, 0.04) 0%,
      rgba(7, 29, 51, 0.24) 48%,
      rgba(7, 29, 51, 0.62) 100%
    );
  content: "";
}

.home-equipment-block img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.home-equipment-block:hover {
  border-color: rgba(242, 205, 22, 0.68);
  transform: translateY(-4px);
}

.home-equipment-block:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.04);
}

.home-equipment-block-large {
  min-height: 592px;
}

.home-equipment-block span {
  position: relative;
  max-width: none;
  font-size: clamp(0.78rem, 1.08vw, 1.16rem);
  font-weight: 850;
  letter-spacing: 0.055em;
  line-height: 1;
  white-space: nowrap;
}

.home-equipment-block-large span {
  max-width: none;
  font-size: clamp(0.88rem, 1.22vw, 1.32rem);
}

.home-method {
  padding: 86px 0 78px;
  background: var(--home-white);
  color: #172027;
}

.home-method .home-kicker,
.home-method h2 {
  margin-left: calc(clamp(30px, 4.2vw, 68px) - max(30px, calc((100vw - 1180px) / 2)));
}

.home-method .home-kicker {
  margin-bottom: 10px;
  font-size: clamp(0.95rem, 1.05vw, 1.18rem);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.home-method h2 {
  max-width: none;
  margin-bottom: 48px;
  color: var(--home-navy);
  font-size: clamp(1.9rem, 2.6vw, 2.7rem);
  line-height: 1.05;
  white-space: nowrap;
}

.home-method-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
}

.home-method-line::before {
  position: absolute;
  top: 22px;
  right: 0;
  left: 0;
  height: 1px;
  background: #cdd4db;
  content: "";
}

.home-method-line article {
  position: relative;
  padding-top: 70px;
}

.home-method-line span {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--home-red);
  background: var(--home-white);
  color: var(--home-red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.home-method-line h3 {
  margin: 0 0 14px;
  color: var(--home-navy);
  font-size: 1.35rem;
}

.home-method-line p {
  max-width: 330px;
  margin: 0;
  color: #4d5964;
  font-size: 0.98rem;
  line-height: 1.62;
}

.home-final-cta {
  overflow: hidden;
  padding: 88px 0;
  background: var(--home-red);
  color: var(--home-white);
}

.home-final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
}

.home-final-cta h2 {
  max-width: 850px;
}

.home-final-cta p {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: 1rem;
  line-height: 1.58;
}

.home-final-cta .home-button {
  margin-top: 30px;
}

.home-final-arrow {
  color: rgba(255, 255, 255, 0.34);
  font-size: clamp(8rem, 18vw, 19rem);
  font-weight: 700;
  line-height: 0.8;
}

.company-page {
  overflow-x: hidden;
  background: var(--home-light);
  color: #172027;
}

.company-body .site-header {
  position: sticky;
  background: rgba(7, 29, 51, 0.98);
  backdrop-filter: none;
}

.company-shell {
  width: min(1480px, calc(100% - 88px));
  margin: 0 auto;
}

.company-kicker {
  margin: 0 0 16px;
  color: var(--home-red);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.company-kicker-yellow {
  color: var(--home-yellow);
}

.company-hero {
  min-height: 72vh;
  padding: 138px 0 76px;
  background:
    linear-gradient(115deg, rgba(7, 29, 51, 0.98), rgba(7, 29, 51, 0.92)),
    var(--home-navy);
  color: var(--home-white);
}

.company-hero-grid {
  display: grid;
  min-height: 540px;
  grid-template-columns: minmax(420px, 0.72fr) minmax(640px, 1.28fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
}

.company-hero h1 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.company-identity h2,
.company-areas h2,
.company-process h2,
.company-principles h2,
.company-cta h2 {
  margin: 0;
  font-size: clamp(1.9rem, 2.6vw, 2.7rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.04;
}

.company-hero-copy p:not(.company-kicker) {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.6;
}

.company-hero-visual {
  position: relative;
  min-height: 520px;
}

.company-hero-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  overflow: hidden;
  width: min(820px, 58vw);
  aspect-ratio: 1.58 / 1;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.26);
}

.company-hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-hero-mark {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  max-width: min(520px, 40vw);
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  background: transparent;
  color: var(--home-white);
}

.company-hero-mark span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 12px 14px;
  border-left: 2px solid var(--home-red);
  background: var(--home-red);
  color: var(--home-white);
  font-size: clamp(0.78rem, 0.85vw, 0.92rem);
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.company-identity {
  display: block;
  padding: clamp(44px, 5.5vw, 72px) 0 38px;
  background: var(--home-white);
}

.company-identity-copy {
  width: min(1180px, calc(100% - 88px));
  margin: 0 auto;
  padding: 0;
}

.company-identity-copy h2 {
  max-width: 900px;
  color: var(--home-navy);
  font-size: clamp(1.9rem, 2.6vw, 2.7rem);
}

.company-identity-copy p:not(.company-kicker) {
  max-width: 840px;
  margin: 28px 0 0;
  color: #4d5964;
  font-size: clamp(1.04rem, 1.2vw, 1.22rem);
  line-height: 1.72;
}

.company-photo-strip {
  padding: 12px 0 56px;
  background: var(--home-white);
}

.company-photo-strip-inner {
  display: grid;
  width: min(1180px, calc(100% - 88px));
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.company-photo-strip figure {
  position: relative;
  min-height: 190px;
  max-height: 220px;
  margin: 0;
  overflow: hidden;
  background: var(--home-navy);
}

.company-photo-strip figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 29, 51, 0.02) 28%, rgba(7, 29, 51, 0.88) 100%);
  content: "";
}

.company-photo-strip img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 190px;
  max-height: 220px;
  object-fit: cover;
  transition: transform 240ms ease;
}

.company-photo-strip figure:hover img {
  transform: scale(1.035);
}

.company-photo-strip figcaption {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  z-index: 1;
  color: var(--home-white);
  font-size: clamp(0.95rem, 1.25vw, 1.25rem);
  font-weight: 850;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-transform: uppercase;
}

.company-areas {
  padding: 104px 0 96px;
  background: var(--home-light);
}

.company-areas h2 {
  max-width: 1080px;
  margin-bottom: 46px;
  color: var(--home-navy);
}

.company-area-list {
  display: grid;
  gap: 18px;
}

.company-area-band {
  display: grid;
  min-height: 168px;
  grid-template-columns: 90px minmax(360px, 0.82fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid #cdd4db;
}

.company-area-band:last-child {
  border-bottom: 1px solid #cdd4db;
}

.company-area-band span {
  color: var(--home-red);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.company-area-band h3 {
  position: relative;
  margin: 0;
  color: var(--home-navy);
  font-size: clamp(1.5rem, 2.8vw, 3rem);
  line-height: 1.02;
}

.company-area-band h3::after {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  width: 86px;
  height: 2px;
  background: var(--home-red);
  content: "";
}

.company-area-band p {
  margin: 0;
  color: #4d5964;
  font-size: 0.98rem;
  line-height: 1.62;
}

.company-process {
  padding: 112px 0;
  background: var(--home-navy);
  color: var(--home-white);
}

.company-process h2 {
  max-width: 1080px;
  margin-bottom: 76px;
}

.company-process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
}

.company-process-line::before {
  position: absolute;
  top: 22px;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
  content: "";
}

.company-process-line article {
  position: relative;
  padding-top: 70px;
}

.company-process-line span {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--home-yellow);
  background: var(--home-navy);
  color: var(--home-yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.company-process-line h3 {
  margin: 0 0 14px;
  font-size: 1.35rem;
}

.company-process-line p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
  line-height: 1.62;
}

.company-principles {
  padding: 96px 0 106px;
  background: var(--home-white);
}

.company-principles h2 {
  max-width: 1060px;
  margin-bottom: 52px;
  color: var(--home-navy);
}

.company-principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #cdd4db;
  border-bottom: 1px solid #cdd4db;
}

.company-principle-grid article {
  position: relative;
  min-height: 270px;
  padding: 42px 34px 34px;
  border-left: 1px solid #cdd4db;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 246, 247, 0.98));
  opacity: 0;
  transform: translateY(18px);
  animation: companyPrincipleRise 720ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.company-principle-grid article:first-child {
  border-left: 0;
}

.company-principle-grid article:nth-child(2) {
  animation-delay: 120ms;
}

.company-principle-grid article:nth-child(3) {
  animation-delay: 240ms;
}

.company-principle-grid article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), #d94a2f);
  content: "";
}

.company-principle-grid h3 {
  margin: 0 0 30px;
  color: var(--home-navy);
  font-size: clamp(1.35rem, 2.15vw, 2.25rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.08;
}

.company-principle-grid p {
  max-width: 340px;
  margin: 0;
  color: #4d5964;
  font-size: 0.98rem;
  line-height: 1.62;
}

@keyframes companyPrincipleRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.company-cta {
  overflow: hidden;
  padding: 88px 0;
  background: var(--home-red);
  color: var(--home-white);
}

.company-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
}

.company-cta h2 {
  max-width: 900px;
}

.company-cta p {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: 1rem;
  line-height: 1.58;
}

.company-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  padding: 14px 24px;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.company-button-white {
  background: var(--home-white);
  color: #172027;
}

.company-cta-arrow {
  color: rgba(255, 255, 255, 0.34);
  font-size: clamp(8rem, 18vw, 19rem);
  font-weight: 700;
  line-height: 0.8;
}

.contact-page {
  overflow-x: hidden;
  background: var(--home-light);
  color: #172027;
}

.contact-shell {
  width: min(1180px, calc(100% - 60px));
  margin: 0 auto;
}

.contact-kicker {
  margin: 0 0 16px;
  color: var(--home-red);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-kicker-yellow {
  color: var(--home-yellow);
}

.contact-kicker-white {
  color: var(--home-white);
}

.contact-hero {
  min-height: 72vh;
  padding: 138px 0 76px;
  background: var(--home-navy);
  color: var(--home-white);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.68fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
}

.contact-hero h1 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.contact-main h2,
.contact-info-strip h2,
.contact-visual-cta h2 {
  margin: 0;
  font-size: clamp(1.9rem, 2.6vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.contact-hero-copy p:not(.contact-kicker) {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.6;
}

.contact-hero-mark {
  display: flex;
  min-height: 400px;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(30px, 4vw, 48px);
  background: var(--home-red);
  color: var(--home-white);
}

.contact-hero-mark span {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: clamp(2.5rem, 7vw, 7rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 0.88;
}

.contact-main {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  background: var(--home-white);
}

.contact-invite {
  padding: clamp(46px, 6vw, 82px);
  background: var(--home-red);
  color: var(--home-white);
}

.contact-invite h2 {
  max-width: 620px;
}

.contact-invite p:not(.contact-kicker) {
  max-width: 520px;
  margin: 24px 0 0;
  font-size: 1.02rem;
  line-height: 1.68;
}

.contact-action-words {
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.contact-action-words span {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: clamp(2rem, 4.8vw, 5rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 0.95;
}

.contact-form-panel {
  padding: clamp(42px, 6vw, 82px);
  background: var(--home-white);
}

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

.contact-hidden {
  display: none;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-field-wide,
.contact-submit {
  grid-column: 1 / -1;
}

.contact-field label {
  color: var(--home-navy);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #b8c0c8;
  border-radius: 0;
  background: transparent;
  color: var(--home-navy);
  font: inherit;
  font-size: 1rem;
  line-height: 1.45;
  outline: none;
  padding: 10px 0 12px;
}

.contact-field textarea {
  resize: vertical;
  min-height: 170px;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-bottom-color: var(--home-red);
}

.contact-submit {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}

.contact-submit button {
  min-height: 52px;
  border: 0;
  background: var(--home-red);
  color: var(--home-white);
  cursor: pointer;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  padding: 15px 24px;
  text-transform: uppercase;
}

.contact-submit p {
  max-width: 380px;
  margin: 0;
  color: #68737d;
  font-size: 0.86rem;
  line-height: 1.5;
}

.contact-info-strip {
  padding: 104px 0;
  background: var(--home-navy);
  color: var(--home-white);
}

.contact-info-strip h2 {
  max-width: 880px;
  margin-bottom: 62px;
}

.contact-info-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.contact-info-line article {
  padding-top: 28px;
}

.contact-info-line span {
  display: block;
  margin-bottom: 34px;
  color: var(--home-yellow);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.contact-info-line h3 {
  margin: 0 0 14px;
  font-size: 1.28rem;
}

.contact-info-line p {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
  line-height: 1.62;
}

.contact-visual-cta {
  overflow: hidden;
  padding: 88px 0;
  background: var(--home-red);
  color: var(--home-white);
}

.contact-visual-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
}

.contact-visual-cta h2 {
  max-width: 820px;
}

.contact-visual-cta p {
  max-width: 610px;
  margin: 18px 0 0;
  font-size: 1rem;
  line-height: 1.58;
}

.contact-visual-arrow {
  color: rgba(255, 255, 255, 0.34);
  font-size: clamp(8rem, 18vw, 19rem);
  font-weight: 700;
  line-height: 0.8;
}

.inner-page {
  overflow: auto;
  min-height: 100%;
  background: var(--navy);
  color: var(--white);
}

.inner-page .site-header {
  position: fixed;
  background: rgba(7, 29, 51, 0.92);
}

.inner-page.company-body .site-header {
  position: sticky;
  background: rgba(7, 29, 51, 0.98);
  backdrop-filter: none;
}

.page-intro {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: center;
  padding: 126px clamp(30px, 4.2vw, 68px) 56px;
}

.page-kicker {
  margin: 0 0 16px;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.page-intro h1 {
  max-width: 900px;
  margin: 0 0 18px;
  font-size: clamp(3rem, 5.2vw, 5.4rem);
  font-weight: 700;
  line-height: 0.98;
}

.page-intro p:last-child {
  max-width: 620px;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.55;
}

.page-shell {
  width: min(1180px, calc(100% - 60px));
  margin: 0 auto;
}

.page-hero {
  display: flex;
  min-height: 64vh;
  align-items: center;
  padding: 126px 0 72px;
  background: var(--navy);
  color: var(--white);
}

.page-hero h1 {
  max-width: 900px;
  margin: 0 0 18px;
  font-size: clamp(3rem, 5.2vw, 5.4rem);
  font-weight: 700;
  line-height: 0.98;
}

.page-hero p:not(.page-kicker) {
  max-width: 650px;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.55;
}

.section-mark {
  display: block;
  width: 118px;
  height: 4px;
  margin-top: 32px;
  background: var(--red);
}

.service-intro,
.services-list {
  background: #f5f6f7;
  color: #172027;
}

.service-intro {
  padding: 92px 0;
}

.service-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-intro h2,
.services-list h2,
.work-method h2,
.service-cta h2 {
  margin: 0;
  font-size: clamp(1.9rem, 2.6vw, 2.7rem);
  font-weight: 700;
  line-height: 1.04;
}

.service-intro p:not(.section-kicker) {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.72;
}

.services-list {
  padding: 98px 0 108px;
}

.services-list h2 {
  max-width: 760px;
  margin-bottom: 42px;
  color: var(--navy);
}

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

.service-card {
  min-height: 250px;
  padding: clamp(28px, 3.2vw, 42px);
  border: 1px solid #d7dde3;
  background: var(--white);
}

.service-card span {
  display: block;
  margin-bottom: 42px;
  color: var(--red);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-card h3 {
  max-width: 430px;
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.12;
}

.service-card p {
  max-width: 560px;
  margin: 0;
  color: #46525d;
  font-size: 0.98rem;
  line-height: 1.62;
}

.service-card-wide {
  grid-column: 1 / -1;
  display: grid;
  min-height: 210px;
  grid-template-columns: 110px minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.service-card-wide span {
  margin-bottom: 0;
}

.service-card-wide h3 {
  margin-bottom: 0;
}

.work-method {
  padding: 104px 0;
  background: var(--navy);
  color: var(--white);
}

.work-method .section-kicker {
  color: var(--yellow);
}

.work-method h2 {
  max-width: 800px;
  margin-bottom: 44px;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.method-steps article {
  padding: 32px;
  border-top: 2px solid var(--red);
  background: rgba(255, 255, 255, 0.06);
}

.method-steps span {
  display: block;
  margin-bottom: 44px;
  color: var(--yellow);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.method-steps h3 {
  margin: 0 0 14px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.method-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  line-height: 1.62;
}

.service-cta {
  padding: 72px 0;
  background: var(--red);
  color: var(--white);
}

.service-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.service-cta h2 {
  margin-bottom: 12px;
}

.service-cta p {
  max-width: 590px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.58;
}

.cta-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 14px 24px;
  background: var(--white);
  color: #172027;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.equipment-catalog {
  padding: 92px 0 104px;
  background: #ffffff;
  color: #172027;
}

.equipment-catalog .page-shell {
  width: calc(100% - 96px);
  max-width: none;
}

.equipment-catalog-head {
  max-width: 980px;
  margin-bottom: 46px;
}

.equipment-catalog .section-kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.equipment-catalog-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.9rem, 2.6vw, 2.7rem);
  font-weight: 780;
  line-height: 1.04;
}

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

.equipment-item {
  display: grid;
  min-height: 640px;
  grid-template-rows: auto minmax(360px, 1fr) auto;
  padding: clamp(22px, 2.2vw, 32px);
  border-bottom: 1px solid #d9dee3;
  background: #ffffff;
}

.equipment-item:nth-child(odd) {
  border-right: 1px solid #d9dee3;
}

.equipment-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.equipment-item-head {
  display: block;
}

.equipment-item h3 {
  max-width: 100%;
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 820;
  line-height: 1.12;
  text-align: left;
  text-transform: uppercase;
}

.equipment-item img {
  display: block;
  width: 100%;
  max-height: 430px;
  align-self: center;
  object-fit: contain;
  transition: transform 400ms ease;
}

.equipment-item:hover img {
  transform: translateY(-6px) scale(1.025);
}

.equipment-item-foot {
  display: block;
}

.equipment-item-foot p {
  max-width: 100%;
  margin: 0;
  color: #4f5962;
  font-size: 0.86rem;
  line-height: 1.45;
}

.site-footer {
  padding: 46px 0;
  background: #081b2c;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(260px, 0.9fr);
  gap: 34px;
  align-items: start;
}

.site-footer strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.055em;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.footer-navigation a,
.footer-legal a {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-contacts {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.footer-contacts a,
.legal-copy a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(225, 40, 36, 0.75);
  text-underline-offset: 4px;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.legal-page {
  background: var(--home-light);
  color: #172027;
}

.legal-hero {
  min-height: 52vh;
}

.legal-content {
  padding: 86px 0;
}

.legal-copy {
  max-width: 880px;
}

.legal-copy h2 {
  margin: 34px 0 12px;
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.18;
}

.legal-copy p {
  margin: 0;
  color: #46525d;
  font-size: 1rem;
  line-height: 1.72;
}

.legal-copy p + p {
  margin-top: 12px;
}

.legal-copy .legal-updated {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-copy a {
  color: var(--navy);
}

@media (max-width: 1100px) {
  .home-service-row {
    grid-template-columns: 66px minmax(0, 1fr) 46px;
    gap: 18px;
    padding: 26px 0;
  }

  .home-row-text {
    grid-column: 2 / 3;
  }

  .home-row-arrow {
    grid-column: 3;
    grid-row: 1 / 3;
  }
}
@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-navigation {
    display: none;
  }

  .home-company-panel,
  .home-equipment-head,
  .home-equipment-layout,
  .home-method-line,
  .home-final-cta-inner,
  .company-hero-grid,
  .company-photo-strip-inner,
  .company-area-band,
  .company-process-line,
  .company-principle-grid,
  .company-cta-inner,
  .contact-hero-grid,
  .contact-main,
  .contact-info-line,
  .contact-visual-cta-inner {
    grid-template-columns: 1fr;
  }

  .home-company-panel {
    min-height: auto;
  }

  .home-company-brand {
    min-height: 260px;
  }

  .home-company-logo {
    top: 22px;
    width: clamp(38px, 7vw, 56px);
  }

  .home-company-brand strong {
    writing-mode: horizontal-tb;
    transform: translate(-50%, -50%);
    font-size: clamp(2.8rem, 9vw, 5.2rem);
  }

  .home-service-row {
    grid-template-columns: 66px minmax(0, 1fr) 46px;
    gap: 18px;
    padding: 26px 0;
  }

  .home-equipment-editorial .home-shell {
    width: min(100% - 60px, 1180px);
  }

  .home-equipment-copy {
    padding-left: 22px;
  }

  .home-method h2 {
    white-space: normal;
  }

  .home-equipment-block span,
  .home-equipment-block-large span {
    white-space: normal;
  }

  .home-row-text {
    grid-column: 2 / 3;
  }

  .home-row-arrow {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .home-equipment-block-large,
  .home-equipment-block {
    min-height: 230px;
  }

  .company-identity-copy {
    width: min(1180px, calc(100% - 48px));
  }

  .company-hero-grid {
    min-height: auto;
  }

  .company-hero-visual {
    min-height: 420px;
  }

  .company-hero-photo {
    width: 100%;
  }

  .company-hero-mark {
    max-width: 100%;
  }

  .company-photo-strip figure,
  .company-photo-strip img {
    min-height: 200px;
    max-height: 230px;
  }

  .company-photo-strip-inner {
    width: min(1180px, calc(100% - 48px));
  }

  .company-area-band {
    gap: 18px;
  }

  .company-area-band h3::after {
    top: calc(100% + 12px);
  }

  .contact-hero-mark {
    min-height: 300px;
  }

  .service-intro-grid,
  .method-steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-navigation {
    justify-content: flex-start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-legal {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .home-shell {
    width: min(100% - 40px, 1180px);
  }

  .home-service-rows .home-shell {
    width: min(100% - 40px, 1180px);
  }

  .home-equipment-editorial .home-shell {
    width: min(100% - 40px, 1180px);
  }

  .home-equipment-copy {
    padding-left: 18px;
  }

  .home-company-copy,
  .home-company-brand {
    padding: 40px 20px;
  }

  .home-company-brand {
    min-height: 220px;
  }

  .home-company-logo {
    top: 18px;
    width: 42px;
  }

  .home-company-brand strong {
    font-size: clamp(2.5rem, 13vw, 4.2rem);
  }

  .home-company-brand span {
    bottom: 16px;
    font-size: 0.58rem;
  }

  .home-company-copy h2 span {
    white-space: normal;
  }

  .company-shell {
    width: min(100% - 40px, 1180px);
  }

  .company-hero,
  .company-areas,
  .company-process,
  .company-principles,
  .company-cta {
    padding: 72px 0;
  }

  .company-identity-copy {
    width: min(1180px, calc(100% - 40px));
  }

  .company-photo-strip figure,
  .company-photo-strip img {
    min-height: 190px;
    max-height: 220px;
  }

  .company-photo-strip-inner {
    width: min(1180px, calc(100% - 40px));
  }

  .company-hero-mark {
    position: relative;
    margin-bottom: 18px;
  }

  .company-hero-visual {
    display: flex;
    min-height: auto;
    flex-direction: column-reverse;
  }

  .company-hero-photo {
    position: relative;
    width: 100%;
  }

  .company-photo-strip figcaption {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .company-area-band {
    min-height: auto;
  }

  .company-area-band h3 {
    padding-bottom: 24px;
  }

  .company-process-line {
    gap: 28px;
  }

  .company-process-line::before {
    display: none;
  }

  .company-process-line article {
    padding-top: 0;
    padding-left: 64px;
  }

  .company-process-line span {
    top: 0;
  }

  .company-principle-grid {
    border-bottom: 0;
  }

  .company-principle-grid article {
    min-height: auto;
    padding: 30px 0;
    border-top: 1px solid #cdd4db;
    border-left: 0;
    animation: none;
    opacity: 1;
    transform: none;
  }

  .company-principle-grid article::before {
    height: 3px;
  }

  .company-principle-grid h3 {
    margin-bottom: 18px;
  }

  .company-cta-arrow {
    font-size: 7rem;
  }

  .contact-shell {
    width: min(100% - 40px, 1180px);
  }

  .contact-hero,
  .contact-info-strip,
  .contact-visual-cta {
    padding: 72px 0;
  }

  .contact-invite,
  .contact-form-panel {
    padding: 42px 20px;
  }

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

  .contact-submit {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-action-words span {
    font-size: clamp(2rem, 11vw, 4.4rem);
  }

  .contact-visual-arrow {
    font-size: 7rem;
  }

  .home-service-rows,
  .home-equipment-editorial,
  .home-method,
  .home-final-cta {
    padding: 72px 0;
  }

  .home-method {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .home-method .home-kicker,
  .home-method h2 {
    margin-left: 10px;
  }

  .home-method h2 {
    margin-bottom: 42px;
  }

  .home-service-row {
    grid-template-columns: 1fr auto;
    min-height: auto;
  }

  .home-row-icon,
  .home-row-text {
    grid-column: 1 / -1;
  }

  .home-row-arrow {
    grid-column: 2;
    grid-row: 2 / 4;
  }

  .home-method-line {
    gap: 28px;
  }

  .home-method-line::before {
    display: none;
  }

  .home-method-line article {
    padding-top: 0;
    padding-left: 64px;
  }

  .home-method-line span {
    top: 0;
  }

  .home-final-arrow {
    font-size: 7rem;
  }

  .page-shell {
    width: min(100% - 40px, 1180px);
  }

  .page-hero {
    min-height: 56vh;
    padding: 112px 0 56px;
  }

  .service-intro,
  .services-list,
  .work-method,
  .legal-content {
    padding: 70px 0;
  }

  .service-cards,
  .service-card-wide {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card-wide {
    min-height: auto;
  }

  .service-card span,
  .method-steps span {
    margin-bottom: 28px;
  }

}

/* === HOME COMPANY TEXTOS COMPLETOS: INICIO === */

.home-company-copy {
  align-items: stretch;
  padding-left: clamp(34px, 4vw, 68px);
  padding-right: clamp(34px, 4vw, 68px);
}

.home-company-copy .home-kicker {
  width: 100%;
  max-width: none;
  margin: 0 0 18px;
  font-size: clamp(0.95rem, 1.1vw, 1.2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.12em;
}

.home-company-copy .home-company-title {
  width: 100%;
  max-width: none;
  margin: 0;
  font-size: clamp(2rem, 2.2vw, 2.95rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.home-company-copy p.home-company-slogan {
  width: 100%;
  max-width: none;
  margin: 26px 0 0;
  font-size: clamp(1.3rem, 1.55vw, 1.75rem);
  font-weight: 800;
  line-height: 1.3;
}

.home-company-details {
  width: 100%;
  max-width: none;
  display: block;
  margin-top: 34px;
}

.home-company-copy .home-company-details p {
  width: 100%;
  max-width: none;
  margin: 0;
  font-size: clamp(1.12rem, 1.25vw, 1.32rem);
  line-height: 1.74;
}

.home-company-copy .home-company-details p + p {
  margin-top: 18px;
}

.home-company-excellence {
  width: 100%;
  max-width: none;
  margin-top: 42px;
}

.home-company-excellence h3 {
  margin: 0 0 18px;
  font-size: clamp(1.15rem, 1.3vw, 1.42rem);
  font-weight: 900;
}

.home-company-areas {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid rgba(10, 25, 44, 0.18);
  border-bottom: 2px solid rgba(10, 25, 44, 0.18);
}

.home-company-area {
  min-width: 0;
  padding: 24px clamp(18px, 2vw, 30px);
  border-right: 1px solid rgba(10, 25, 44, 0.18);
}

.home-company-area:first-child {
  padding-left: 0;
}

.home-company-area:last-child {
  padding-right: 0;
  border-right: 0;
}

.home-company-area strong,
.home-company-area span {
  display: block;
}

.home-company-area strong {
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  line-height: 1.25;
}

.home-company-area span {
  margin-top: 9px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.home-company-copy .home-button {
  align-self: flex-start;
  margin-top: 34px;
}

@media (max-width: 1120px) {
  .home-company-copy .home-company-title {
    white-space: normal;
    font-size: clamp(2.1rem, 4vw, 3.4rem);
  }

  .home-company-details {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 760px) {
  .home-company-areas {
    grid-template-columns: 1fr;
  }

  .home-company-area,
  .home-company-area:first-child,
  .home-company-area:last-child {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(10, 25, 44, 0.18);
  }

  .home-company-area:last-child {
    border-bottom: 0;
  }
}

/* === HOME COMPANY TEXTOS COMPLETOS: FIM === */

/* === HOME COMPANY CARDS: INIZIO === */

.home-company-areas {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(16px, 1.6vw, 24px);
  border: 0;
}

.home-company-area,
.home-company-area:first-child,
.home-company-area:last-child {
  min-width: 0;
  min-height: 175px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: clamp(24px, 2vw, 32px);
  background: #ffffff;
  border: 1px solid rgba(10, 25, 44, 0.16);
  border-top: 4px solid #d94a2f;
}

.home-company-area strong {
  display: block;
  margin: 0 0 14px;
  font-size: clamp(1.05rem, 1.15vw, 1.22rem);
  font-weight: 900;
  line-height: 1.25;
}

.home-company-area span {
  display: block;
  margin: 0;
  font-size: clamp(0.95rem, 1vw, 1.06rem);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .home-company-areas {
    grid-template-columns: 1fr;
  }

  .home-company-area,
  .home-company-area:first-child,
  .home-company-area:last-child {
    min-height: auto;
  }
}

/* === HOME COMPANY CARDS: FINE === */

@media (max-width: 980px) {
  .equipment-catalog .page-shell {
    width: min(1180px, calc(100% - 60px));
  }

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

  .equipment-item {
    min-height: 600px;
  }

  .equipment-item:nth-child(odd) {
    border-right: 0;
  }

  .equipment-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid #d9dee3;
  }

  .equipment-item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .equipment-catalog {
    padding: 64px 0 76px;
  }

  .equipment-catalog-head {
    margin-bottom: 34px;
  }

  .equipment-item {
    min-height: auto;
    grid-template-rows: auto minmax(240px, auto) auto;
    padding: 24px;
  }

  .equipment-item-head {
    display: grid;
    gap: 12px;
  }

  .equipment-item h3 {
    text-align: left;
  }

  .equipment-item img {
    max-height: 260px;
    margin: 18px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .equipment-item img {
    transition: none;
  }

  .equipment-item:hover img {
    transform: none;
  }
}

.services-page {
  background: #f5f6f7;
}

.services-page .service-hero {
  position: relative;
  overflow: hidden;
  padding: 128px 0 78px;
  background:
    linear-gradient(115deg, rgba(6, 22, 37, 0.98) 0%, rgba(7, 29, 51, 0.95) 52%, rgba(7, 29, 51, 0.86) 100%),
    var(--navy);
  color: var(--white);
}

.services-page .service-hero .page-shell {
  width: calc(100% - 88px);
  max-width: none;
}

.services-page .service-hero::before {
  position: absolute;
  top: 78px;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
  content: "";
}

.services-page .service-hero-grid {
  display: grid;
  min-height: 560px;
  grid-template-columns: minmax(430px, 0.72fr) minmax(720px, 1.28fr);
  gap: clamp(46px, 6vw, 120px);
  align-items: center;
}

.services-page .service-hero-copy {
  max-width: 760px;
}

.services-page .service-hero-copy .page-kicker {
  color: var(--yellow);
}

.services-page .service-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(3.3rem, 5vw, 6rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 0.96;
}

.services-page .service-hero-copy p:not(.page-kicker) {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.2vw, 1.28rem);
  line-height: 1.65;
}

.services-page .service-hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}

.services-page .service-hero-actions .hero-button-secondary {
  background: var(--white);
  color: #172027;
}

.services-page .service-hero-media {
  position: relative;
  min-height: 510px;
}

.services-page .service-hero-photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.24);
}

.services-page .service-hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-page .service-hero-photo-main {
  right: 0;
  bottom: 18px;
  width: min(760px, 54vw);
  aspect-ratio: 1.58 / 1;
}

.services-page .service-hero-photo-small {
  top: 18px;
  left: 0;
  width: min(420px, 30vw);
  aspect-ratio: 1.55 / 1;
}

.services-page .service-hero-tags {
  position: absolute;
  bottom: 0;
  left: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.services-page .service-hero-tags span {
  padding: 9px 11px;
  border-left: 2px solid var(--red);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.services-page .service-intro {
  padding: 92px 0 56px;
}

.services-page .service-intro .page-shell,
.services-page .services-list .page-shell,
.services-page .work-method .page-shell,
.services-page .service-cta .page-shell,
.services-page .service-visual-strip .page-shell {
  width: calc(100% - 88px);
  max-width: none;
}

.services-page .service-intro-grid {
  grid-template-columns: minmax(380px, 0.85fr) minmax(520px, 1.15fr);
  align-items: center;
}

.services-page .service-intro h2 {
  max-width: 920px;
  font-size: clamp(1.9rem, 2.6vw, 2.7rem);
}

.services-page .service-intro p:not(.section-kicker) {
  max-width: 760px;
  font-size: clamp(1.05rem, 1.25vw, 1.28rem);
}

.services-page .service-visual-strip {
  padding: 0 0 78px;
  background: #f5f6f7;
}

.services-page .service-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.services-page .service-visual-grid figure {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  margin: 0;
  background: #0b2d47;
}

.services-page .service-visual-grid figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 29, 51, 0) 34%, rgba(7, 29, 51, 0.88) 100%);
  content: "";
}

.services-page .service-visual-grid img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 240ms ease;
}

.services-page .service-visual-grid figure:hover img {
  transform: scale(1.035);
}

.services-page .service-visual-grid figcaption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 1;
  color: #fff;
  font-size: clamp(1rem, 1.3vw, 1.28rem);
  font-weight: 850;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.services-page .services-list {
  padding: 92px 0 112px;
}

.services-page .services-list h2 {
  max-width: 1080px;
  margin-bottom: 54px;
  font-size: clamp(1.9rem, 2.6vw, 2.7rem);
}

.services-page .service-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-page .service-card {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.services-page .service-card-wide {
  grid-column: span 2;
  grid-template-columns: 90px minmax(0, 0.72fr) minmax(0, 1fr);
}

.services-page .service-card::after {
  position: absolute;
  right: 28px;
  bottom: 24px;
  width: 82px;
  height: 3px;
  background: var(--red);
  content: "";
  transform: scaleX(0.38);
  transform-origin: right;
  transition: transform 180ms ease;
}

.services-page .service-card:hover {
  border-color: rgba(225, 40, 36, 0.45);
  box-shadow: 0 18px 34px rgba(7, 29, 51, 0.08);
  transform: translateY(-4px);
}

.services-page .service-card:hover::after {
  transform: scaleX(1);
}

.services-page .service-card h3 {
  max-width: 520px;
  text-transform: uppercase;
}

.services-page .service-card p {
  max-width: 620px;
}

.services-page .work-method {
  padding: 116px 0;
  background:
    linear-gradient(115deg, rgba(7, 29, 51, 0.98), rgba(6, 22, 37, 1)),
    var(--navy);
}

.services-page .work-method h2 {
  max-width: 1120px;
  font-size: clamp(1.9rem, 2.6vw, 2.7rem);
}

.services-page .method-steps article {
  min-height: 260px;
  border-top: 0;
  border-left: 2px solid var(--red);
}

.services-page .service-cta {
  padding: 86px 0;
  background:
    linear-gradient(90deg, rgba(185, 31, 27, 0.98), rgba(225, 40, 36, 1)),
    var(--red);
}

.services-page .service-cta h2 {
  max-width: 1000px;
  font-size: clamp(1.9rem, 2.6vw, 2.7rem);
}

.services-page .service-cta p {
  max-width: 760px;
  font-size: 1.08rem;
}

@media (max-width: 1020px) {
  .services-page .service-hero .page-shell {
    width: min(1180px, calc(100% - 48px));
  }

  .services-page .service-intro .page-shell,
  .services-page .services-list .page-shell,
  .services-page .work-method .page-shell,
  .services-page .service-cta .page-shell,
  .services-page .service-visual-strip .page-shell {
    width: min(1180px, calc(100% - 48px));
  }

  .services-page .service-hero-grid {
    grid-template-columns: 1fr;
  }

  .services-page .service-intro-grid,
  .services-page .service-visual-grid,
  .services-page .service-cards {
    grid-template-columns: 1fr;
  }

  .services-page .service-card-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .services-page .service-hero-media {
    min-height: 420px;
  }

  .services-page .service-hero-photo-main {
    width: min(680px, 100%);
  }

  .services-page .service-hero-photo-small {
    width: min(320px, 48vw);
  }
}

@media (max-width: 680px) {
  .services-page .service-hero {
    padding: 116px 0 46px;
  }

  .services-page .service-hero .page-shell {
    width: min(1180px, calc(100% - 34px));
  }

  .services-page .service-intro .page-shell,
  .services-page .services-list .page-shell,
  .services-page .work-method .page-shell,
  .services-page .service-cta .page-shell,
  .services-page .service-visual-strip .page-shell {
    width: min(1180px, calc(100% - 34px));
  }

  .services-page .service-hero h1 {
    font-size: clamp(2.65rem, 15vw, 4.1rem);
  }

  .services-page .service-intro {
    padding: 64px 0 38px;
  }

  .services-page .services-list,
  .services-page .work-method {
    padding: 70px 0;
  }

  .services-page .service-visual-grid figure,
  .services-page .service-visual-grid img {
    min-height: 240px;
  }

  .services-page .service-cta-inner {
    align-items: flex-start;
  }

  .services-page .service-hero-actions {
    flex-wrap: wrap;
  }

  .services-page .service-hero-media {
    min-height: 360px;
  }

  .services-page .service-hero-photo-small {
    display: none;
  }

  .services-page .service-hero-tags {
    left: 0;
  }
}


/* CTA RAPIDA GLOBAL: telefone, WhatsApp e email em breve */
.quick-contact-strip {
  padding: clamp(34px, 4vw, 54px) 0;
  background: #0b2d47;
  color: #ffffff;
}

.quick-contact-inner {
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.quick-contact-copy p {
  margin: 0 0 8px;
  color: #e2a83c;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quick-contact-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.7rem, 2.2vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.quick-contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.quick-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.quick-contact-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
}

.quick-contact-button-red {
  border-color: #f5211a;
  background: #f5211a;
}

.quick-contact-button-red:hover {
  background: #c9150d;
  border-color: #c9150d;
}

.quick-contact-button-disabled {
  cursor: default;
  opacity: 0.58;
}

.quick-contact-button-disabled:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 820px) {
  .quick-contact-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .quick-contact-actions {
    justify-content: flex-start;
    width: 100%;
  }

  .quick-contact-button {
    flex: 1 1 160px;
  }
}


/* AJUSTE FINAL CONTACTOS: texto hero, botoes rapidos e bloco vermelho */
.contact-hero-copy p:not(.contact-kicker) {
  max-width: 640px !important;
}

.contact-hero-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-top: 30px !important;
}

.contact-hero-actions a,
.contact-hero-actions span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 50px !important;
  padding: 0 22px !important;
  border: 1px solid rgba(255, 255, 255, 0.24) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  font-size: 0.78rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
}

.contact-hero-actions a:hover {
  transform: translateY(-2px) !important;
  background: rgba(255, 255, 255, 0.14) !important;
}

.contact-hero-actions .contact-hero-action-red {
  border-color: #f5211a !important;
  background: #f5211a !important;
}

.contact-hero-actions span {
  cursor: default !important;
  opacity: 0.58 !important;
}

.contact-hero-mark {
  width: min(390px, 27vw) !important;
  min-width: 360px !important;
  height: min(390px, 27vw) !important;
  min-height: 360px !important;
  padding: 42px !important;
}

.contact-hero-mark span {
  display: block !important;
  width: auto !important;
  max-width: none !important;
  font-size: clamp(3.6rem, 4.9vw, 5.8rem) !important;
  line-height: 0.9 !important;
  white-space: nowrap !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}


/* FIX FINAL: ancora Pedir Proposta no inicio do formulario */
#pedido {
  scroll-margin-top: 96px;
}


/* FOOTER FINAL: contenitore unico su tutte le pagine */
.footer-shell {
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
}


@media (min-width: 1101px) and (max-width: 1160px) {
  .home-service-row {
    grid-template-columns: 58px minmax(0, 0.9fr) minmax(0, 1fr) 44px;
  }
}
/* MENU MOBILE FINAL */
.nav-toggle {
  display: none;
  width: 54px;
  min-height: 68px;
  border: 0;
  background: #0b2d47;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
}

@media (max-width: 1100px) {
  .site-header {
    display: flex !important;
    align-items: stretch !important;
  }

  .site-header .brand {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    padding-left: 22px !important;
    padding-right: 12px !important;
  }

  .nav-toggle {
    display: flex !important;
    flex: 0 0 54px !important;
    order: 2 !important;
  }

  .header-button {
    order: 3 !important;
    flex: 0 0 auto !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
    font-size: 10px !important;
    line-height: 1.1 !important;
  }

  .main-navigation {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 99999 !important;
    display: none !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 18px 24px 22px !important;
    background: rgba(5, 20, 35, 0.98) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35) !important;
  }

  .main-navigation.is-open {
    display: flex !important;
  }

  .main-navigation a {
    display: block !important;
    padding: 14px 0 !important;
    font-size: 12px !important;
    letter-spacing: 0.08em !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  }

  .header-button {
    padding-left: 12px !important;
    padding-right: 12px !important;
    font-size: 9px !important;
  }
}

@media (max-width: 359px) {
  .brand span {
    display: none !important;
  }

  .header-button {
    padding-left: 10px !important;
    padding-right: 10px !important;
    font-size: 8.5px !important;
  }
}
/* FIX MOBILE REALE: evita il frammento "LDA" tagliato nel logo */
@media (max-width: 479px) {
  .site-header .brand {
    overflow: hidden !important;
  }

  .site-header .brand span {
    display: none !important;
  }

  .site-header .brand strong {
    flex: 0 1 auto !important;
    min-width: 0 !important;
    font-size: 1.28rem !important;
    white-space: nowrap !important;
  }
}
